@tinybigui/react 0.6.0 → 0.7.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.cts CHANGED
@@ -7968,48 +7968,70 @@ declare const splitButtonVariants: {
7968
7968
  */
7969
7969
  type FABMenuDirection = "up" | "down" | "left" | "right";
7970
7970
  /**
7971
- * Props for an individual FABMenu action item (mini FAB).
7971
+ * Color role for individual FABMenu action items.
7972
7972
  *
7973
- * Each item renders as a small FAB with an icon and optional label.
7974
- * `aria-label` is required for accessibility since items are icon-based.
7973
+ * Matches the MD3 Expressive FAB color roles:
7974
+ * - Container variants: `primary-container` (default), `secondary-container`, `tertiary-container`
7975
+ * - Solid variants (M3 Expressive): `primary`, `secondary`, `tertiary`
7976
+ *
7977
+ * The state-layer color equals the icon/on-color per MD3 spec.
7978
+ *
7979
+ * @default 'primary-container'
7980
+ */
7981
+ type FABMenuItemColor = "primary-container" | "secondary-container" | "tertiary-container" | "primary" | "secondary" | "tertiary";
7982
+ /**
7983
+ * Props for an individual FABMenu action item (MD3 Expressive pill menu item).
7984
+ *
7985
+ * Each item renders as a full-rounded 56dp pill button with a leading icon
7986
+ * and an inline text label. `label` or `aria-label` must be provided.
7975
7987
  *
7976
7988
  * @example
7977
7989
  * ```tsx
7978
7990
  * <FABMenuItem
7979
7991
  * icon={<IconEdit />}
7980
7992
  * label="Edit"
7981
- * aria-label="Edit item"
7982
7993
  * onPress={() => console.log('edit')}
7983
7994
  * />
7995
+ *
7996
+ * // Icon-only (requires aria-label)
7997
+ * <FABMenuItem icon={<IconEdit />} aria-label="Edit item" />
7984
7998
  * ```
7985
7999
  */
7986
8000
  interface FABMenuItemProps {
7987
- /** Icon content for the mini FAB action item. */
8001
+ /** Leading icon for the menu item. */
7988
8002
  icon: React__default.ReactNode;
7989
8003
  /**
7990
- * Optional text label displayed beside the mini FAB.
7991
- * Acts as a tooltip or visible label depending on the styled layer.
8004
+ * Inline text label displayed inside the pill button.
8005
+ * Provides the accessible name when `aria-label` is not supplied.
7992
8006
  */
7993
8007
  label?: string;
8008
+ /**
8009
+ * Explicit accessible label for screen readers.
8010
+ * Required when `label` is not provided.
8011
+ * When both are present, `aria-label` takes precedence.
8012
+ */
8013
+ "aria-label"?: string;
7994
8014
  /** Handler called when the action item is pressed. */
7995
8015
  onPress?: (e: PressEvent) => void;
7996
8016
  /**
7997
- * REQUIRED: Accessible label for screen readers.
7998
- * Mandatory since action items are icon-based.
8017
+ * Color role for the menu item container.
8018
+ * Controls the background, text, and state-layer colors.
8019
+ *
8020
+ * @default 'primary-container'
7999
8021
  */
8000
- "aria-label": string;
8022
+ color?: FABMenuItemColor;
8001
8023
  /**
8002
8024
  * Whether the action item is disabled.
8003
8025
  * @default false
8004
8026
  */
8005
8027
  isDisabled?: boolean;
8006
- /** Additional CSS classes. */
8028
+ /** Additional CSS classes applied to the root pill button. */
8007
8029
  className?: string;
8008
8030
  }
8009
8031
  /**
8010
8032
  * Props for the headless FABMenu primitive (Layer 2).
8011
8033
  *
8012
- * Manages open/close state, keyboard navigation, focus management,
8034
+ * Manages open/close state, keyboard interactions, focus management,
8013
8035
  * and accessibility attributes without opinionated styling.
8014
8036
  *
8015
8037
  * Supports both controlled (`open` + `onOpenChange`) and uncontrolled
@@ -8019,7 +8041,7 @@ interface FABMenuItemProps {
8019
8041
  * ```tsx
8020
8042
  * // Uncontrolled
8021
8043
  * <FABMenuHeadless aria-label="Actions" direction="up">
8022
- * <FABMenuItem icon={<IconEdit />} aria-label="Edit" />
8044
+ * <FABMenuItem icon={<IconEdit />} label="Edit" />
8023
8045
  * </FABMenuHeadless>
8024
8046
  *
8025
8047
  * // Controlled
@@ -8028,7 +8050,7 @@ interface FABMenuItemProps {
8028
8050
  * onOpenChange={setIsOpen}
8029
8051
  * aria-label="Quick actions"
8030
8052
  * >
8031
- * <FABMenuItem icon={<IconAdd />} aria-label="Add" />
8053
+ * <FABMenuItem icon={<IconAdd />} label="Add" />
8032
8054
  * </FABMenuHeadless>
8033
8055
  * ```
8034
8056
  */
@@ -8064,13 +8086,9 @@ interface FABMenuHeadlessProps {
8064
8086
  /**
8065
8087
  * Props for the styled FABMenu component (Layer 3).
8066
8088
  *
8067
- * Extends the headless props no additional required props at this layer.
8068
- * Styling, variants, and CVA will be added when the styled layer is built.
8089
+ * Extends the headless props. No additional required props at this layer.
8069
8090
  */
8070
- interface FABMenuProps extends FABMenuHeadlessProps {
8071
- /** Placeholder for future styled-layer extensions (e.g., variant, color). */
8072
- _brand?: never;
8073
- }
8091
+ type FABMenuProps = FABMenuHeadlessProps;
8074
8092
  /**
8075
8093
  * Context value shared between FABMenu and its item descendants.
8076
8094
  *
@@ -8097,11 +8115,14 @@ interface FABMenuContextValue {
8097
8115
  }
8098
8116
 
8099
8117
  /**
8100
- * FABMenu — Material Design 3 styled FAB Menu (Layer 3).
8118
+ * FABMenu — Material Design 3 Expressive FAB Menu (Layer 3).
8101
8119
  *
8102
- * Renders a trigger FAB that expands a list of mini FAB action items
8120
+ * Renders a trigger FAB that expands a list of MD3 Expressive pill menu items
8103
8121
  * in the specified direction. Manages stagger animation-delay on children,
8104
- * elevation changes on the trigger, and icon rotation.
8122
+ * elevation changes on the trigger, and icon rotation (+ → ×).
8123
+ *
8124
+ * The trigger FAB icon morphs using expressive spring spatial tokens to convey
8125
+ * the energetic, high-emphasis nature of the interaction.
8105
8126
  *
8106
8127
  * Built on top of FABMenuContext for state sharing with FABMenuItem children.
8107
8128
  * Uses the existing `FAB` component as the trigger button.
@@ -8109,30 +8130,41 @@ interface FABMenuContextValue {
8109
8130
  * @example
8110
8131
  * ```tsx
8111
8132
  * <FABMenu aria-label="Quick actions" direction="up">
8112
- * <FABMenuItem icon={<IconEdit />} label="Edit" aria-label="Edit" />
8113
- * <FABMenuItem icon={<IconShare />} label="Share" aria-label="Share" />
8133
+ * <FABMenuItem icon={<IconEdit />} label="Edit" />
8134
+ * <FABMenuItem icon={<IconShare />} label="Share" />
8114
8135
  * </FABMenu>
8115
8136
  * ```
8116
8137
  */
8117
- declare const FABMenu: React__default.ForwardRefExoticComponent<FABMenuProps & React__default.RefAttributes<HTMLDivElement>>;
8138
+ declare const FABMenu: React__default.ForwardRefExoticComponent<FABMenuHeadlessProps & React__default.RefAttributes<HTMLDivElement>>;
8118
8139
 
8119
8140
  /**
8120
- * FABMenuItem — Individual action item rendered as a mini FAB (40dp) with
8121
- * optional label chip. Consumes FABMenuContext for open state and direction.
8141
+ * FABMenuItem — MD3 Expressive FAB Menu action item (Layer 3).
8122
8142
  *
8123
- * Applies stagger animation via `animation-delay` based on `index` prop
8124
- * (provided by the parent FABMenu). Skips animations when `reducedMotion`
8125
- * is active.
8143
+ * Renders as a full-rounded 56dp pill button with a leading icon and an
8144
+ * inline text label. Implements the Variants-vs-States architecture:
8145
+ * all interaction states are expressed as data-* attributes on the root
8146
+ * and consumed by each slot via group-data-[x]/fab-menu-item selectors.
8147
+ *
8148
+ * Features:
8149
+ * - ✅ MD3 Expressive pill shape (56dp height, full-rounded)
8150
+ * - ✅ 6 color roles: 3 container + 3 solid (M3 Expressive)
8151
+ * - ✅ Elevation 3 base → 4 hover → 3 focus/pressed per MD3 spec
8152
+ * - ✅ Correct state-layer opacities: hover 8% / focus 10% / pressed 10%
8153
+ * - ✅ Dedicated focus ring slot (inset-[-3px], keyboard-only)
8154
+ * - ✅ Ripple effect (Material Design)
8155
+ * - ✅ Stagger enter/exit animation (animate-md-scale-in/out), reduce-motion guarded
8156
+ * - ✅ Full keyboard accessibility via React Aria
8126
8157
  *
8127
8158
  * @example
8128
8159
  * ```tsx
8129
8160
  * <FABMenuItem
8130
8161
  * icon={<IconEdit />}
8131
8162
  * label="Edit"
8132
- * aria-label="Edit item"
8133
8163
  * onPress={() => handleEdit()}
8134
- * index={0}
8135
8164
  * />
8165
+ *
8166
+ * // Solid color role
8167
+ * <FABMenuItem icon={<IconAdd />} label="Add" color="primary" />
8136
8168
  * ```
8137
8169
  */
8138
8170
  declare const FABMenuItem: React__default.ForwardRefExoticComponent<FABMenuItemProps & {
@@ -8179,25 +8211,135 @@ declare function useFABMenuContext(): FABMenuContextValue;
8179
8211
  declare const FABMenuHeadless: React$1.ForwardRefExoticComponent<FABMenuHeadlessProps & React$1.RefAttributes<HTMLDivElement>>;
8180
8212
 
8181
8213
  /**
8182
- * CVA variants for the FABMenu root container.
8214
+ * Material Design 3 FABMenu Variants
8215
+ *
8216
+ * Architecture: Variants vs States
8217
+ * - CVA holds design-time structure only (no disabled/state variants in CVA).
8218
+ * - All interaction states are driven by data-* attributes on the root via
8219
+ * group-data-[x]/fab-menu-item Tailwind selectors in each slot's base classes.
8220
+ * - Content flags (data-with-icon, data-with-label) are set explicitly by the component.
8221
+ * - Self-targeting data-[x]: selectors handle root-level disabled styling.
8183
8222
  *
8184
- * Controls the expansion direction of action items relative to the trigger FAB.
8185
- * Uses gap-3 (12px) for spacing between trigger and items per MD3 spec.
8223
+ * Slot responsibilities:
8224
+ * fabMenuVariants — root container; direction layout
8225
+ * fabMenuItemVariants — root <button> pill; shape, color, elevation, group scope
8226
+ * fabMenuItemStateLayerVariants — absolute inset overlay; opacity 0/8/10/10; color=on-color
8227
+ * fabMenuItemFocusRingVariants — keyboard focus outline (inset-[-3px], MUST NOT be clipped)
8228
+ * fabMenuItemIconVariants — leading icon wrapper; size-6 (24dp)
8229
+ * fabMenuItemLabelVariants — inline text label slot
8230
+ *
8231
+ * MD3 Expressive FAB Menu item spec:
8232
+ * Shape: full-rounded pill (rounded-full)
8233
+ * Height: 56dp (h-14)
8234
+ * Padding: 16dp leading (pl-4), 20dp trailing (pr-5)
8235
+ * Gap: 12dp between icon and label (gap-3)
8236
+ * Icon: 24dp (size-6)
8237
+ * Typography: Title Medium
8238
+ * Elevation: base 3 → hover 4 → focus/pressed 3 → disabled none
8239
+ * State-layer: hover 8% | focus 10% | pressed 10% | disabled hidden
8240
+ *
8241
+ * IMPORTANT — overflow-hidden is NOT on the root button.
8242
+ * The focus ring span has `inset-[-3px]` to extend outside the button boundary.
8243
+ * Overflow clipping is delegated to the state layer (overflow-hidden + rounded-[inherit]).
8244
+ */
8245
+ /**
8246
+ * Root container for FABMenu.
8247
+ *
8248
+ * The root is sized to the trigger FAB only — `inline-flex` collapses to the
8249
+ * FAB's intrinsic size. The items overlay is absolutely positioned, so the
8250
+ * container never grows and the FAB never shifts position when the menu opens.
8186
8251
  */
8187
- declare const fabMenuVariants: (props?: ({
8252
+ declare const fabMenuVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8253
+ /**
8254
+ * Absolutely positioned overlay that holds the menu item list.
8255
+ *
8256
+ * Anchored to the trigger FAB via logical insets so placement is correct in
8257
+ * both LTR and RTL document directions — no consumer intervention needed.
8258
+ *
8259
+ * `transform-origin` on each direction aligns the `animate-md-scale-in/out`
8260
+ * pivot with the FAB edge so items appear to emanate from the trigger:
8261
+ * up → origin-bottom (list grows upward from the FAB top edge)
8262
+ * down → origin-top (list grows downward from the FAB bottom edge)
8263
+ * left → origin-right (list grows leftward from the FAB start edge)
8264
+ * right → origin-left (list grows rightward from the FAB end edge)
8265
+ *
8266
+ * Logical properties used (`end-0`, `start-full`, `me-3`, etc.) to respect
8267
+ * RTL layout automatically.
8268
+ */
8269
+ declare const fabMenuListVariants: (props?: ({
8188
8270
  direction?: "left" | "right" | "up" | "down" | null | undefined;
8189
8271
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8190
8272
  /**
8191
- * CVA variants for individual FABMenuItem containers.
8273
+ * Root <button> pill for a FABMenu action item.
8274
+ *
8275
+ * IMPORTANT — no overflow-hidden here (focus ring must extend outside).
8276
+ * Elevation follows MD3 FAB spec: base 3 → hover 4 → focus/pressed 3 → disabled none.
8277
+ * The doubled attribute selector for focus/pressed gives higher specificity than
8278
+ * the single hover selector, ensuring they always win.
8192
8279
  *
8193
- * Controls visibility and pointer interaction based on open state.
8194
- * Transition classes are applied separately for stagger animation support.
8280
+ * Disabled styling uses self-targeting data-[disabled]: (not group-data
8281
+ * these selectors target the root element itself).
8195
8282
  */
8196
8283
  declare const fabMenuItemVariants: (props?: ({
8197
- isOpen?: boolean | null | undefined;
8284
+ color?: "primary" | "primary-container" | "secondary" | "secondary-container" | "tertiary" | "tertiary-container" | null | undefined;
8198
8285
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8286
+ /**
8287
+ * State layer — absolute inset overlay that transitions opacity on interaction.
8288
+ *
8289
+ * Per MD3 spec, the state-layer color must equal the icon/on-color:
8290
+ * primary-container → bg-on-primary-container
8291
+ * secondary-container → bg-on-secondary-container
8292
+ * tertiary-container → bg-on-tertiary-container
8293
+ * primary (solid) → bg-on-primary
8294
+ * secondary (solid) → bg-on-secondary
8295
+ * tertiary (solid) → bg-on-tertiary
8296
+ *
8297
+ * Opacity:
8298
+ * 0 at rest · 8% hover · 10% focus · 10% pressed · hidden when disabled
8299
+ *
8300
+ * Pressed (10%) must win over hover (8%) when both data attributes are set.
8301
+ * The doubled attribute selector gives it higher specificity:
8302
+ * group-data-[hovered]/fab-menu-item: → specificity (0,1,0)
8303
+ * group-data-[pressed]/fab-menu-item:group-.. → specificity (0,2,0) always wins
8304
+ *
8305
+ * overflow-hidden is placed HERE (not on the root) so the state layer clips to
8306
+ * the pill shape while the focus ring span can extend outside.
8307
+ */
8308
+ declare const fabMenuItemStateLayerVariants: (props?: ({
8309
+ color?: "primary" | "primary-container" | "secondary" | "secondary-container" | "tertiary" | "tertiary-container" | null | undefined;
8310
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8311
+ /**
8312
+ * Focus ring overlay.
8313
+ *
8314
+ * Rendered as an absolute `<span>` with `inset-[-3px]` so it extends 3px
8315
+ * outside the button boundary. This REQUIRES that `overflow-hidden` is NOT
8316
+ * on the root button — overflow clipping is moved to the state layer.
8317
+ *
8318
+ * Always present in the DOM (opacity-0 at rest), transitions to opacity-100
8319
+ * on keyboard/programmatic focus — avoids layout shifts.
8320
+ */
8321
+ declare const fabMenuItemFocusRingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8322
+ /**
8323
+ * Leading icon wrapper.
8324
+ *
8325
+ * MD3 spec: 24×24dp icons inside FAB menu items.
8326
+ * Color is inherited from the parent button's text color.
8327
+ */
8328
+ declare const fabMenuItemIconVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8329
+ /**
8330
+ * Inline text label wrapper.
8331
+ *
8332
+ * MD3 spec: Title Medium typography for FAB menu item labels.
8333
+ * z-10 keeps it above the state layer and ripple overlays.
8334
+ */
8335
+ declare const fabMenuItemLabelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8199
8336
  type FABMenuVariants = VariantProps<typeof fabMenuVariants>;
8337
+ type FABMenuListVariants = VariantProps<typeof fabMenuListVariants>;
8200
8338
  type FABMenuItemVariants = VariantProps<typeof fabMenuItemVariants>;
8339
+ type FABMenuItemStateLayerVariants = VariantProps<typeof fabMenuItemStateLayerVariants>;
8340
+ type FABMenuItemFocusRingVariants = VariantProps<typeof fabMenuItemFocusRingVariants>;
8341
+ type FABMenuItemIconVariants = VariantProps<typeof fabMenuItemIconVariants>;
8342
+ type FABMenuItemLabelVariants = VariantProps<typeof fabMenuItemLabelVariants>;
8201
8343
 
8202
8344
  /**
8203
8345
  * Structural variant of the MD3 Slider.
@@ -10848,4 +10990,4 @@ type DatePickerSupportingTextVariants = VariantProps<typeof datePickerSupporting
10848
10990
  declare const datePickerScrimVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
10849
10991
  type DatePickerScrimVariants = VariantProps<typeof datePickerScrimVariants>;
10850
10992
 
10851
- export { AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, type BadgeColor, 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 CalendarCellProps, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarGridProps, 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 DateInputFieldProps, DatePicker, type DatePickerActionButtonVariants, type DatePickerActionVariants, type DatePickerActionsProps, type DatePickerContainerVariants, type DatePickerDividerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeaderVariants, type DatePickerHeadlessProps, type DatePickerHeadlineVariants, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerNavVariants, type DatePickerProps, type DatePickerRangeIndicatorVariants, type DatePickerRenderState, type DatePickerScrimVariants, type DatePickerSupportingTextVariants, type DatePickerVariant, type DatePickerWeekdayVariants, 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, 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 FABMenuItemProps, type FABMenuItemVariants, 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, 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, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, 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, 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, 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, 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 YearItemVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, datePickerActionButtonVariants, datePickerActionVariants, datePickerContainerVariants, datePickerDividerVariants, datePickerHeaderVariants, datePickerHeadlineVariants, datePickerNavVariants, datePickerRangeIndicatorVariants, datePickerScrimVariants, datePickerSupportingTextVariants, datePickerWeekdayVariants, dividerVariants, fabMenuItemVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, hexToRgb, listItemVariants, listVariants, periodSelectorContainerVariants, periodSelectorItemVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, withOpacity, yearItemVariants };
10993
+ export { AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, type BadgeColor, 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 CalendarCellProps, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarGridProps, 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 DateInputFieldProps, DatePicker, type DatePickerActionButtonVariants, type DatePickerActionVariants, type DatePickerActionsProps, type DatePickerContainerVariants, type DatePickerDividerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeaderVariants, type DatePickerHeadlessProps, type DatePickerHeadlineVariants, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerNavVariants, type DatePickerProps, type DatePickerRangeIndicatorVariants, type DatePickerRenderState, type DatePickerScrimVariants, type DatePickerSupportingTextVariants, type DatePickerVariant, type DatePickerWeekdayVariants, 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, 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, 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, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, 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, 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, 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, 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 YearItemVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, datePickerActionButtonVariants, datePickerActionVariants, datePickerContainerVariants, datePickerDividerVariants, datePickerHeaderVariants, datePickerHeadlineVariants, datePickerNavVariants, datePickerRangeIndicatorVariants, datePickerScrimVariants, datePickerSupportingTextVariants, datePickerWeekdayVariants, dividerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, hexToRgb, listItemVariants, listVariants, periodSelectorContainerVariants, periodSelectorItemVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, withOpacity, yearItemVariants };