@club-employes/utopia 4.41.0 → 4.42.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 +19 -3
- package/dist/index.js +2755 -2574
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -309,10 +309,20 @@ export interface ErrorStateProps {
|
|
|
309
309
|
preset?: 'gears' | 'search'
|
|
310
310
|
}
|
|
311
311
|
|
|
312
|
+
export interface RangeSliderProps {
|
|
313
|
+
min?: number;
|
|
314
|
+
max: number;
|
|
315
|
+
currentValue: number | [number, number];
|
|
316
|
+
unit?: string;
|
|
317
|
+
showLabels?: boolean;
|
|
318
|
+
size?: 'medium' | 'large';
|
|
319
|
+
}
|
|
320
|
+
|
|
312
321
|
export interface FilterPriceProps {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
322
|
+
currentValue: [number, number];
|
|
323
|
+
min?: number;
|
|
324
|
+
max: number;
|
|
325
|
+
unit?: string;
|
|
316
326
|
}
|
|
317
327
|
|
|
318
328
|
export interface ModalProps {
|
|
@@ -390,6 +400,7 @@ export declare const FeedbackState: DefineComponent<ErrorStateProps>
|
|
|
390
400
|
export declare const PriceTag: DefineComponent<PriceTagProps>
|
|
391
401
|
export declare const FilterChip: DefineComponent<FilterChipProps>
|
|
392
402
|
export declare const ProductCard: DefineComponent<ProductCardProps>
|
|
403
|
+
export declare const RangeSlider: DefineComponent<RangeSliderProps>
|
|
393
404
|
export declare const FilterPrice: DefineComponent<FilterPriceProps>
|
|
394
405
|
export declare const Modal: DefineComponent<ModalProps>
|
|
395
406
|
export declare const BottomSheet: DefineComponent<BottomSheetProps>
|
|
@@ -432,6 +443,10 @@ export interface UseFaviconReturn {
|
|
|
432
443
|
updateFavicon: (faviconUrl: string) => void
|
|
433
444
|
}
|
|
434
445
|
|
|
446
|
+
export interface UseCurrencyReturn {
|
|
447
|
+
currencyIconName: ComputedRef<string>
|
|
448
|
+
}
|
|
449
|
+
|
|
435
450
|
export interface TooltipProps {
|
|
436
451
|
placement?: 'top' | 'bottom' | 'left' | 'right' | 'auto' | 'top_left' | 'top_right' | 'top_center' | 'bottom_left' | 'bottom_right' | 'bottom_center'
|
|
437
452
|
openDelay?: number
|
|
@@ -447,6 +462,7 @@ export declare const Tooltip: DefineComponent<TooltipProps>
|
|
|
447
462
|
// Composable exports
|
|
448
463
|
export declare function useTheme(): UseThemeReturn
|
|
449
464
|
export declare function useFavicon(): UseFaviconReturn
|
|
465
|
+
export declare function useCurrency(currency: Currency): UseCurrencyReturn
|
|
450
466
|
|
|
451
467
|
// Theme initialization exports
|
|
452
468
|
export declare function initializeTheme(themeName: string): Promise<void>
|