@worldresources/wri-design-systems 2.138.7 → 2.139.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/index.cjs.js +101 -101
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +71 -71
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -594,9 +594,11 @@ type SheetProps = {
|
|
|
594
594
|
maxFullHeight?: number;
|
|
595
595
|
defaultSnap?: 'closed' | 'minimized' | 'mid' | 'full';
|
|
596
596
|
className?: string;
|
|
597
|
+
blocking?: boolean;
|
|
598
|
+
zIndex?: number;
|
|
597
599
|
};
|
|
598
600
|
|
|
599
|
-
declare const Sheet: ({ header, content, footer, open, onClose, minimizedHeight, midHeight, maxFullHeight, defaultSnap, className, }: SheetProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
601
|
+
declare const Sheet: ({ header, content, footer, open, onClose, minimizedHeight, midHeight, maxFullHeight, defaultSnap, className, blocking, zIndex, }: SheetProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
600
602
|
|
|
601
603
|
type BreadcrumbProps = {
|
|
602
604
|
links: {
|