@club-employes/utopia 4.39.0 → 4.40.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 +25 -11
- package/dist/index.js +3097 -2949
- package/dist/utopia.css +1 -1
- package/package.json +11 -8
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -282,6 +282,17 @@ export interface ProductCardProps {
|
|
|
282
282
|
language?: 'fr' | 'en';
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
+
export interface ErrorStateProps {
|
|
286
|
+
title?: string
|
|
287
|
+
description?: string
|
|
288
|
+
actionLabel?: string
|
|
289
|
+
retryAction?: () => void
|
|
290
|
+
spinning?: boolean
|
|
291
|
+
imageSrc?: string
|
|
292
|
+
imageAlt?: string
|
|
293
|
+
preset?: 'gears' | 'search'
|
|
294
|
+
}
|
|
295
|
+
|
|
285
296
|
export interface FilterPriceProps {
|
|
286
297
|
variant?: 'default' | 'primary' | 'secondary'
|
|
287
298
|
size?: 'small' | 'medium' | 'large'
|
|
@@ -314,6 +325,18 @@ export interface BottomSheetProps {
|
|
|
314
325
|
onOpenChange?: (open: boolean, reason: BottomSheetChangeReason) => void
|
|
315
326
|
}
|
|
316
327
|
|
|
328
|
+
export interface PageNavigationProps {
|
|
329
|
+
currentPage: number
|
|
330
|
+
totalPages: number
|
|
331
|
+
compact?: boolean
|
|
332
|
+
showSize?: boolean
|
|
333
|
+
sizeLabel?: string
|
|
334
|
+
size?: number
|
|
335
|
+
sizeOptions?: number[]
|
|
336
|
+
showGoToPage?: boolean
|
|
337
|
+
goToPageLabel?: string
|
|
338
|
+
}
|
|
339
|
+
|
|
317
340
|
// Component exports
|
|
318
341
|
export declare const Badge: DefineComponent<BadgeProps>
|
|
319
342
|
export declare const Button: DefineComponent<ButtonProps>
|
|
@@ -344,17 +367,6 @@ export declare const AuthLayout: DefineComponent<{}>
|
|
|
344
367
|
export declare const Slider: DefineComponent<{}>
|
|
345
368
|
export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
|
|
346
369
|
export declare const Link: DefineComponent<LinkProps>
|
|
347
|
-
|
|
348
|
-
export interface ErrorStateProps {
|
|
349
|
-
title?: string
|
|
350
|
-
description?: string
|
|
351
|
-
actionLabel?: string
|
|
352
|
-
retryAction?: () => void
|
|
353
|
-
spinning?: boolean
|
|
354
|
-
imageSrc?: string
|
|
355
|
-
imageAlt?: string
|
|
356
|
-
preset?: 'gears' | 'search'
|
|
357
|
-
}
|
|
358
370
|
export declare const ErrorState: DefineComponent<ErrorStateProps>
|
|
359
371
|
export declare const FeedbackState: DefineComponent<ErrorStateProps>
|
|
360
372
|
|
|
@@ -364,6 +376,8 @@ export declare const ProductCard: DefineComponent<ProductCardProps>
|
|
|
364
376
|
export declare const FilterPrice: DefineComponent<FilterPriceProps>
|
|
365
377
|
export declare const Modal: DefineComponent<ModalProps>
|
|
366
378
|
export declare const BottomSheet: DefineComponent<BottomSheetProps>
|
|
379
|
+
export declare const PageNavigation: DefineComponent<PageNavigationProps>
|
|
380
|
+
|
|
367
381
|
// Theme exports
|
|
368
382
|
export declare const clubEmployesLight: ThemeConfig
|
|
369
383
|
export declare const clubEmployesDark: ThemeConfig
|