@club-employes/utopia 4.38.0 → 4.39.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 +13 -0
- package/dist/index.js +1209 -1144
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -302,6 +302,18 @@ export interface ModalProps {
|
|
|
302
302
|
onOpenChange?: (open: boolean, reason: 'open' | 'close' | 'overlay' | 'escape' | 'close-button') => void
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
+
export type BottomSheetChangeReason = 'open' | 'close' | 'escape' | 'overlay'
|
|
306
|
+
|
|
307
|
+
export interface BottomSheetProps {
|
|
308
|
+
title?: string
|
|
309
|
+
open?: boolean
|
|
310
|
+
defaultOpen?: boolean
|
|
311
|
+
closeOnOverlayClick?: boolean
|
|
312
|
+
focusTrap?: boolean
|
|
313
|
+
disableScrollLock?: boolean
|
|
314
|
+
onOpenChange?: (open: boolean, reason: BottomSheetChangeReason) => void
|
|
315
|
+
}
|
|
316
|
+
|
|
305
317
|
// Component exports
|
|
306
318
|
export declare const Badge: DefineComponent<BadgeProps>
|
|
307
319
|
export declare const Button: DefineComponent<ButtonProps>
|
|
@@ -351,6 +363,7 @@ export declare const FilterChip: DefineComponent<FilterChipProps>
|
|
|
351
363
|
export declare const ProductCard: DefineComponent<ProductCardProps>
|
|
352
364
|
export declare const FilterPrice: DefineComponent<FilterPriceProps>
|
|
353
365
|
export declare const Modal: DefineComponent<ModalProps>
|
|
366
|
+
export declare const BottomSheet: DefineComponent<BottomSheetProps>
|
|
354
367
|
// Theme exports
|
|
355
368
|
export declare const clubEmployesLight: ThemeConfig
|
|
356
369
|
export declare const clubEmployesDark: ThemeConfig
|