@tinybigui/react 0.17.0 → 0.18.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
@@ -7660,46 +7660,68 @@ interface SearchProps extends Omit<SearchBarProps, "onFocus"> {
7660
7660
  interface SearchBarHeadlessProps extends SearchBarProps {
7661
7661
  /** Ref forwarded to the form element */
7662
7662
  ref?: React__default.Ref<HTMLFormElement>;
7663
+ /**
7664
+ * Slot class names applied directly to the bar's inner elements.
7665
+ * Passed from SearchBar so per-slot CVA classes apply without descendant selectors.
7666
+ */
7667
+ inputClassName?: string | undefined;
7668
+ trailingActionsClassName?: string | undefined;
7663
7669
  }
7664
7670
  /** Props for SearchViewHeadless — the headless primitive for the view */
7665
7671
  interface SearchViewHeadlessProps extends SearchViewProps {
7666
7672
  /** Ref forwarded to the view container div */
7667
7673
  ref?: React__default.Ref<HTMLDivElement>;
7674
+ /**
7675
+ * Slot class names applied directly to inner headless elements.
7676
+ * Passed by SearchView so per-slot CVA classes can be applied
7677
+ * without descendant-selector blobs.
7678
+ */
7679
+ headerClassName?: string;
7680
+ backButtonClassName?: string;
7681
+ clearButtonClassName?: string;
7682
+ inputClassName?: string;
7683
+ trailingActionsClassName?: string | undefined;
7684
+ dividerClassName?: string;
7685
+ contentClassName?: string;
7668
7686
  }
7669
7687
 
7670
7688
  /**
7671
7689
  * Material Design 3 Search Bar Component (Layer 3: Styled)
7672
7690
  *
7673
- * The collapsed/maximized state search affordance that transitions
7674
- * to Focused State (SearchView) on click/focus.
7691
+ * The collapsed/maximized search affordance that transitions to Focused State
7692
+ * (SearchView) on click/focus.
7693
+ *
7694
+ * Implements the Variants-vs-States architecture: all interaction states are
7695
+ * expressed as data-* attributes on the root via `getInteractionDataAttributes`
7696
+ * and consumed by each slot via `group-data-[x]/search` Tailwind selectors.
7675
7697
  *
7676
7698
  * Anatomy:
7677
- * [Container] [Leading icon] [Supporting text/input] [Trailing actions] [Avatar]
7699
+ * [Leading icon] [Input / placeholder] [Trailing actions] [Avatar]
7678
7700
  *
7679
7701
  * Features:
7680
- * - MD3 state layer with hover/active opacity transitions
7681
- * - Ripple effect on press (Material Design state 4)
7682
- * - Focus indicator: 3dp ring in secondary color
7683
- * - M3 Expressive pane margin transition (24dp → 12dp on focus)
7684
- * - Automatic `noActions` variant when no trailing actions/avatar
7702
+ * - MD3 state layer: hover 8% / pressed 10% opacity (Standard fast effects spring)
7703
+ * - Ripple effect on press (Material Design press state)
7704
+ * - Focus ring: Secondary color, 3dp, rendered outside overflow-hidden (sibling pattern)
7705
+ * - M3 Expressive pane margin: 24dp → 12dp on focus (Expressive fast spatial spring)
7706
+ * - Content flag `data-with-actions` switches container spacing: 16dp → 4dp
7685
7707
  *
7686
7708
  * @example
7687
7709
  * ```tsx
7688
7710
  * <SearchBar
7689
7711
  * placeholder="Search messages"
7690
7712
  * leadingIcon={<SearchIcon />}
7691
- * trailingActions={[<IconButton key="mic" icon={<MicIcon />} aria-label="Voice search" />]}
7713
+ * trailingActions={[<IconButton key="mic" aria-label="Voice search"><MicIcon /></IconButton>]}
7692
7714
  * onFocus={() => setOpen(true)}
7693
7715
  * />
7694
7716
  * ```
7695
7717
  */
7696
- declare const SearchBar: React$1.ForwardRefExoticComponent<SearchBarProps & React$1.RefAttributes<HTMLFormElement>>;
7718
+ declare const SearchBar: React__default.ForwardRefExoticComponent<SearchBarProps & React__default.RefAttributes<HTMLFormElement>>;
7697
7719
 
7698
7720
  /**
7699
7721
  * Material Design 3 Search View Component (Layer 3: Styled)
7700
7722
  *
7701
- * The expanded/focused search experience with input and results.
7702
- * Displayed in a portal over page content.
7723
+ * The expanded/focused search experience rendered in a portal over page content.
7724
+ * Uses per-slot CVAs for all styling — no descendant-selector blobs.
7703
7725
  *
7704
7726
  * Anatomy:
7705
7727
  * Header: [Back arrow] [Input] [Clear button] [Optional trailing actions]
@@ -7708,9 +7730,10 @@ declare const SearchBar: React$1.ForwardRefExoticComponent<SearchBarProps & Reac
7708
7730
  *
7709
7731
  * Features:
7710
7732
  * - Portal rendering with focus trap and scroll lock (via headless)
7711
- * - Compound variants for 4 style+layout combinations
7712
- * - Animate on mount with `animate-md-scale-in`
7713
- * - Clear button visible only when input has value
7733
+ * - Compound variants for all 4 style × layout combinations
7734
+ * - Docked layout: animate-md-scale-in on mount
7735
+ * - Fullscreen layout: animate-md-fade-in on mount
7736
+ * - Clear button visible only when input has value (controlled by headless)
7714
7737
  * - aria-live region for autosuggest announcements
7715
7738
  *
7716
7739
  * @example
@@ -7770,6 +7793,7 @@ declare const Search: React$1.ForwardRefExoticComponent<SearchProps & React$1.Re
7770
7793
  * - Keyboard: Enter → onSubmit, Escape (with value) → onClear
7771
7794
  * - Leading icon, trailing actions, and avatar slots
7772
7795
  * - aria-label falls back to placeholder per MD3 labeling spec
7796
+ * - `inputClassName` and `trailingActionsClassName` applied directly to inner elements
7773
7797
  *
7774
7798
  * @example
7775
7799
  * ```tsx
@@ -7780,21 +7804,22 @@ declare const Search: React$1.ForwardRefExoticComponent<SearchProps & React$1.Re
7780
7804
  * />
7781
7805
  * ```
7782
7806
  */
7783
- declare const SearchBarHeadless: React$1.ForwardRefExoticComponent<Omit<SearchBarHeadlessProps, "ref"> & React$1.RefAttributes<HTMLFormElement>>;
7807
+ declare const SearchBarHeadless: React__default.ForwardRefExoticComponent<Omit<SearchBarHeadlessProps, "ref"> & React__default.RefAttributes<HTMLFormElement>>;
7784
7808
  /**
7785
7809
  * SearchViewHeadless — Layer 2 headless primitive for the MD3 Search view.
7786
7810
  *
7787
- * Renders in a portal when `isOpen={true}`. Does not render when closed.
7788
- * Uses `useOverlay` for Escape-key dismissal, `usePreventScroll` to lock
7789
- * body scrolling, and `FocusScope` for focus trapping.
7811
+ * Rendering strategy by layout:
7812
+ * - `fullscreen`: renders in a portal (`createPortal`) with `usePreventScroll` and
7813
+ * `FocusScope contain` the view covers the full viewport.
7814
+ * - `docked`: renders inline (no portal) with `FocusScope restoreFocus autoFocus` only —
7815
+ * the card sits in normal document flow so it can be centered by its wrapper.
7816
+ *
7817
+ * Both layouts use `useOverlay` so Escape key and click-outside dismiss correctly.
7790
7818
  *
7791
7819
  * Features:
7792
- * - Portal rendering via `createPortal`
7793
- * - Escape key → onClose
7794
- * - Body scroll lock when open
7795
- * - Focus trap with auto-focus and restore on close
7820
+ * - Back arrow (MD3 ArrowBack SVG) + input + MD3 Close SVG clear button in header
7796
7821
  * - aria-live region for autosuggest announcements
7797
- * - Back arrow (leading icon) + input + clear button header
7822
+ * - Slot class names from the styled SearchView layer applied directly on elements
7798
7823
  *
7799
7824
  * @example
7800
7825
  * ```tsx
@@ -7807,36 +7832,131 @@ declare const SearchBarHeadless: React$1.ForwardRefExoticComponent<Omit<SearchBa
7807
7832
  * </SearchViewHeadless>
7808
7833
  * ```
7809
7834
  */
7810
- declare const SearchViewHeadless: React$1.ForwardRefExoticComponent<Omit<SearchViewHeadlessProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
7835
+ declare const SearchViewHeadless: React__default.ForwardRefExoticComponent<Omit<SearchViewHeadlessProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
7811
7836
 
7812
7837
  /**
7813
- * Material Design 3 Search Bar container variants (CVA).
7814
- *
7815
- * Base: 56dp height, full rounded pill, surface-container-high background,
7816
- * level-3 elevation, body-large typography.
7838
+ * Material Design 3 Search Variants
7817
7839
  *
7818
- * Spacing follows MD3 Search spec:
7819
- * - Contained (expressive): 4dp leading/trailing with trailing actions
7820
- * - Contained (no actions): 16dp leading/trailing
7821
- * - Divided (baseline): 16dp leading/trailing, 16dp icon-label gap
7840
+ * Architecture: Variants vs States
7841
+ * - CVA holds design-time structure only (no focused/disabled/noActions state variants).
7842
+ * - All interaction states are driven by data-* attributes on the root via
7843
+ * group-data-[x]/search Tailwind selectors in each slot's base classes.
7844
+ * - Content flags (data-with-actions) are set explicitly by the component.
7845
+ *
7846
+ * Search Bar slot responsibilities:
7847
+ * searchBarRootVariants — container pill; shape, color, elevation, spacing by style
7848
+ * searchBarStateLayerVariants — hover/pressed opacity overlay (inside overflow-hidden)
7849
+ * searchBarFocusRingVariants — keyboard focus outline (outside overflow-hidden)
7850
+ * searchBarLeadingIconVariants — 48dp tap target wrapping 24dp icon, on-surface
7851
+ * searchBarTrailingActionVariants — 48dp tap target for each trailing icon, on-surface-variant
7852
+ * searchBarTrailingActionsVariants — flex row wrapper for all trailing actions
7853
+ * searchBarAvatarVariants — 48dp tap target wrapping 30dp rounded-full avatar
7854
+ * searchBarInputVariants — flex-1 text input inside the bar
7855
+ *
7856
+ * Search View slot responsibilities:
7857
+ * searchViewVariants — container; style × layout compound variants
7858
+ * searchViewHeaderVariants — header row; style × layout heights/padding
7859
+ * searchViewBackButtonVariants — 48dp back-arrow tap target, on-surface
7860
+ * searchViewClearButtonVariants — 48dp clear tap target, on-surface-variant
7861
+ * searchViewTrailingActionVariants — 48dp trailing action in view header
7862
+ * searchViewTrailingActionsVariants — flex row wrapper for all view trailing actions
7863
+ * searchViewInputVariants — flex-1 text input inside the view header
7864
+ * searchViewDividerVariants — horizontal rule (divided style only)
7865
+ * searchViewContentVariants — scrollable results/suggestions area
7866
+ *
7867
+ * MD3 Token References:
7868
+ * Container color: SurfaceContainerHigh
7869
+ * Contained bg (fullscreen view): SurfaceContainerLow
7870
+ * Container elevation: Level 3 (6dp)
7871
+ * Leading icon: OnSurface
7872
+ * Trailing icon: OnSurfaceVariant
7873
+ * Placeholder: OnSurfaceVariant
7874
+ * Input text: OnSurface
7875
+ * Focus indicator: Secondary, 3dp
7876
+ * Hover opacity: 8% (MD3 state.hover.state-layer-opacity)
7877
+ * Pressed opacity: 10% (MD3 state.pressed.state-layer-opacity)
7878
+ * Disabled: opacity-38 on container
7822
7879
  *
7823
7880
  * @see docs/md3-components/search/tokens/layout-text.md
7881
+ * @see docs/md3-components/search/tokens/color-tokens-light.md
7882
+ */
7883
+ /**
7884
+ * Search bar container pill.
7885
+ *
7886
+ * Spacing follows MD3 Search Bar spec:
7887
+ * Contained + with actions: px-1 gap-1 (4dp leading/trailing per spec)
7888
+ * Contained + no actions: px-4 (16dp leading/trailing)
7889
+ * Divided: px-4 gap-4 (16dp leading/trailing, 16dp icon-label gap)
7890
+ *
7891
+ * The `contained` variant uses `data-[with-actions]` on the root (a content flag set by the
7892
+ * component) to switch from 16dp → 4dp spacing — no CVA variant needed for this.
7893
+ *
7894
+ * Disabled is self-targeting (data-[disabled]:) because the root carries the data attr.
7895
+ * overflow-hidden intentionally NOT here — the focus ring span sits outside via a sibling
7896
+ * wrapper, so we preserve full ring visibility (same pattern as Button).
7824
7897
  */
7825
- declare const searchBarVariants: (props?: ({
7898
+ declare const searchBarRootVariants: (props?: ({
7826
7899
  style?: "contained" | "divided" | null | undefined;
7827
- noActions?: boolean | null | undefined;
7828
- focused?: boolean | null | undefined;
7829
- disabled?: boolean | null | undefined;
7830
7900
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7831
7901
  /**
7832
- * Material Design 3 Search View container variants (CVA).
7902
+ * State layer absolute inset overlay inside the bar container.
7903
+ *
7904
+ * Must be inside overflow-hidden (placed on the same pill via the root's inner wrapper).
7905
+ * Color: on-surface (MD3 search bar state layer color).
7906
+ * Opacities: hover 8%, pressed 10% (doubled selector wins over hover).
7907
+ * Hidden when disabled (no state affordance on non-interactive element).
7908
+ */
7909
+ declare const searchBarStateLayerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7910
+ /**
7911
+ * Focus ring overlay.
7912
+ *
7913
+ * Rendered outside the overflow-hidden container (as a sibling, in a relative wrapper)
7914
+ * so it can extend 3px beyond the pill boundary and remain fully visible.
7915
+ * Color: Secondary (MD3 focus indicator color).
7916
+ * Thickness: 3dp (MD3 state.focus-indicator.thickness).
7917
+ */
7918
+ declare const searchBarFocusRingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7919
+ /**
7920
+ * Leading icon wrapper — 48dp tap target with centered 24dp icon.
7921
+ * Color: on-surface (MD3 leading icon color).
7922
+ */
7923
+ declare const searchBarLeadingIconVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7924
+ /**
7925
+ * Trailing action wrapper — 48dp tap target for each trailing icon button.
7926
+ * Color: on-surface-variant (MD3 trailing icon color).
7927
+ */
7928
+ declare const searchBarTrailingActionVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7929
+ /**
7930
+ * Avatar wrapper — 48dp tap target containing a 30dp rounded-full image/element.
7931
+ * Shape: CornerFull (MD3 avatar shape).
7932
+ * Size: 30dp (MD3 avatar size).
7933
+ */
7934
+ declare const searchBarAvatarVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7935
+ /**
7936
+ * Trailing actions group wrapper — lays out multiple trailing icon slots in a row.
7937
+ * gap = 0 per MD3 spec (contained trailing-actions gap token = 0dp).
7938
+ */
7939
+ declare const searchBarTrailingActionsVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7940
+ /**
7941
+ * Text input inside the search bar.
7942
+ * Typography: body-large (MD3 supporting text / input text font).
7943
+ * Colors: on-surface for input, on-surface-variant for placeholder.
7833
7944
  *
7834
- * Compound variants express all 4 style+layout combinations:
7835
- * - Contained + fullscreen: surface-container-low, no rounding
7836
- * - Contained + docked: surface-container-high, rounded-xl (12dp)
7837
- * - Divided + fullscreen: surface-container-high, no rounding
7838
- * - Divided + docked: surface-container-high, rounded-[28px] (extra-large)
7945
+ * `min-w-0` is required so `flex-1` can shrink when trailing actions are present.
7946
+ * The native browser search cancel button and decoration are hidden so only our
7947
+ * MD3 clear button (in SearchView) controls clearing.
7948
+ */
7949
+ declare const searchBarInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7950
+ /**
7951
+ * Search view container — the expanded/focused search surface.
7952
+ *
7953
+ * All 4 style × layout combinations via compound variants:
7954
+ * contained + fullscreen: surface-container-low, no rounding
7955
+ * contained + docked: surface-container-high, rounded-xl (12dp), 2dp gap
7956
+ * divided + fullscreen: surface-container-high, no rounding
7957
+ * divided + docked: surface-container-high, rounded-[28px] (extra-large)
7839
7958
  *
7959
+ * @see docs/md3-components/search/tokens/layout-text.md
7840
7960
  * @see docs/md3-components/search/tokens/color-tokens-light.md
7841
7961
  */
7842
7962
  declare const searchViewVariants: (props?: ({
@@ -7844,12 +7964,12 @@ declare const searchViewVariants: (props?: ({
7844
7964
  layout?: "fullscreen" | "docked" | null | undefined;
7845
7965
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7846
7966
  /**
7847
- * Material Design 3 Search View header variants (CVA).
7967
+ * Search view header row.
7848
7968
  *
7849
- * Heights per style + layout:
7850
- * - Contained: 56dp (both layouts)
7851
- * - Divided + fullscreen: 72dp
7852
- * - Divided + docked: 56dp (overridden by docked variant)
7969
+ * Heights per MD3 spec:
7970
+ * Contained (both layouts): 56dp (h-14), 12dp side padding (px-3)
7971
+ * Divided + fullscreen: 72dp (h-[72px]), 16dp side padding (px-4)
7972
+ * Divided + docked: 56dp (h-14), overridden by docked layout variant
7853
7973
  *
7854
7974
  * @see docs/md3-components/search/tokens/layout-text.md
7855
7975
  */
@@ -7857,6 +7977,48 @@ declare const searchViewHeaderVariants: (props?: ({
7857
7977
  style?: "contained" | "divided" | null | undefined;
7858
7978
  layout?: "fullscreen" | "docked" | null | undefined;
7859
7979
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7980
+ /**
7981
+ * Back arrow button wrapper — 48dp tap target.
7982
+ * Color: on-surface (MD3 header leading icon color).
7983
+ * Includes visual state layer for hover/focus feedback (button handles its own states).
7984
+ */
7985
+ declare const searchViewBackButtonVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7986
+ /**
7987
+ * Clear (✕) button wrapper — 48dp tap target.
7988
+ * Color: on-surface-variant (MD3 trailing icon color).
7989
+ * Transitions opacity when shown/hidden (Standard fast effects).
7990
+ */
7991
+ declare const searchViewClearButtonVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7992
+ /**
7993
+ * Trailing action wrapper in the view header — 48dp tap target.
7994
+ * Color: on-surface-variant (MD3 trailing icon color).
7995
+ */
7996
+ declare const searchViewTrailingActionVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7997
+ /**
7998
+ * Trailing actions group wrapper in the view header — lays out multiple action
7999
+ * slots in a row. gap = 0 per MD3 spec.
8000
+ */
8001
+ declare const searchViewTrailingActionsVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8002
+ /**
8003
+ * Text input inside the view header.
8004
+ * Typography: body-large.
8005
+ * Colors: on-surface for input text, on-surface-variant for placeholder.
8006
+ *
8007
+ * `min-w-0` lets `flex-1` shrink when clear/trailing buttons are present.
8008
+ * Native search affordances hidden — MD3 clear button controls clearing.
8009
+ */
8010
+ declare const searchViewInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8011
+ /**
8012
+ * Horizontal divider between the view header and results area.
8013
+ * Color: outline (MD3 divider color).
8014
+ * Only rendered when searchStyle="divided".
8015
+ */
8016
+ declare const searchViewDividerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8017
+ /**
8018
+ * Results / suggestions content area.
8019
+ * flex-1 to fill remaining height; overflow-y-auto for independent scroll.
8020
+ */
8021
+ declare const searchViewContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7860
8022
 
7861
8023
  /**
7862
8024
  * Props for the BadgeContent indicator element.
@@ -9061,7 +9223,7 @@ declare const sliderHandleVariants: (props?: ({
9061
9223
  * in Slider.tsx based on useReducedMotion() guard (MD3 Appendix E).
9062
9224
  */
9063
9225
  declare const sliderHandleStateLayerVariants: (props?: ({
9064
- state?: "disabled" | "enabled" | "focused" | "hovered" | "pressed" | null | undefined;
9226
+ state?: "disabled" | "enabled" | "hovered" | "pressed" | "focused" | null | undefined;
9065
9227
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9066
9228
  /**
9067
9229
  * CVA for the track layout container (holds active track + handle + inactive track).
@@ -10199,7 +10361,7 @@ type ClockDialContainerVariants = VariantProps<typeof clockDialContainerVariants
10199
10361
  declare const clockDialNumberVariants: (props?: ({
10200
10362
  selected?: boolean | null | undefined;
10201
10363
  ring?: "outer" | "inner" | null | undefined;
10202
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10364
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10203
10365
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10204
10366
  type ClockDialNumberVariants = VariantProps<typeof clockDialNumberVariants>;
10205
10367
  /**
@@ -10226,7 +10388,7 @@ type ClockHandHandleVariants = VariantProps<typeof clockHandHandleVariants>;
10226
10388
  */
10227
10389
  declare const timeSelectorContainerVariants: (props?: ({
10228
10390
  selected?: boolean | null | undefined;
10229
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10391
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10230
10392
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10231
10393
  type TimeSelectorContainerVariants = VariantProps<typeof timeSelectorContainerVariants>;
10232
10394
  /**
@@ -10243,7 +10405,7 @@ type PeriodSelectorContainerVariants = VariantProps<typeof periodSelectorContain
10243
10405
  */
10244
10406
  declare const periodSelectorItemVariants: (props?: ({
10245
10407
  selected?: boolean | null | undefined;
10246
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10408
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10247
10409
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10248
10410
  type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants>;
10249
10411
  /**
@@ -10252,7 +10414,7 @@ type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants
10252
10414
  */
10253
10415
  declare const timeInputFieldVariants: (props?: ({
10254
10416
  selected?: boolean | null | undefined;
10255
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10417
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10256
10418
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10257
10419
  type TimeInputFieldVariants = VariantProps<typeof timeInputFieldVariants>;
10258
10420
  /**
@@ -11829,4 +11991,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
11829
11991
  declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11830
11992
  type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
11831
11993
 
11832
- 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 };
11994
+ 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, searchBarAvatarVariants, searchBarFocusRingVariants, searchBarInputVariants, searchBarLeadingIconVariants, searchBarRootVariants, searchBarStateLayerVariants, searchBarTrailingActionVariants, searchBarTrailingActionsVariants, searchViewBackButtonVariants, searchViewClearButtonVariants, searchViewContentVariants, searchViewDividerVariants, searchViewHeaderVariants, searchViewInputVariants, searchViewTrailingActionVariants, searchViewTrailingActionsVariants, 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 };