@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.
- package/dist/dark-ClkVxmkZ.js +4 -0
- package/dist/dark-gzt5agWk.js +4 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +2697 -2618
- package/dist/light-BbFm7eMu.js +4 -0
- package/dist/{light-CdqQP0QH.js → light-DTJp1z_H.js} +1 -1
- package/dist/tokens/club-employes/dark.css +66 -0
- package/dist/tokens/club-employes/dark.js +66 -0
- package/dist/tokens/club-employes/light.css +66 -0
- package/dist/tokens/club-employes/light.js +66 -0
- package/dist/tokens/gifteo/dark.css +66 -0
- package/dist/tokens/gifteo/dark.js +66 -0
- package/dist/tokens/gifteo/light.css +66 -0
- package/dist/tokens/gifteo/light.js +66 -0
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
- package/dist/dark-BguGJqy8.js +0 -4
- package/dist/dark-DQ7DUCET.js +0 -4
- package/dist/light-CV4r3iDu.js +0 -4
package/dist/icons-list.json
CHANGED
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?:
|
|
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>
|