@club-employes/utopia 4.33.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/icons-list.json +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/index.js +2681 -2610
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -304,6 +304,20 @@ export declare const AuthLayout: DefineComponent<{}>
|
|
|
304
304
|
export declare const Slider: DefineComponent<{}>
|
|
305
305
|
export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
|
|
306
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
|
+
|
|
307
321
|
export declare const PriceTag: DefineComponent<PriceTagProps>
|
|
308
322
|
export declare const ProductCard: DefineComponent<ProductCardProps>
|
|
309
323
|
export declare const FilterPrice: DefineComponent<FilterPriceProps>
|