plainframe-ui 0.1.93 → 0.1.94
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.d.ts +1 -30
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -605,36 +605,7 @@ type DrawerContentProps = Omit<React.HTMLAttributes<HTMLDivElement>, DomDragKeys
|
|
|
605
605
|
css?: Interpolation<Theme>;
|
|
606
606
|
className?: string;
|
|
607
607
|
};
|
|
608
|
-
type DrawerLegacyProps = Omit<React.HTMLAttributes<HTMLDivElement>, DomDragKeys | DomAnimKeys | "style"> & {
|
|
609
|
-
open?: boolean;
|
|
610
|
-
/** @deprecated Use `open` instead */
|
|
611
|
-
on?: boolean;
|
|
612
|
-
defaultOpen?: boolean;
|
|
613
|
-
/** @deprecated Use `defaultOpen` instead */
|
|
614
|
-
defaultOn?: boolean;
|
|
615
|
-
onOpenChange?: (open: boolean) => void;
|
|
616
|
-
onClose?: () => void;
|
|
617
|
-
children: React.ReactNode;
|
|
618
|
-
width?: number | string;
|
|
619
|
-
height?: number | string;
|
|
620
|
-
position?: DrawerSide;
|
|
621
|
-
variant?: DrawerVariant;
|
|
622
|
-
margin?: number | string;
|
|
623
|
-
radius?: number | string;
|
|
624
|
-
backdropBlur?: boolean;
|
|
625
|
-
backdropBlurDepth?: number | string;
|
|
626
|
-
closeOnClickAway?: boolean;
|
|
627
|
-
lockScroll?: boolean;
|
|
628
|
-
closeOnEscape?: boolean;
|
|
629
|
-
transitionMs?: number;
|
|
630
|
-
snapClosePct?: number;
|
|
631
|
-
velocityClosePxS?: number;
|
|
632
|
-
dragElasticOut?: number;
|
|
633
|
-
css?: Interpolation<Theme>;
|
|
634
|
-
className?: string;
|
|
635
|
-
};
|
|
636
608
|
declare const DrawerContent: React.ForwardRefExoticComponent<DrawerContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
637
|
-
declare const DrawerLegacy: React.ForwardRefExoticComponent<DrawerLegacyProps & React.RefAttributes<HTMLDivElement>>;
|
|
638
609
|
|
|
639
610
|
/** @jsxImportSource @emotion/react */
|
|
640
611
|
|
|
@@ -1669,4 +1640,4 @@ declare const ThemeProvider: React.FC<ThemeProviderProps>;
|
|
|
1669
1640
|
|
|
1670
1641
|
declare function CssBaseline(): _emotion_react_jsx_runtime.JSX.Element;
|
|
1671
1642
|
|
|
1672
|
-
export { Accordion, AccordionDetails, AccordionGroup, AccordionSummary, ActionBar, Alert, AlertDescription, AlertTitle, Autocomplete, Avatar, AvatarGroup, Backdrop, Badge, BreadCrumbItem, BreadCrumbs, Button, ButtonGroup, type ButtonProps, Card, CardContent, CardDescription, CardEnd, CardGroup, CardStart, CardTitle, Checkbox, Chip, CodeField, Container, ContextZone, CssBaseline, type DeepPartial, Divider, Drawer, DrawerContent,
|
|
1643
|
+
export { Accordion, AccordionDetails, AccordionGroup, AccordionSummary, ActionBar, Alert, AlertDescription, AlertTitle, Autocomplete, Avatar, AvatarGroup, Backdrop, Badge, BreadCrumbItem, BreadCrumbs, Button, ButtonGroup, type ButtonProps, Card, CardContent, CardDescription, CardEnd, CardGroup, CardStart, CardTitle, Checkbox, Chip, CodeField, Container, ContextZone, CssBaseline, type DeepPartial, Divider, Drawer, DrawerContent, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Fade, Flex, Grow, Image, type ImageProps, ImageStack, Kbd, Menu, MenuCheckboxGroup, MenuCheckboxItem, MenuItem, MenuLabel, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuSwitchItem, MenuVariantCtx, Modal, ModalContent, type ModalProps, ModalTrigger, type Mode, Pagination, type PartialTheme, type PlainframeUITheme, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverContent, type PopoverContentProps, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, Progress, Quote, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, Rotate, type Scale, Select, SelectItem, Skeleton, Slide, Slider, Step, Stepper, Switch, Tab, TabContent, Tabs, TextArea, TextField, type TextFieldProps, type ThemeProp, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipTrigger, Typography, defaultDarkTheme, defaultLightTheme, surfaceFromNeutral, textDark, textLight, toast, useColorMode, useDropdownMenuActiveIndex, usePlainframeUITheme, usePopoverContext, usePrimary, usePrimitives };
|