@tinybigui/react 0.13.0 → 0.14.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.d.ts CHANGED
@@ -2004,24 +2004,16 @@ declare const FABHeadless: React$1.ForwardRefExoticComponent<FABHeadlessProps &
2004
2004
  * TextField Type Definitions
2005
2005
  *
2006
2006
  * Type definitions for the Material Design 3 TextField component.
2007
- * Supports both filled and outlined variants with full accessibility.
2007
+ * Supports filled and outlined variants with full accessibility via React Aria.
2008
2008
  */
2009
2009
 
2010
2010
  /**
2011
- * TextField visual variants
2011
+ * TextField visual variants.
2012
2012
  *
2013
- * - `filled`: Solid background with bottom border (default)
2014
- * - `outlined`: Border around entire field
2013
+ * - `filled`: Solid background (`surface-container-highest`) with active indicator bottom border.
2014
+ * - `outlined`: Transparent with a full rounded border and notched legend for the floating label.
2015
2015
  */
2016
2016
  type TextFieldVariant = "filled" | "outlined";
2017
- /**
2018
- * TextField size variants
2019
- *
2020
- * - `small`: Compact height
2021
- * - `medium`: Standard height (default)
2022
- * - `large`: Larger height
2023
- */
2024
- type TextFieldSize = "small" | "medium" | "large";
2025
2017
  /**
2026
2018
  * Arguments passed to the TextFieldHeadless render-prop children function.
2027
2019
  *
@@ -2039,7 +2031,7 @@ interface TextFieldRenderProps {
2039
2031
  errorMessageProps: HTMLAttributes<HTMLElement>;
2040
2032
  /** Whether the field is currently in an invalid state */
2041
2033
  isInvalid: boolean;
2042
- /** Whether the input currently has focus (keyboard or pointer) */
2034
+ /** Whether the input currently has any focus (keyboard or pointer) */
2043
2035
  isFocused: boolean;
2044
2036
  /** Whether the input has keyboard-visible focus (for focus ring) */
2045
2037
  isFocusVisible: boolean;
@@ -2049,67 +2041,67 @@ interface TextFieldRenderProps {
2049
2041
  inputRef: RefObject<HTMLInputElement | HTMLTextAreaElement>;
2050
2042
  }
2051
2043
  /**
2052
- * Props for the headless TextField component (Layer 2)
2044
+ * Props for the headless TextField component (Layer 2).
2053
2045
  *
2054
2046
  * Extends React Aria's AriaTextFieldProps for accessibility.
2055
2047
  * Provides behavior without styling.
2056
2048
  */
2057
2049
  interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "onFocus" | "onBlur"> {
2058
2050
  /**
2059
- * Label text for the input
2051
+ * Label text for the input.
2060
2052
  */
2061
2053
  label?: string;
2062
2054
  /**
2063
- * Helper text displayed below the input
2055
+ * Helper text displayed below the input.
2064
2056
  * @example "Enter your email address"
2065
2057
  */
2066
2058
  description?: string;
2067
2059
  /**
2068
- * Error message to display when input is invalid
2060
+ * Error message to display when input is invalid.
2069
2061
  * @example "Email is required"
2070
2062
  */
2071
2063
  errorMessage?: string;
2072
2064
  /**
2073
- * Whether the input should expand to fill its container
2065
+ * Whether the input should expand to fill its container.
2074
2066
  * @default false
2075
2067
  */
2076
2068
  fullWidth?: boolean;
2077
2069
  /**
2078
- * Enable multiline mode (textarea)
2070
+ * Enable multiline mode (textarea).
2079
2071
  * @default false
2080
2072
  */
2081
2073
  multiline?: boolean;
2082
2074
  /**
2083
- * Number of visible rows for multiline input
2075
+ * Number of visible rows for multiline input.
2084
2076
  * @default 3
2085
2077
  */
2086
2078
  rows?: number;
2087
2079
  /**
2088
- * Custom className for the container
2080
+ * Custom className for the container.
2089
2081
  */
2090
2082
  className?: string;
2091
2083
  /**
2092
- * Custom className for the input element
2084
+ * Custom className for the input element.
2093
2085
  */
2094
2086
  inputClassName?: string;
2095
2087
  /**
2096
- * Custom className for the label element
2088
+ * Custom className for the label element.
2097
2089
  */
2098
2090
  labelClassName?: string;
2099
2091
  /**
2100
- * Custom className for the description element
2092
+ * Custom className for the description element.
2101
2093
  */
2102
2094
  descriptionClassName?: string;
2103
2095
  /**
2104
- * Custom className for the error message element
2096
+ * Custom className for the error message element.
2105
2097
  */
2106
2098
  errorClassName?: string;
2107
2099
  /**
2108
- * Handler called when the input is focused
2100
+ * Handler called when the input is focused.
2109
2101
  */
2110
2102
  onFocus?: (e: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
2111
2103
  /**
2112
- * Handler called when the input loses focus
2104
+ * Handler called when the input loses focus.
2113
2105
  */
2114
2106
  onBlur?: (e: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
2115
2107
  /**
@@ -2119,14 +2111,12 @@ interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "
2119
2111
  * React Aria props and derived state so the styled layer can build its
2120
2112
  * own MD3 DOM without duplicating accessibility wiring.
2121
2113
  *
2122
- * When omitted, the default accessible DOM (label + input + helper text) renders.
2123
- *
2124
2114
  * @example
2125
2115
  * ```tsx
2126
2116
  * <TextFieldHeadless label="Email" value={value} onChange={onChange}>
2127
2117
  * {({ labelProps, inputProps, isFocused }) => (
2128
2118
  * <div>
2129
- * <label {...labelProps} className={floating ? 'floating' : ''}>Email</label>
2119
+ * <label {...labelProps} className={isFocused ? 'focused' : ''}>Email</label>
2130
2120
  * <input {...inputProps} className="md3-input" />
2131
2121
  * </div>
2132
2122
  * )}
@@ -2136,50 +2126,62 @@ interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "
2136
2126
  children?: ((renderProps: TextFieldRenderProps) => ReactNode) | ReactNode;
2137
2127
  }
2138
2128
  /**
2139
- * Props for the styled TextField component (Layer 3)
2129
+ * Props for the styled TextField component (Layer 3).
2140
2130
  *
2141
2131
  * Extends TextFieldHeadlessProps with MD3 visual styling options.
2132
+ * Strictly follows MD3 spec: single fixed height (56dp), two variants,
2133
+ * optional icons, prefix/suffix affixes, and supporting text + counter row.
2142
2134
  */
2143
2135
  interface TextFieldProps extends TextFieldHeadlessProps {
2144
2136
  /**
2145
- * Visual variant of the text field
2137
+ * Visual variant of the text field.
2146
2138
  * @default 'filled'
2147
2139
  */
2148
2140
  variant?: TextFieldVariant;
2149
2141
  /**
2150
- * Size variant
2151
- * @default 'medium'
2142
+ * Leading icon rendered at the start of the field.
2143
+ * MD3 Specification: icons should be 24×24dp.
2144
+ */
2145
+ leadingIcon?: ReactNode;
2146
+ /**
2147
+ * Trailing icon rendered at the end of the field.
2148
+ * MD3 Specification: icons should be 24×24dp.
2149
+ * Automatically colored `error` when the field is invalid.
2152
2150
  */
2153
- size?: TextFieldSize;
2151
+ trailingIcon?: ReactNode;
2154
2152
  /**
2155
- * Leading icon (before input text)
2156
- * MD3 Specification: Icons should be 18px × 18px
2153
+ * Inline prefix text rendered before the input value.
2154
+ * Only visible when the label is in its floating (small) position.
2155
+ * Useful for currency symbols, units, etc.
2156
+ * @example "$"
2157
2157
  */
2158
- leadingIcon?: React.ReactNode;
2158
+ prefix?: ReactNode;
2159
2159
  /**
2160
- * Trailing icon (after input text)
2161
- * MD3 Specification: Icons should be 18px × 18px
2160
+ * Inline suffix text rendered after the input value.
2161
+ * Only visible when the label is in its floating (small) position.
2162
+ * Useful for units, domain suffixes, etc.
2163
+ * @example "kg"
2162
2164
  */
2163
- trailingIcon?: React.ReactNode;
2165
+ suffix?: ReactNode;
2164
2166
  /**
2165
- * Show character counter below the input
2166
- * Requires maxLength to be set
2167
+ * Show character counter in the supporting row below the field.
2168
+ * Requires `maxLength` to be set.
2167
2169
  * @default false
2168
2170
  */
2169
2171
  characterCount?: boolean;
2170
2172
  /**
2171
- * Maximum number of characters allowed
2172
- * Enables character counter if characterCount is true
2173
+ * Maximum number of characters allowed.
2174
+ * Enforced on the native input and displayed in the counter when
2175
+ * `characterCount` is true.
2173
2176
  */
2174
2177
  maxLength?: number;
2175
2178
  }
2176
2179
 
2177
2180
  /**
2178
- * TextField - MD3 Text Input Component
2181
+ * TextField MD3 Expressive Text Input Component
2179
2182
  *
2180
- * A text input field following Material Design 3 specifications.
2181
- * Supports filled and outlined variants with comprehensive accessibility
2182
- * provided by React Aria via the TextFieldHeadless layer.
2183
+ * A text input field strictly following Material Design 3 Expressive specifications.
2184
+ * Supports filled and outlined variants with full accessibility via React Aria.
2183
2185
  *
2184
2186
  * @example
2185
2187
  * ```tsx
@@ -2194,6 +2196,14 @@ interface TextFieldProps extends TextFieldHeadlessProps {
2194
2196
  * errorMessage="Please enter a valid email"
2195
2197
  * />
2196
2198
  *
2199
+ * // With icons and affixes
2200
+ * <TextField
2201
+ * label="Price"
2202
+ * prefix="$"
2203
+ * suffix="USD"
2204
+ * leadingIcon={<IconDollar />}
2205
+ * />
2206
+ *
2197
2207
  * // Multiline with character counter
2198
2208
  * <TextField
2199
2209
  * label="Bio"
@@ -8964,7 +8974,7 @@ declare const sliderHandleVariants: (props?: ({
8964
8974
  * in Slider.tsx based on useReducedMotion() guard (MD3 Appendix E).
8965
8975
  */
8966
8976
  declare const sliderHandleStateLayerVariants: (props?: ({
8967
- state?: "disabled" | "focused" | "enabled" | "hovered" | "pressed" | null | undefined;
8977
+ state?: "disabled" | "enabled" | "focused" | "hovered" | "pressed" | null | undefined;
8968
8978
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8969
8979
  /**
8970
8980
  * CVA for the track layout container (holds active track + handle + inactive track).
@@ -10102,7 +10112,7 @@ type ClockDialContainerVariants = VariantProps<typeof clockDialContainerVariants
10102
10112
  declare const clockDialNumberVariants: (props?: ({
10103
10113
  selected?: boolean | null | undefined;
10104
10114
  ring?: "outer" | "inner" | null | undefined;
10105
- state?: "focused" | "enabled" | "hovered" | null | undefined;
10115
+ state?: "enabled" | "focused" | "hovered" | null | undefined;
10106
10116
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10107
10117
  type ClockDialNumberVariants = VariantProps<typeof clockDialNumberVariants>;
10108
10118
  /**
@@ -10129,7 +10139,7 @@ type ClockHandHandleVariants = VariantProps<typeof clockHandHandleVariants>;
10129
10139
  */
10130
10140
  declare const timeSelectorContainerVariants: (props?: ({
10131
10141
  selected?: boolean | null | undefined;
10132
- state?: "focused" | "enabled" | "hovered" | null | undefined;
10142
+ state?: "enabled" | "focused" | "hovered" | null | undefined;
10133
10143
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10134
10144
  type TimeSelectorContainerVariants = VariantProps<typeof timeSelectorContainerVariants>;
10135
10145
  /**
@@ -10146,7 +10156,7 @@ type PeriodSelectorContainerVariants = VariantProps<typeof periodSelectorContain
10146
10156
  */
10147
10157
  declare const periodSelectorItemVariants: (props?: ({
10148
10158
  selected?: boolean | null | undefined;
10149
- state?: "focused" | "enabled" | "hovered" | null | undefined;
10159
+ state?: "enabled" | "focused" | "hovered" | null | undefined;
10150
10160
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10151
10161
  type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants>;
10152
10162
  /**
@@ -10155,7 +10165,7 @@ type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants
10155
10165
  */
10156
10166
  declare const timeInputFieldVariants: (props?: ({
10157
10167
  selected?: boolean | null | undefined;
10158
- state?: "focused" | "enabled" | "hovered" | null | undefined;
10168
+ state?: "enabled" | "focused" | "hovered" | null | undefined;
10159
10169
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10160
10170
  type TimeInputFieldVariants = VariantProps<typeof timeInputFieldVariants>;
10161
10171
  /**
@@ -11732,4 +11742,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
11732
11742
  declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11733
11743
  type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
11734
11744
 
11735
- 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 SplitButtonDropdownVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonMenuItem, type SplitButtonPrimaryVariants, type SplitButtonProps, type SplitButtonSize, 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 TextFieldSize, 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, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, 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 };
11745
+ 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 SplitButtonDropdownVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonMenuItem, type SplitButtonPrimaryVariants, type SplitButtonProps, type SplitButtonSize, 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, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, 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 };