@tinybigui/react 0.23.0 → 0.24.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/README.md +8 -8
- package/dist/index.cjs +397 -266
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +397 -93
- package/dist/index.d.ts +397 -93
- package/dist/index.js +382 -266
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3680,6 +3680,22 @@ declare const HeadlessNavigationBar: React$1.ForwardRefExoticComponent<HeadlessN
|
|
|
3680
3680
|
*/
|
|
3681
3681
|
declare const HeadlessNavigationBarItem: React$1.ForwardRefExoticComponent<HeadlessNavigationBarItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3682
3682
|
|
|
3683
|
+
/**
|
|
3684
|
+
* Animation lifecycle states for the modal drawer.
|
|
3685
|
+
*
|
|
3686
|
+
* Used by the animation state machine in `HeadlessDrawer` to drive
|
|
3687
|
+
* enter/exit CSS animations without immediately unmounting the portal.
|
|
3688
|
+
*
|
|
3689
|
+
* ```
|
|
3690
|
+
* entering → visible → exiting → exited
|
|
3691
|
+
* ```
|
|
3692
|
+
*
|
|
3693
|
+
* - `entering` — panel is mounted but invisible (pre-animation frame)
|
|
3694
|
+
* - `visible` — entry animation fires (`animate-md-slide-in-left`)
|
|
3695
|
+
* - `exiting` — exit animation fires (`animate-md-slide-out-left`)
|
|
3696
|
+
* - `exited` — portal gate unmounts the element
|
|
3697
|
+
*/
|
|
3698
|
+
type DrawerAnimationState = "entering" | "visible" | "exiting" | "exited";
|
|
3683
3699
|
/**
|
|
3684
3700
|
* Structural variant of the Navigation Drawer.
|
|
3685
3701
|
*
|
|
@@ -3689,16 +3705,6 @@ declare const HeadlessNavigationBarItem: React$1.ForwardRefExoticComponent<Headl
|
|
|
3689
3705
|
* focus trap, and `Escape` to close.
|
|
3690
3706
|
*/
|
|
3691
3707
|
type DrawerVariant = "standard" | "modal";
|
|
3692
|
-
/**
|
|
3693
|
-
* Structured badge configuration for `DrawerItem`.
|
|
3694
|
-
*
|
|
3695
|
-
* When provided instead of a `ReactNode`, the `DrawerItem` renders a `Badge`
|
|
3696
|
-
* component automatically.
|
|
3697
|
-
*/
|
|
3698
|
-
interface DrawerItemBadgeConfig {
|
|
3699
|
-
/** Numeric count to display. Omit for a dot indicator. */
|
|
3700
|
-
count?: number;
|
|
3701
|
-
}
|
|
3702
3708
|
/**
|
|
3703
3709
|
* Material Design 3 Navigation Drawer props.
|
|
3704
3710
|
*
|
|
@@ -3709,6 +3715,7 @@ interface DrawerItemBadgeConfig {
|
|
|
3709
3715
|
* ```tsx
|
|
3710
3716
|
* // Standard variant
|
|
3711
3717
|
* <Drawer variant="standard" open={open} onOpenChange={setOpen} aria-label="App navigation">
|
|
3718
|
+
* <DrawerHeadline>Mail</DrawerHeadline>
|
|
3712
3719
|
* <DrawerItem label="Home" isActive />
|
|
3713
3720
|
* <DrawerItem label="Settings" />
|
|
3714
3721
|
* </Drawer>
|
|
@@ -3716,8 +3723,8 @@ interface DrawerItemBadgeConfig {
|
|
|
3716
3723
|
* // Modal variant with trigger
|
|
3717
3724
|
* <Drawer variant="modal" open={open} onOpenChange={setOpen} aria-label="App navigation">
|
|
3718
3725
|
* <DrawerItem label="Home" isActive />
|
|
3719
|
-
* <DrawerSection header="
|
|
3720
|
-
* <DrawerItem label="
|
|
3726
|
+
* <DrawerSection header="Labels">
|
|
3727
|
+
* <DrawerItem label="Promotions" />
|
|
3721
3728
|
* </DrawerSection>
|
|
3722
3729
|
* </Drawer>
|
|
3723
3730
|
* ```
|
|
@@ -3748,7 +3755,8 @@ interface DrawerProps extends AriaDialogProps {
|
|
|
3748
3755
|
*/
|
|
3749
3756
|
"aria-label": string;
|
|
3750
3757
|
/**
|
|
3751
|
-
* Drawer content — typically `DrawerItem
|
|
3758
|
+
* Drawer content — typically `DrawerHeadline`, `DrawerItem`, and
|
|
3759
|
+
* `DrawerSection` elements.
|
|
3752
3760
|
*/
|
|
3753
3761
|
children: ReactNode;
|
|
3754
3762
|
/**
|
|
@@ -3760,13 +3768,6 @@ interface DrawerProps extends AriaDialogProps {
|
|
|
3760
3768
|
* @default false
|
|
3761
3769
|
*/
|
|
3762
3770
|
disableRipple?: boolean;
|
|
3763
|
-
/**
|
|
3764
|
-
* When `true`, narrows the drawer to 80dp (`w-20`) and hides all
|
|
3765
|
-
* `DrawerItem` labels. Each item gains a native `title` tooltip.
|
|
3766
|
-
* Prep step for `NavigationRail`.
|
|
3767
|
-
* @default false
|
|
3768
|
-
*/
|
|
3769
|
-
iconOnly?: boolean;
|
|
3770
3771
|
}
|
|
3771
3772
|
/**
|
|
3772
3773
|
* Material Design 3 Navigation Drawer Item props.
|
|
@@ -3787,8 +3788,8 @@ interface DrawerProps extends AriaDialogProps {
|
|
|
3787
3788
|
* // Link-based item (with href)
|
|
3788
3789
|
* <DrawerItem href="/settings" icon={<SettingsIcon />} label="Settings" />
|
|
3789
3790
|
*
|
|
3790
|
-
* // With badge
|
|
3791
|
-
* <DrawerItem label="Inbox" badge={
|
|
3791
|
+
* // With badge count (MD3 "Badge label text" anatomy element)
|
|
3792
|
+
* <DrawerItem label="Inbox" badge={24} />
|
|
3792
3793
|
*
|
|
3793
3794
|
* // Disabled
|
|
3794
3795
|
* <DrawerItem label="Disabled" isDisabled />
|
|
@@ -3802,6 +3803,8 @@ interface DrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions, "href">
|
|
|
3802
3803
|
href?: string;
|
|
3803
3804
|
/**
|
|
3804
3805
|
* Optional leading icon (24dp).
|
|
3806
|
+
* Color inherits from item state: `on-surface-variant` inactive,
|
|
3807
|
+
* `on-secondary-container` active.
|
|
3805
3808
|
*/
|
|
3806
3809
|
icon?: ReactNode;
|
|
3807
3810
|
/**
|
|
@@ -3809,26 +3812,21 @@ interface DrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions, "href">
|
|
|
3809
3812
|
*/
|
|
3810
3813
|
label: string;
|
|
3811
3814
|
/**
|
|
3812
|
-
* Optional trailing badge.
|
|
3815
|
+
* Optional trailing badge label text (MD3 anatomy element 5).
|
|
3816
|
+
*
|
|
3817
|
+
* Rendered as plain inline text that adapts its color to the item's
|
|
3818
|
+
* active/inactive state — `on-surface-variant` when inactive,
|
|
3819
|
+
* `on-secondary-container` when active.
|
|
3813
3820
|
*
|
|
3814
|
-
*
|
|
3815
|
-
* or a `DrawerItemBadgeConfig` object which renders a `Badge` component
|
|
3816
|
-
* with `count` and `color`.
|
|
3821
|
+
* Pass a `number` for notification counts or a `string` for arbitrary labels.
|
|
3817
3822
|
*
|
|
3818
3823
|
* @example
|
|
3819
3824
|
* ```tsx
|
|
3820
|
-
*
|
|
3821
|
-
* <DrawerItem label="
|
|
3822
|
-
*
|
|
3823
|
-
* // Config badge (renders Badge component using MD3 error color role)
|
|
3824
|
-
* <DrawerItem label="Inbox" badge={{ count: 3 }} />
|
|
3825
|
+
* <DrawerItem label="Inbox" badge={24} />
|
|
3826
|
+
* <DrawerItem label="Beta" badge="NEW" />
|
|
3825
3827
|
* ```
|
|
3826
3828
|
*/
|
|
3827
|
-
badge?:
|
|
3828
|
-
/**
|
|
3829
|
-
* Optional secondary descriptive text rendered below the label.
|
|
3830
|
-
*/
|
|
3831
|
-
secondaryText?: string;
|
|
3829
|
+
badge?: number | string;
|
|
3832
3830
|
/**
|
|
3833
3831
|
* When `true`, marks this item as the active destination.
|
|
3834
3832
|
* Applies `aria-current="page"`, active indicator background, and
|
|
@@ -3846,6 +3844,22 @@ interface DrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions, "href">
|
|
|
3846
3844
|
*/
|
|
3847
3845
|
className?: string;
|
|
3848
3846
|
}
|
|
3847
|
+
/**
|
|
3848
|
+
* Material Design 3 Navigation Drawer Headline props.
|
|
3849
|
+
*
|
|
3850
|
+
* Renders the header text for the drawer — MD3 anatomy element 2.
|
|
3851
|
+
*
|
|
3852
|
+
* @example
|
|
3853
|
+
* ```tsx
|
|
3854
|
+
* <DrawerHeadline>Mail</DrawerHeadline>
|
|
3855
|
+
* ```
|
|
3856
|
+
*/
|
|
3857
|
+
interface DrawerHeadlineProps {
|
|
3858
|
+
/** Headline text content. */
|
|
3859
|
+
children: ReactNode;
|
|
3860
|
+
/** Additional CSS classes merged via `cn()`. */
|
|
3861
|
+
className?: string;
|
|
3862
|
+
}
|
|
3849
3863
|
/**
|
|
3850
3864
|
* Material Design 3 Navigation Drawer Section props.
|
|
3851
3865
|
*
|
|
@@ -3854,9 +3868,9 @@ interface DrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions, "href">
|
|
|
3854
3868
|
*
|
|
3855
3869
|
* @example
|
|
3856
3870
|
* ```tsx
|
|
3857
|
-
* <DrawerSection header="
|
|
3858
|
-
* <DrawerItem label="
|
|
3859
|
-
* <DrawerItem label="
|
|
3871
|
+
* <DrawerSection header="Labels" showDivider>
|
|
3872
|
+
* <DrawerItem label="Promotions" />
|
|
3873
|
+
* <DrawerItem label="Social" />
|
|
3860
3874
|
* </DrawerSection>
|
|
3861
3875
|
* ```
|
|
3862
3876
|
*/
|
|
@@ -3919,15 +3933,35 @@ interface HeadlessDrawerProps {
|
|
|
3919
3933
|
*/
|
|
3920
3934
|
scrimClassName?: string;
|
|
3921
3935
|
/**
|
|
3922
|
-
*
|
|
3923
|
-
*
|
|
3936
|
+
* Returns the animation CSS class string for a given `DrawerAnimationState`.
|
|
3937
|
+
*
|
|
3938
|
+
* Applied to the modal **panel** element. Provided by the styled `Drawer` layer
|
|
3939
|
+
* via `drawerAnimationVariants`. Returns `""` when `useReducedMotion()` is true.
|
|
3940
|
+
*
|
|
3941
|
+
* @example
|
|
3942
|
+
* ```ts
|
|
3943
|
+
* getAnimationClassName={(state) => drawerAnimationVariants({ animationState: state })}
|
|
3944
|
+
* ```
|
|
3924
3945
|
*/
|
|
3925
|
-
|
|
3946
|
+
getAnimationClassName?: (state: DrawerAnimationState) => string;
|
|
3926
3947
|
/**
|
|
3927
|
-
*
|
|
3948
|
+
* Returns the animation CSS class string for the modal **scrim** element.
|
|
3949
|
+
*
|
|
3950
|
+
* Separate from `getAnimationClassName` so the scrim can fade while the panel
|
|
3951
|
+
* slides. Provided via `drawerScrimAnimationVariants`. Returns `""` under
|
|
3952
|
+
* reduced motion.
|
|
3953
|
+
*
|
|
3954
|
+
* @example
|
|
3955
|
+
* ```ts
|
|
3956
|
+
* getScrimAnimationClassName={(state) => drawerScrimAnimationVariants({ animationState: state })}
|
|
3957
|
+
* ```
|
|
3958
|
+
*/
|
|
3959
|
+
getScrimAnimationClassName?: (state: DrawerAnimationState) => string;
|
|
3960
|
+
/**
|
|
3961
|
+
* Disable ripple on all items.
|
|
3928
3962
|
* @default false
|
|
3929
3963
|
*/
|
|
3930
|
-
|
|
3964
|
+
disableRipple?: boolean;
|
|
3931
3965
|
}
|
|
3932
3966
|
/**
|
|
3933
3967
|
* Props for the headless DrawerItem primitive (Layer 2).
|
|
@@ -3955,7 +3989,7 @@ interface HeadlessDrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions,
|
|
|
3955
3989
|
*/
|
|
3956
3990
|
onMouseDown?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
3957
3991
|
/**
|
|
3958
|
-
* Native tooltip text
|
|
3992
|
+
* Native tooltip text.
|
|
3959
3993
|
*/
|
|
3960
3994
|
title?: string | undefined;
|
|
3961
3995
|
}
|
|
@@ -3970,8 +4004,6 @@ interface DrawerContextValue {
|
|
|
3970
4004
|
close: () => void;
|
|
3971
4005
|
/** Whether ripple is disabled for all items. */
|
|
3972
4006
|
disableRipple: boolean;
|
|
3973
|
-
/** Whether the drawer is in icon-only compact mode. */
|
|
3974
|
-
iconOnly: boolean;
|
|
3975
4007
|
}
|
|
3976
4008
|
|
|
3977
4009
|
/**
|
|
@@ -3981,24 +4013,24 @@ interface DrawerContextValue {
|
|
|
3981
4013
|
*
|
|
3982
4014
|
* - **`standard`** — Inline `<nav>` landmark. Permanently visible or
|
|
3983
4015
|
* collapsible via controlled `open` prop. No overlay or focus trap.
|
|
3984
|
-
* Surface: `bg-surface-container-low
|
|
4016
|
+
* Surface: `bg-surface-container-low`, no elevation, square trailing edge.
|
|
4017
|
+
* Slide motion: `transition-transform` + spring-standard-default-spatial
|
|
4018
|
+
* (500ms, no overshoot) driven by translate-x via `drawerVariants`.
|
|
3985
4019
|
*
|
|
3986
|
-
* - **`modal`** —
|
|
4020
|
+
* - **`modal`** — Portal overlay with animation state machine, scrim backdrop,
|
|
3987
4021
|
* focus trap, and `Escape` to close.
|
|
3988
|
-
* Surface: `bg-surface-container
|
|
4022
|
+
* Surface: `bg-surface-container-low` + `shadow-elevation-1`.
|
|
4023
|
+
* Shape: `rounded-r-lg` (16dp trailing corner per MD3).
|
|
4024
|
+
* Motion: `animate-md-slide-in-left` / `animate-md-slide-out-left` via
|
|
4025
|
+
* `drawerAnimationVariants` + `drawerScrimAnimationVariants`.
|
|
3989
4026
|
*
|
|
3990
4027
|
* Both variants:
|
|
3991
4028
|
* - `role="navigation"` on the outer wrapper
|
|
3992
|
-
* - `
|
|
3993
|
-
* - Slide-in animation: `translate-x` driven by MD3 motion tokens
|
|
3994
|
-
* - `w-drawer` (360dp) or `w-20` (80dp) in `iconOnly` mode
|
|
4029
|
+
* - `w-drawer` (360dp)
|
|
3995
4030
|
*
|
|
3996
|
-
*
|
|
3997
|
-
*
|
|
3998
|
-
*
|
|
3999
|
-
* - `usePreventScroll` to lock body scroll
|
|
4000
|
-
* - Scrim: `bg-scrim opacity-32` — click closes drawer
|
|
4001
|
-
* - `Escape` key closes drawer
|
|
4031
|
+
* Reduced motion: when `prefers-reduced-motion: reduce` is active, all
|
|
4032
|
+
* animation classes are suppressed (`getAnimationClassName` returns `""`
|
|
4033
|
+
* and `transition-none` is appended to the standard variant panel).
|
|
4002
4034
|
*
|
|
4003
4035
|
* @example
|
|
4004
4036
|
* ```tsx
|
|
@@ -4009,14 +4041,15 @@ interface DrawerContextValue {
|
|
|
4009
4041
|
* onOpenChange={setSidebarOpen}
|
|
4010
4042
|
* aria-label="App navigation"
|
|
4011
4043
|
* >
|
|
4044
|
+
* <DrawerHeadline>Mail</DrawerHeadline>
|
|
4012
4045
|
* <DrawerItem icon={<HomeIcon />} label="Home" isActive />
|
|
4013
4046
|
* <DrawerSection header="Settings" showDivider>
|
|
4014
4047
|
* <DrawerItem icon={<SettingsIcon />} label="Preferences" />
|
|
4015
4048
|
* </DrawerSection>
|
|
4016
4049
|
* </Drawer>
|
|
4017
4050
|
*
|
|
4018
|
-
* //
|
|
4019
|
-
* <Drawer variant="
|
|
4051
|
+
* // Modal variant
|
|
4052
|
+
* <Drawer variant="modal" open={open} onOpenChange={setOpen} aria-label="App navigation">
|
|
4020
4053
|
* <DrawerItem icon={<HomeIcon />} label="Home" isActive />
|
|
4021
4054
|
* </Drawer>
|
|
4022
4055
|
* ```
|
|
@@ -4028,28 +4061,31 @@ declare const Drawer: React__default.ForwardRefExoticComponent<DrawerProps & Rea
|
|
|
4028
4061
|
/**
|
|
4029
4062
|
* Material Design 3 Navigation Drawer Item (Layer 3: Styled).
|
|
4030
4063
|
*
|
|
4031
|
-
*
|
|
4032
|
-
*
|
|
4064
|
+
* Architecture: Variants vs States (component-variants.mdc)
|
|
4065
|
+
* - Root is `group/draweritem` host; all slots read state via
|
|
4066
|
+
* `group-data-[x]/draweritem:` selectors.
|
|
4067
|
+
* - Interaction states tracked in this styled layer via React Aria hooks
|
|
4068
|
+
* and emitted as `data-*` attributes on the root via `getInteractionDataAttributes`.
|
|
4069
|
+
* - `data-active` is a content flag set explicitly (not via the shared helper).
|
|
4070
|
+
*
|
|
4071
|
+
* Slot z-order:
|
|
4072
|
+
* activeIndicator z-0 — `bg-secondary-container` pill
|
|
4073
|
+
* stateLayer z-[1] — hover (8%) / press (10%) opacity overlay
|
|
4074
|
+
* focusRing z-[2] — keyboard focus outline (inset, `-outline-offset-2`)
|
|
4075
|
+
* ripple z-[3] — press ripple feedback
|
|
4076
|
+
* icon z-10 — leading icon (24dp)
|
|
4077
|
+
* label z-10 — label text
|
|
4078
|
+
* badge z-10 — trailing badge text
|
|
4033
4079
|
*
|
|
4034
4080
|
* Renders as `<a>` when `href` is provided, `<button>` otherwise.
|
|
4035
4081
|
*
|
|
4036
|
-
* Features:
|
|
4037
|
-
* - Active indicator: 336dp pill, `bg-secondary-container` / `text-on-secondary-container`
|
|
4038
|
-
* - `aria-current="page"` on active item
|
|
4039
|
-
* - Ripple effect on interaction
|
|
4040
|
-
* - Hover/focus/pressed state layers (MD3 spec: 8% / 12%)
|
|
4041
|
-
* - Optional leading icon (24dp slot)
|
|
4042
|
-
* - Optional trailing badge — `ReactNode` or `{ count }` config
|
|
4043
|
-
* - Icon-only mode: label hidden, `title` tooltip via `DrawerIconOnlyContext`
|
|
4044
|
-
* - Disabled state: `opacity-38`, non-interactive
|
|
4045
|
-
*
|
|
4046
4082
|
* @example
|
|
4047
4083
|
* ```tsx
|
|
4048
4084
|
* // Active item with icon
|
|
4049
4085
|
* <DrawerItem icon={<HomeIcon />} label="Home" isActive onPress={() => navigate('/')} />
|
|
4050
4086
|
*
|
|
4051
|
-
* // Item with
|
|
4052
|
-
* <DrawerItem label="Inbox" badge={
|
|
4087
|
+
* // Item with badge count
|
|
4088
|
+
* <DrawerItem label="Inbox" badge={24} />
|
|
4053
4089
|
*
|
|
4054
4090
|
* // Disabled
|
|
4055
4091
|
* <DrawerItem label="Disabled Feature" isDisabled />
|
|
@@ -4057,7 +4093,7 @@ declare const Drawer: React__default.ForwardRefExoticComponent<DrawerProps & Rea
|
|
|
4057
4093
|
*
|
|
4058
4094
|
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4059
4095
|
*/
|
|
4060
|
-
declare const DrawerItem:
|
|
4096
|
+
declare const DrawerItem: React$1.ForwardRefExoticComponent<DrawerItemProps & React$1.RefAttributes<HTMLElement>>;
|
|
4061
4097
|
|
|
4062
4098
|
/**
|
|
4063
4099
|
* Internal props extending the public DrawerSectionProps.
|
|
@@ -4084,9 +4120,9 @@ interface DrawerSectionInternalProps extends DrawerSectionProps {
|
|
|
4084
4120
|
* @example
|
|
4085
4121
|
* ```tsx
|
|
4086
4122
|
* // Section with header and divider
|
|
4087
|
-
* <DrawerSection header="
|
|
4088
|
-
* <DrawerItem icon={<
|
|
4089
|
-
* <DrawerItem icon={<
|
|
4123
|
+
* <DrawerSection header="Labels" showDivider>
|
|
4124
|
+
* <DrawerItem icon={<LabelIcon />} label="Promotions" />
|
|
4125
|
+
* <DrawerItem icon={<LabelIcon />} label="Social" />
|
|
4090
4126
|
* </DrawerSection>
|
|
4091
4127
|
*
|
|
4092
4128
|
* // Section without header (just a visual group)
|
|
@@ -4100,31 +4136,56 @@ interface DrawerSectionInternalProps extends DrawerSectionProps {
|
|
|
4100
4136
|
declare const DrawerSection: React$1.ForwardRefExoticComponent<DrawerSectionInternalProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
4101
4137
|
|
|
4102
4138
|
/**
|
|
4103
|
-
*
|
|
4104
|
-
*
|
|
4139
|
+
* Material Design 3 Navigation Drawer Headline (Layer 3: Styled).
|
|
4140
|
+
*
|
|
4141
|
+
* MD3 anatomy element 2 — the header text displayed at the top of the drawer,
|
|
4142
|
+
* typically the app name or primary section label.
|
|
4143
|
+
*
|
|
4144
|
+
* Typography: `text-title-small`
|
|
4145
|
+
* Color: `text-on-surface-variant`
|
|
4146
|
+
*
|
|
4147
|
+
* @example
|
|
4148
|
+
* ```tsx
|
|
4149
|
+
* <Drawer aria-label="App navigation">
|
|
4150
|
+
* <DrawerHeadline>Mail</DrawerHeadline>
|
|
4151
|
+
* <DrawerItem label="Inbox" isActive />
|
|
4152
|
+
* </Drawer>
|
|
4153
|
+
* ```
|
|
4154
|
+
*
|
|
4155
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#anatomy
|
|
4156
|
+
*/
|
|
4157
|
+
declare const DrawerHeadline: React$1.ForwardRefExoticComponent<DrawerHeadlineProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
4158
|
+
|
|
4159
|
+
/**
|
|
4160
|
+
* Context shared between HeadlessDrawer and its children.
|
|
4105
4161
|
* @internal
|
|
4106
4162
|
*/
|
|
4107
|
-
declare const
|
|
4163
|
+
declare const DrawerContext: React__default.Context<DrawerContextValue | null>;
|
|
4108
4164
|
/**
|
|
4109
4165
|
* Headless Navigation Drawer (Layer 2).
|
|
4110
4166
|
*
|
|
4111
4167
|
* Provides all behavior and ARIA semantics without any visual styling.
|
|
4112
4168
|
* Renders two distinct DOM structures based on the `variant` prop:
|
|
4113
4169
|
*
|
|
4114
|
-
* - **`standard`**: `<nav role="navigation">` — no overlay, no focus trap
|
|
4115
|
-
*
|
|
4116
|
-
* `<div role="dialog" aria-modal="true">` with scrim overlay
|
|
4170
|
+
* - **`standard`**: `<nav role="navigation">` — no overlay, no focus trap,
|
|
4171
|
+
* translate-x driven by the `open` prop (spring-standard-spatial via CVA).
|
|
4117
4172
|
*
|
|
4118
|
-
*
|
|
4119
|
-
*
|
|
4120
|
-
*
|
|
4121
|
-
*
|
|
4122
|
-
*
|
|
4173
|
+
* - **`modal`**: portal to `document.body` with animation state machine
|
|
4174
|
+
* (`entering → visible → exiting → exited`), `createPortal` + portal gate,
|
|
4175
|
+
* `FocusScope`, `useDialog`, `useOverlay`, `usePreventScroll`, scrim, and
|
|
4176
|
+
* `data-animation-state` on both the panel and scrim elements.
|
|
4177
|
+
*
|
|
4178
|
+
* React Aria hooks used (modal):
|
|
4179
|
+
* - `useDialog` — `role="dialog"`, `aria-modal`, `aria-label`
|
|
4180
|
+
* - `useOverlay` — Escape key + outside-click dismissal
|
|
4181
|
+
* - `usePreventScroll` — locks body scroll when panel is mounted
|
|
4182
|
+
* - `FocusScope` — focus trap + restoreFocus on close
|
|
4123
4183
|
* - `useOverlayTriggerState` — open/close state management
|
|
4124
4184
|
*
|
|
4125
4185
|
* @example
|
|
4126
4186
|
* ```tsx
|
|
4127
|
-
* <HeadlessDrawer variant="modal" open aria-label="Navigation"
|
|
4187
|
+
* <HeadlessDrawer variant="modal" open aria-label="Navigation"
|
|
4188
|
+
* getAnimationClassName={(s) => drawerAnimationVariants({ animationState: s })}>
|
|
4128
4189
|
* <HeadlessDrawerItem onPress={() => {}}>Home</HeadlessDrawerItem>
|
|
4129
4190
|
* </HeadlessDrawer>
|
|
4130
4191
|
* ```
|
|
@@ -4133,12 +4194,15 @@ declare const HeadlessDrawer: React__default.ForwardRefExoticComponent<HeadlessD
|
|
|
4133
4194
|
/**
|
|
4134
4195
|
* Headless Navigation Drawer Item (Layer 2).
|
|
4135
4196
|
*
|
|
4197
|
+
* Thin primitive — handles only behavior and ARIA semantics. All interaction
|
|
4198
|
+
* state tracking (hover, focus-visible, pressed) and data-* attributes live
|
|
4199
|
+
* in the styled layer (DrawerItem), mirroring the ButtonHeadless pattern.
|
|
4200
|
+
*
|
|
4136
4201
|
* Renders as:
|
|
4137
4202
|
* - `<a>` using `useLink` when `href` is provided
|
|
4138
4203
|
* - `<button>` using `useButton` when no `href`
|
|
4139
4204
|
*
|
|
4140
4205
|
* Applies `aria-current="page"` when `isActive` is true.
|
|
4141
|
-
* Uses `useFocusRing` for visible keyboard focus.
|
|
4142
4206
|
*
|
|
4143
4207
|
* @example
|
|
4144
4208
|
* ```tsx
|
|
@@ -4155,6 +4219,246 @@ declare const HeadlessDrawer: React__default.ForwardRefExoticComponent<HeadlessD
|
|
|
4155
4219
|
*/
|
|
4156
4220
|
declare const HeadlessDrawerItem: React__default.ForwardRefExoticComponent<HeadlessDrawerItemProps & React__default.RefAttributes<HTMLElement>>;
|
|
4157
4221
|
|
|
4222
|
+
/**
|
|
4223
|
+
* Material Design 3 Navigation Drawer container variants (CVA).
|
|
4224
|
+
*
|
|
4225
|
+
* Architecture: Variants vs States (component-variants.mdc)
|
|
4226
|
+
* - CVA holds design-time structure only (variant, open).
|
|
4227
|
+
* - No interaction states in CVA — they are driven by data-* on the root.
|
|
4228
|
+
*
|
|
4229
|
+
* Specification:
|
|
4230
|
+
* Width: 360dp (`w-drawer`)
|
|
4231
|
+
* Height: 100dvh (`h-full`)
|
|
4232
|
+
* Padding: 12dp sides/top/bottom (`px-3 py-3`)
|
|
4233
|
+
* Surface: `bg-surface-container-low` (both variants per MD3 color token)
|
|
4234
|
+
* Elevation: standard = none; modal = `shadow-elevation-1`
|
|
4235
|
+
* Shape:
|
|
4236
|
+
* standard = square trailing edge (`rounded-none`) — panel is flush with the
|
|
4237
|
+
* screen left edge and has no exposed trailing corner.
|
|
4238
|
+
* modal = 16dp trailing corner (`rounded-r-lg`, MD3 corner-large) — the
|
|
4239
|
+
* exposed right edge is rounded when the drawer overlays content.
|
|
4240
|
+
*
|
|
4241
|
+
* Standard slide motion (spatial, on-screen translate):
|
|
4242
|
+
* Spring-standard-default-spatial (500ms, no overshoot) per md3-motion.mdc.
|
|
4243
|
+
* "enter = translate-x-0, exit = -translate-x-full"
|
|
4244
|
+
* Applied with `transition-transform` + spring tokens.
|
|
4245
|
+
* Reduced motion: handled by caller appending `transition-none`.
|
|
4246
|
+
*
|
|
4247
|
+
* Modal motion (enters/exits the screen):
|
|
4248
|
+
* Uses the animate-md-slide-in-left / animate-md-slide-out-left composite
|
|
4249
|
+
* utilities applied via `drawerAnimationVariants` + the presence state machine
|
|
4250
|
+
* in HeadlessDrawer. Container itself stays fixed; panel is portalled.
|
|
4251
|
+
*
|
|
4252
|
+
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4253
|
+
*/
|
|
4254
|
+
declare const drawerVariants: (props?: ({
|
|
4255
|
+
variant?: "standard" | "modal" | null | undefined;
|
|
4256
|
+
open?: boolean | null | undefined;
|
|
4257
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4258
|
+
/**
|
|
4259
|
+
* Animation state CVA for the MODAL drawer panel.
|
|
4260
|
+
*
|
|
4261
|
+
* Mirrors the `bottomSheetAnimationVariants` pattern exactly.
|
|
4262
|
+
* Applied by `Drawer.tsx` via a `getAnimationClassName` callback that is
|
|
4263
|
+
* gated on `useReducedMotion()`.
|
|
4264
|
+
*
|
|
4265
|
+
* Motion tokens (drawer is a large screen-level element, left-edge):
|
|
4266
|
+
* Enter: `animate-md-slide-in-left` — standard-default-spatial (500ms)
|
|
4267
|
+
* Exit: `animate-md-slide-out-left` — emphasized-accelerate (200ms)
|
|
4268
|
+
*
|
|
4269
|
+
* State machine: entering → visible → exiting → exited
|
|
4270
|
+
* entering: mount frame, panel is transparent/off-screen (no animation yet)
|
|
4271
|
+
* visible: entry animation fires
|
|
4272
|
+
* exiting: exit animation fires; `onTransitionEnd` + fallback timer → exited
|
|
4273
|
+
* exited: portal gate removes the element
|
|
4274
|
+
*
|
|
4275
|
+
* @see packages/react/src/components/BottomSheet/BottomSheet.variants.ts
|
|
4276
|
+
* @see https://m3.material.io/components/navigation-drawer/specs — Motion
|
|
4277
|
+
*/
|
|
4278
|
+
declare const drawerAnimationVariants: (props?: ({
|
|
4279
|
+
animationState?: "visible" | "entering" | "exiting" | "exited" | null | undefined;
|
|
4280
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4281
|
+
/**
|
|
4282
|
+
* Scrim animation CVA — controls the modal backdrop fade via CSS transition.
|
|
4283
|
+
*
|
|
4284
|
+
* Uses `transition-opacity` (an effects property — no overshoot) rather than
|
|
4285
|
+
* `animate-md-fade-*` keyframes so that the opacity change is a plain
|
|
4286
|
+
* CSS transition from one state to another, avoiding a `tailwind-merge`
|
|
4287
|
+
* conflict between the base `opacity-32` and the keyframe `opacity-1`.
|
|
4288
|
+
*
|
|
4289
|
+
* Opacity sequence per state:
|
|
4290
|
+
* entering: opacity-0 (invisible mount frame — transition will start here)
|
|
4291
|
+
* visible: opacity-32 (MD3 scrim opacity; CSS transition from 0→32 fires)
|
|
4292
|
+
* exiting: opacity-0 (CSS transition from 32→0 fires)
|
|
4293
|
+
* exited: opacity-0 + pointer-events-none (portal gate removes element)
|
|
4294
|
+
*
|
|
4295
|
+
* NOTE: the base `drawerScrimVariants` must NOT include `opacity-32` so that
|
|
4296
|
+
* tailwind-merge does not collapse it with these per-state opacity classes.
|
|
4297
|
+
*
|
|
4298
|
+
* @see https://m3.material.io/components/navigation-drawer/specs — Scrim callout 9
|
|
4299
|
+
*/
|
|
4300
|
+
declare const drawerScrimAnimationVariants: (props?: ({
|
|
4301
|
+
animationState?: "visible" | "entering" | "exiting" | "exited" | null | undefined;
|
|
4302
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4303
|
+
/**
|
|
4304
|
+
* Material Design 3 Navigation Drawer item root variants (CVA).
|
|
4305
|
+
*
|
|
4306
|
+
* Architecture: root is the `group/draweritem` host. It owns layout, shape,
|
|
4307
|
+
* and cursor. Colors (content color) live here via self-targeting `data-[x]:`
|
|
4308
|
+
* selectors since the root IS the group host.
|
|
4309
|
+
*
|
|
4310
|
+
* Slot z-order:
|
|
4311
|
+
* activeIndicator z-0 — secondary-container pill background
|
|
4312
|
+
* stateLayer z-[1] — hover/press opacity overlay
|
|
4313
|
+
* focusRing z-[2] — keyboard focus outline
|
|
4314
|
+
* ripple z-[3] — press ripple feedback
|
|
4315
|
+
* content z-10 — icon, label, badge
|
|
4316
|
+
*
|
|
4317
|
+
* Specification:
|
|
4318
|
+
* Height: 56dp (`h-14`)
|
|
4319
|
+
* Shape: `rounded-full` (pill)
|
|
4320
|
+
* Padding: 16dp leading (`pl-4`), 24dp trailing (`pr-6`)
|
|
4321
|
+
* Gap: 12dp icon-to-label (`gap-3`)
|
|
4322
|
+
* Typography: Label Large — 14sp / 500 / 0.1px tracking
|
|
4323
|
+
*
|
|
4324
|
+
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4325
|
+
*/
|
|
4326
|
+
declare const drawerItemVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4327
|
+
/**
|
|
4328
|
+
* Active indicator — secondary-container pill background.
|
|
4329
|
+
*
|
|
4330
|
+
* Fills the item shape (`inset-0 rounded-[inherit]`) and uses opacity
|
|
4331
|
+
* to toggle visibility when the item becomes active. Separating this from
|
|
4332
|
+
* the root background lets the state layer sit above it at z-[1].
|
|
4333
|
+
*
|
|
4334
|
+
* Color: `bg-secondary-container` per MD3 color token (callout 5).
|
|
4335
|
+
*
|
|
4336
|
+
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4337
|
+
*/
|
|
4338
|
+
declare const drawerItemActiveIndicatorVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4339
|
+
/**
|
|
4340
|
+
* State layer — absolute inset overlay that transitions opacity on
|
|
4341
|
+
* hover / focus-visible / press interaction states.
|
|
4342
|
+
*
|
|
4343
|
+
* Color mapping per MD3 spec:
|
|
4344
|
+
* Inactive: `bg-on-surface-variant` (callout 2/8)
|
|
4345
|
+
* Active: `bg-on-secondary-container` (callout 3/6)
|
|
4346
|
+
*
|
|
4347
|
+
* State-layer opacities per MD3 spec:
|
|
4348
|
+
* Hover: 8% (opacity-8)
|
|
4349
|
+
* Focused: 10% (opacity-10)
|
|
4350
|
+
* Pressed: 10% (opacity-10 — doubled selector wins over hover)
|
|
4351
|
+
* Hidden when disabled.
|
|
4352
|
+
*
|
|
4353
|
+
* Focus-visible also activates the dedicated focus-ring slot
|
|
4354
|
+
* (drawerItemFocusRingVariants) per WCAG 2.4.7. Both layer + ring are shown
|
|
4355
|
+
* simultaneously, matching the BottomSheet handle and MD3 reference grid.
|
|
4356
|
+
*
|
|
4357
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#states
|
|
4358
|
+
*/
|
|
4359
|
+
declare const drawerItemStateLayerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4360
|
+
/**
|
|
4361
|
+
* Focus ring slot — keyboard-focus indicator rendered as an absolute overlay.
|
|
4362
|
+
*
|
|
4363
|
+
* Uses `-outline-offset-2` (inset 2dp) so the outline stays within the pill
|
|
4364
|
+
* shape and does not spill into adjacent items.
|
|
4365
|
+
*
|
|
4366
|
+
* Shown alongside the 10% state layer for full MD3 focus state compliance.
|
|
4367
|
+
* Color: `outline-secondary` per MD3 focus indicator token.
|
|
4368
|
+
* Opacity: 0 at rest → 100% on focus-visible.
|
|
4369
|
+
*
|
|
4370
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#states
|
|
4371
|
+
*/
|
|
4372
|
+
declare const drawerItemFocusRingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4373
|
+
/**
|
|
4374
|
+
* Leading icon slot.
|
|
4375
|
+
*
|
|
4376
|
+
* MD3 spec: 24dp × 24dp icon.
|
|
4377
|
+
* Color inherits from the root `text-*` via `currentColor`.
|
|
4378
|
+
* Inactive: `text-on-surface-variant` (via root).
|
|
4379
|
+
* Active: `text-on-secondary-container` (via root data-[active]).
|
|
4380
|
+
* Disabled: explicit `text-on-surface/38` override (matches Menu icon pattern).
|
|
4381
|
+
*
|
|
4382
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#anatomy
|
|
4383
|
+
*/
|
|
4384
|
+
declare const drawerItemIconVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4385
|
+
/**
|
|
4386
|
+
* Label text slot.
|
|
4387
|
+
*
|
|
4388
|
+
* Typography (Label Large — size, weight, tracking) is set on the root via
|
|
4389
|
+
* `drawerItemVariants` and inherited here via cascade.
|
|
4390
|
+
* `z-10` keeps it above the state layer and active indicator overlays.
|
|
4391
|
+
*/
|
|
4392
|
+
declare const drawerItemLabelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4393
|
+
/**
|
|
4394
|
+
* Trailing badge label text slot.
|
|
4395
|
+
*
|
|
4396
|
+
* MD3 anatomy element 5 — "Badge label text".
|
|
4397
|
+
* Rendered as plain inline text, colored by the item's active/inactive state
|
|
4398
|
+
* via the root's inherited text color.
|
|
4399
|
+
*
|
|
4400
|
+
* Typography: Label Large — size via `text-label-large`, weight and tracking
|
|
4401
|
+
* set explicitly so they are not lost when the element is not a block-level
|
|
4402
|
+
* inheritor in all browsers.
|
|
4403
|
+
*
|
|
4404
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#anatomy
|
|
4405
|
+
*/
|
|
4406
|
+
declare const drawerItemBadgeVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4407
|
+
/**
|
|
4408
|
+
* Material Design 3 Navigation Drawer Headline variants (CVA).
|
|
4409
|
+
*
|
|
4410
|
+
* MD3 anatomy element 2 — the header text at the top of the drawer.
|
|
4411
|
+
* Typography: Title Small — 14sp / 500 / 0.1px tracking.
|
|
4412
|
+
* Color: `text-on-surface-variant`.
|
|
4413
|
+
* Padding: 16dp top (pt-4), 16dp horizontal (px-4), 4dp bottom (pb-1).
|
|
4414
|
+
*
|
|
4415
|
+
* @see https://m3.material.io/components/navigation-drawer/specs#anatomy
|
|
4416
|
+
*/
|
|
4417
|
+
declare const drawerHeadlineVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4418
|
+
/**
|
|
4419
|
+
* Modal scrim overlay base styles (CVA).
|
|
4420
|
+
*
|
|
4421
|
+
* Covers the full viewport behind the modal drawer.
|
|
4422
|
+
* Clicking the scrim closes the drawer.
|
|
4423
|
+
*
|
|
4424
|
+
* Color: `bg-scrim` at `opacity-32` per MD3 spec callout 9.
|
|
4425
|
+
*
|
|
4426
|
+
* Enter/exit fade is applied via `drawerScrimAnimationVariants` by the
|
|
4427
|
+
* animation-state machine in HeadlessDrawer.
|
|
4428
|
+
*
|
|
4429
|
+
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4430
|
+
*/
|
|
4431
|
+
declare const drawerScrimVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4432
|
+
/**
|
|
4433
|
+
* Drawer section container variants (CVA).
|
|
4434
|
+
*
|
|
4435
|
+
* Groups related items with an optional header label and divider.
|
|
4436
|
+
*/
|
|
4437
|
+
declare const drawerSectionVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4438
|
+
/**
|
|
4439
|
+
* Drawer section header variants (CVA).
|
|
4440
|
+
*
|
|
4441
|
+
* Typography: Title Small — 14sp / 500 / 0.1px tracking per MD3 spec.
|
|
4442
|
+
* Color: `text-on-surface-variant`.
|
|
4443
|
+
* Padding: 16dp horizontal (aligned with item icon), 16dp top, 8dp bottom.
|
|
4444
|
+
*
|
|
4445
|
+
* @see https://m3.material.io/components/navigation-drawer/specs
|
|
4446
|
+
*/
|
|
4447
|
+
declare const drawerSectionHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
4448
|
+
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
4449
|
+
type DrawerAnimationVariants = VariantProps<typeof drawerAnimationVariants>;
|
|
4450
|
+
type DrawerScrimAnimationVariants = VariantProps<typeof drawerScrimAnimationVariants>;
|
|
4451
|
+
type DrawerItemVariants = VariantProps<typeof drawerItemVariants>;
|
|
4452
|
+
type DrawerItemActiveIndicatorVariants = VariantProps<typeof drawerItemActiveIndicatorVariants>;
|
|
4453
|
+
type DrawerItemStateLayerVariants = VariantProps<typeof drawerItemStateLayerVariants>;
|
|
4454
|
+
type DrawerItemFocusRingVariants = VariantProps<typeof drawerItemFocusRingVariants>;
|
|
4455
|
+
type DrawerItemIconVariants = VariantProps<typeof drawerItemIconVariants>;
|
|
4456
|
+
type DrawerItemLabelVariants = VariantProps<typeof drawerItemLabelVariants>;
|
|
4457
|
+
type DrawerItemBadgeVariants = VariantProps<typeof drawerItemBadgeVariants>;
|
|
4458
|
+
type DrawerHeadlineVariants = VariantProps<typeof drawerHeadlineVariants>;
|
|
4459
|
+
type DrawerScrimVariants = VariantProps<typeof drawerScrimVariants>;
|
|
4460
|
+
type DrawerSectionVariants = VariantProps<typeof drawerSectionVariants>;
|
|
4461
|
+
|
|
4158
4462
|
/**
|
|
4159
4463
|
* Material Design 3 Progress Indicator Component Props
|
|
4160
4464
|
*
|
|
@@ -12399,4 +12703,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
|
|
|
12399
12703
|
declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
12400
12704
|
type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
|
|
12401
12705
|
|
|
12402
|
-
export { type ActionButtonFocusRingVariants, type ActionButtonSlotProps, type ActionButtonStateLayerVariants, type ActionButtonVariants, type ActionRowVariants, AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, BadgeContent, type BadgeContentProps, BadgeHeadless, type BadgeHeadlessProps, type BadgeProps, type BadgeVariants, BottomSheet, type BottomSheetAnimationState, type BottomSheetAnimationVariants, BottomSheetContext, type BottomSheetContextValue, BottomSheetHandle, type BottomSheetHandleProps, type BottomSheetHandleVariants, BottomSheetHeadless, type BottomSheetHeadlessProps, type BottomSheetProps, type BottomSheetScrimVariants, type BottomSheetVariant, type BottomSheetVariants, Button, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupFocusRingVariants, ButtonGroupHeadless, type ButtonGroupProps, type ButtonGroupRootVariants, type ButtonGroupSelectionMode, type ButtonGroupShape, type ButtonGroupSize, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, type CalendarCellComponentProps, type CalendarCellFocusRingVariants, type CalendarCellProps, type CalendarCellStateLayerVariants, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarCoreProps, type CalendarDividerVariants, type CalendarGridProps, type CalendarHeaderVariants, type CalendarSlots, type CalendarTitleIconVariants, type CalendarTitleStateLayerVariants, type CalendarTitleTextVariants, type CalendarTitleVariants, type CalendarView, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardHeadless, type CardHeadlessProps, CardMedia, type CardMediaProps, type CardProps, type CardVariant, type CardVariants, Checkbox, type CheckboxProps, Chip, ChipHeadless, type ChipHeadlessProps, type ChipProps, ChipSet, type ChipSetProps, type ChipSurface, type ChipType, type ChipVariants, type ClockDialContainerVariants, type ClockDialNumberVariants, type ClockDialProps, type ClockHandCenterVariants, type ClockHandHandleVariants, type ClockHandProps, type ClockHandTrackVariants, type ClockSelectionMode, DateField, type DateFieldProps, type DateFieldVariants, type DateInputErrorVariants, type DateInputFieldGroupVariants, type DateInputFieldProps, type DateInputFieldVariants, type DateInputLabelVariants, DatePicker, type DatePickerActionsProps, type DatePickerCalendarSlots, type DatePickerContainerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeadlessProps, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerProps, type DatePickerRenderState, type DatePickerVariant, type DateSegmentPlaceholderVariants, type DateSelectionMode, Dialog, DialogActions, type DialogActionsProps, type DialogAnimationState, DialogContent, type DialogContentProps, DialogContext, type DialogContextValue, DialogHeadless, type DialogHeadlessProps, DialogHeadline, type DialogHeadlineProps, type DialogProps, type DialogVariant, Divider, DividerHeadless, type DividerHeadlessProps, type DividerInset, type DividerOrientation, type DividerProps, type DividerVariants, type DockedFieldGroupVariants, type DockedLabelVariants, type DockedTriggerStateLayerVariants, type DockedTriggerVariants, Drawer, type DrawerContextValue, DrawerIconOnlyContext, DrawerItem, type DrawerItemBadgeConfig, type DrawerItemProps, type DrawerProps, DrawerSection, type DrawerSectionProps, type DrawerVariant, FAB, type FABColor, FABHeadless, type FABHeadlessProps, FABMenu, FABMenuContext, type FABMenuContextValue, type FABMenuDirection, FABMenuHeadless, type FABMenuHeadlessProps, FABMenuItem, type FABMenuItemColor, type FABMenuItemFocusRingVariants, type FABMenuItemIconVariants, type FABMenuItemLabelVariants, type FABMenuItemProps, type FABMenuItemStateLayerVariants, type FABMenuItemVariants, type FABMenuListVariants, type FABMenuProps, type FABMenuVariants, type FABProps, type FABSize, HeadlessDrawer, HeadlessDrawerItem, type HeadlessDrawerItemProps, type HeadlessDrawerProps, HeadlessMenu, HeadlessMenuDivider, HeadlessMenuItem, type HeadlessMenuItemProps, type HeadlessMenuProps, HeadlessMenuSection, type HeadlessMenuSectionProps, HeadlessMenuTrigger, type HeadlessMenuTriggerProps, HeadlessNavigationBar, HeadlessNavigationBarItem, type HeadlessNavigationBarItemProps, type HeadlessNavigationBarProps, HeadlessTab, HeadlessTabList, HeadlessTabPanel, type HeadlessTabPanelProps, type HeadlessTabProps, type HeadlineVariants, IconButton, type IconButtonColor, IconButtonHeadless, type IconButtonHeadlessProps, type IconButtonProps, type IconButtonSize, type IconButtonVariant, List, type ListDensity, ListHeadless, type ListHeadlessProps, ListItem, ListItemHeadless, ListItemLeading, type ListItemLeadingProps, type ListItemProps, ListItemText, type ListItemTextProps, ListItemTrailing, type ListItemTrailingProps, type ListItemVariants, type ListLeadingType, type ListProps, type ListTrailingType, type ListVariants, type MD3ColorRole, type MD3TypographyScale, type MD3TypographySize, type MD3TypographyStyle, Menu, type MenuContainerVariants, MenuContext, type MenuContextValue, MenuDivider, type MenuDividerProps, MenuItem, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuTrigger, type MenuTriggerProps, type ModalDialogVariants, type ModalHeaderVariants, type ModeToggleStateLayerVariants, type ModeToggleVariants, type NavButtonComponentProps, type NavButtonFocusRingVariants, type NavButtonStateLayerVariants, type NavButtonVariants, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, type PopoverVariants, Progress, ProgressHeadless, type ProgressHeadlessProps, type ProgressProps, Radio, RadioGroup, RadioGroupHeadless, type RadioGroupHeadlessProps, type RadioGroupProps, RadioHeadless, type RadioHeadlessProps, type RadioProps, type RangeCalendarProps, RichTooltip, type RichTooltipProps, type RichTooltipVariants, STATE_LAYER_OPACITY, type ScrimVariants, Search, SearchBar, SearchBarHeadless, type SearchBarHeadlessProps, type SearchBarProps, type SearchLayout, type SearchProps, type SearchStyle, SearchView, SearchViewHeadless, type SearchViewHeadlessProps, type SearchViewProps, Slider, SliderHeadless, type SliderHeadlessProps, type SliderOrientation, type SliderProps, type SliderRangeThumbLabels, type SliderRenderState, type SliderSize, type SliderThumbProps, type SliderThumbState, type SliderVariant, Snackbar, type SnackbarAction, SnackbarContext, type SnackbarContextValue, SnackbarHeadless, type SnackbarHeadlessProps, type SnackbarItem, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, type SnackbarSeverity, SplitButton, type SplitButtonContainerVariants, type SplitButtonFocusRingVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonIconVariants, type SplitButtonLeadingVariants, type SplitButtonMenuItem, type SplitButtonMenuItemVariantProps, type SplitButtonProps, type SplitButtonSize, type SplitButtonStateLayerVariants, type SplitButtonTrailingVariants, type SplitButtonVariant, StyledActionButton, StyledCalendarCell, StyledCalendarTitle, StyledNavButton, StyledWeekday, StyledYearItem, type SupportingTextVariants, Switch, type SwitchProps, TYPOGRAPHY_ELEMENT_MAP, TYPOGRAPHY_USAGE, Tab, type TabItem, type TabLayout, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, type TabVariant, Tabs, type TabsProps, TextField, type TextFieldProps, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarAvatarVariants, searchBarFocusRingVariants, searchBarInputVariants, searchBarLeadingIconVariants, searchBarRootVariants, searchBarStateLayerVariants, searchBarTrailingActionVariants, searchBarTrailingActionsVariants, searchViewBackButtonVariants, searchViewClearButtonVariants, searchViewContentVariants, searchViewDividerVariants, searchViewHeaderVariants, searchViewInputVariants, searchViewTrailingActionVariants, searchViewTrailingActionsVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonFocusRingVariants, splitButtonIconVariants, splitButtonLabelVariants, splitButtonLeadingVariants, splitButtonMenuItemVariants, splitButtonMenuVariants, splitButtonStateLayerVariants, splitButtonTrailingVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };
|
|
12706
|
+
export { type ActionButtonFocusRingVariants, type ActionButtonSlotProps, type ActionButtonStateLayerVariants, type ActionButtonVariants, type ActionRowVariants, AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, BadgeContent, type BadgeContentProps, BadgeHeadless, type BadgeHeadlessProps, type BadgeProps, type BadgeVariants, BottomSheet, type BottomSheetAnimationState, type BottomSheetAnimationVariants, BottomSheetContext, type BottomSheetContextValue, BottomSheetHandle, type BottomSheetHandleProps, type BottomSheetHandleVariants, BottomSheetHeadless, type BottomSheetHeadlessProps, type BottomSheetProps, type BottomSheetScrimVariants, type BottomSheetVariant, type BottomSheetVariants, Button, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupFocusRingVariants, ButtonGroupHeadless, type ButtonGroupProps, type ButtonGroupRootVariants, type ButtonGroupSelectionMode, type ButtonGroupShape, type ButtonGroupSize, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, type CalendarCellComponentProps, type CalendarCellFocusRingVariants, type CalendarCellProps, type CalendarCellStateLayerVariants, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarCoreProps, type CalendarDividerVariants, type CalendarGridProps, type CalendarHeaderVariants, type CalendarSlots, type CalendarTitleIconVariants, type CalendarTitleStateLayerVariants, type CalendarTitleTextVariants, type CalendarTitleVariants, type CalendarView, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardHeadless, type CardHeadlessProps, CardMedia, type CardMediaProps, type CardProps, type CardVariant, type CardVariants, Checkbox, type CheckboxProps, Chip, ChipHeadless, type ChipHeadlessProps, type ChipProps, ChipSet, type ChipSetProps, type ChipSurface, type ChipType, type ChipVariants, type ClockDialContainerVariants, type ClockDialNumberVariants, type ClockDialProps, type ClockHandCenterVariants, type ClockHandHandleVariants, type ClockHandProps, type ClockHandTrackVariants, type ClockSelectionMode, DateField, type DateFieldProps, type DateFieldVariants, type DateInputErrorVariants, type DateInputFieldGroupVariants, type DateInputFieldProps, type DateInputFieldVariants, type DateInputLabelVariants, DatePicker, type DatePickerActionsProps, type DatePickerCalendarSlots, type DatePickerContainerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeadlessProps, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerProps, type DatePickerRenderState, type DatePickerVariant, type DateSegmentPlaceholderVariants, type DateSelectionMode, Dialog, DialogActions, type DialogActionsProps, type DialogAnimationState, DialogContent, type DialogContentProps, DialogContext, type DialogContextValue, DialogHeadless, type DialogHeadlessProps, DialogHeadline, type DialogHeadlineProps, type DialogProps, type DialogVariant, Divider, DividerHeadless, type DividerHeadlessProps, type DividerInset, type DividerOrientation, type DividerProps, type DividerVariants, type DockedFieldGroupVariants, type DockedLabelVariants, type DockedTriggerStateLayerVariants, type DockedTriggerVariants, Drawer, type DrawerAnimationState, type DrawerAnimationVariants, DrawerContext, type DrawerContextValue, DrawerHeadline, type DrawerHeadlineProps, type DrawerHeadlineVariants, DrawerItem, type DrawerItemActiveIndicatorVariants, type DrawerItemBadgeVariants, type DrawerItemFocusRingVariants, type DrawerItemIconVariants, type DrawerItemLabelVariants, type DrawerItemProps, type DrawerItemStateLayerVariants, type DrawerItemVariants, type DrawerProps, type DrawerScrimAnimationVariants, type DrawerScrimVariants, DrawerSection, type DrawerSectionProps, type DrawerSectionVariants, type DrawerVariant, type DrawerVariants, FAB, type FABColor, FABHeadless, type FABHeadlessProps, FABMenu, FABMenuContext, type FABMenuContextValue, type FABMenuDirection, FABMenuHeadless, type FABMenuHeadlessProps, FABMenuItem, type FABMenuItemColor, type FABMenuItemFocusRingVariants, type FABMenuItemIconVariants, type FABMenuItemLabelVariants, type FABMenuItemProps, type FABMenuItemStateLayerVariants, type FABMenuItemVariants, type FABMenuListVariants, type FABMenuProps, type FABMenuVariants, type FABProps, type FABSize, HeadlessDrawer, HeadlessDrawerItem, type HeadlessDrawerItemProps, type HeadlessDrawerProps, HeadlessMenu, HeadlessMenuDivider, HeadlessMenuItem, type HeadlessMenuItemProps, type HeadlessMenuProps, HeadlessMenuSection, type HeadlessMenuSectionProps, HeadlessMenuTrigger, type HeadlessMenuTriggerProps, HeadlessNavigationBar, HeadlessNavigationBarItem, type HeadlessNavigationBarItemProps, type HeadlessNavigationBarProps, HeadlessTab, HeadlessTabList, HeadlessTabPanel, type HeadlessTabPanelProps, type HeadlessTabProps, type HeadlineVariants, IconButton, type IconButtonColor, IconButtonHeadless, type IconButtonHeadlessProps, type IconButtonProps, type IconButtonSize, type IconButtonVariant, List, type ListDensity, ListHeadless, type ListHeadlessProps, ListItem, ListItemHeadless, ListItemLeading, type ListItemLeadingProps, type ListItemProps, ListItemText, type ListItemTextProps, ListItemTrailing, type ListItemTrailingProps, type ListItemVariants, type ListLeadingType, type ListProps, type ListTrailingType, type ListVariants, type MD3ColorRole, type MD3TypographyScale, type MD3TypographySize, type MD3TypographyStyle, Menu, type MenuContainerVariants, MenuContext, type MenuContextValue, MenuDivider, type MenuDividerProps, MenuItem, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuTrigger, type MenuTriggerProps, type ModalDialogVariants, type ModalHeaderVariants, type ModeToggleStateLayerVariants, type ModeToggleVariants, type NavButtonComponentProps, type NavButtonFocusRingVariants, type NavButtonStateLayerVariants, type NavButtonVariants, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, type PopoverVariants, Progress, ProgressHeadless, type ProgressHeadlessProps, type ProgressProps, Radio, RadioGroup, RadioGroupHeadless, type RadioGroupHeadlessProps, type RadioGroupProps, RadioHeadless, type RadioHeadlessProps, type RadioProps, type RangeCalendarProps, RichTooltip, type RichTooltipProps, type RichTooltipVariants, STATE_LAYER_OPACITY, type ScrimVariants, Search, SearchBar, SearchBarHeadless, type SearchBarHeadlessProps, type SearchBarProps, type SearchLayout, type SearchProps, type SearchStyle, SearchView, SearchViewHeadless, type SearchViewHeadlessProps, type SearchViewProps, Slider, SliderHeadless, type SliderHeadlessProps, type SliderOrientation, type SliderProps, type SliderRangeThumbLabels, type SliderRenderState, type SliderSize, type SliderThumbProps, type SliderThumbState, type SliderVariant, Snackbar, type SnackbarAction, SnackbarContext, type SnackbarContextValue, SnackbarHeadless, type SnackbarHeadlessProps, type SnackbarItem, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, type SnackbarSeverity, SplitButton, type SplitButtonContainerVariants, type SplitButtonFocusRingVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonIconVariants, type SplitButtonLeadingVariants, type SplitButtonMenuItem, type SplitButtonMenuItemVariantProps, type SplitButtonProps, type SplitButtonSize, type SplitButtonStateLayerVariants, type SplitButtonTrailingVariants, type SplitButtonVariant, StyledActionButton, StyledCalendarCell, StyledCalendarTitle, StyledNavButton, StyledWeekday, StyledYearItem, type SupportingTextVariants, Switch, type SwitchProps, TYPOGRAPHY_ELEMENT_MAP, TYPOGRAPHY_USAGE, Tab, type TabItem, type TabLayout, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, type TabVariant, Tabs, type TabsProps, TextField, type TextFieldProps, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, drawerAnimationVariants, drawerHeadlineVariants, drawerItemActiveIndicatorVariants, drawerItemBadgeVariants, drawerItemFocusRingVariants, drawerItemIconVariants, drawerItemLabelVariants, drawerItemStateLayerVariants, drawerItemVariants, drawerScrimAnimationVariants, drawerScrimVariants, drawerSectionHeaderVariants, drawerSectionVariants, drawerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarAvatarVariants, searchBarFocusRingVariants, searchBarInputVariants, searchBarLeadingIconVariants, searchBarRootVariants, searchBarStateLayerVariants, searchBarTrailingActionVariants, searchBarTrailingActionsVariants, searchViewBackButtonVariants, searchViewClearButtonVariants, searchViewContentVariants, searchViewDividerVariants, searchViewHeaderVariants, searchViewInputVariants, searchViewTrailingActionVariants, searchViewTrailingActionsVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonFocusRingVariants, splitButtonIconVariants, splitButtonLabelVariants, splitButtonLeadingVariants, splitButtonMenuItemVariants, splitButtonMenuVariants, splitButtonStateLayerVariants, splitButtonTrailingVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };
|