@bug-on/m3-expressive 1.2.7 → 1.3.1

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/buttons.d.mts +3 -3
  3. package/dist/buttons.d.ts +3 -3
  4. package/dist/buttons.js +195 -50
  5. package/dist/buttons.js.map +1 -1
  6. package/dist/buttons.mjs +196 -51
  7. package/dist/buttons.mjs.map +1 -1
  8. package/dist/{core-D4048_K5.d.mts → core-CAU8g2HY.d.mts} +1 -1
  9. package/dist/{core-Bc5Wj_pc.d.ts → core-DRrLnsnJ.d.ts} +1 -1
  10. package/dist/core.d.mts +2 -2
  11. package/dist/core.d.ts +2 -2
  12. package/dist/core.js +159 -28
  13. package/dist/core.js.map +1 -1
  14. package/dist/core.mjs +160 -29
  15. package/dist/core.mjs.map +1 -1
  16. package/dist/feedback.d.mts +28 -6
  17. package/dist/feedback.d.ts +28 -6
  18. package/dist/feedback.js +161 -30
  19. package/dist/feedback.js.map +1 -1
  20. package/dist/feedback.mjs +162 -31
  21. package/dist/feedback.mjs.map +1 -1
  22. package/dist/forms.d.mts +3 -2
  23. package/dist/forms.d.ts +3 -2
  24. package/dist/forms.js +88 -100
  25. package/dist/forms.js.map +1 -1
  26. package/dist/forms.mjs +88 -100
  27. package/dist/forms.mjs.map +1 -1
  28. package/dist/{icon-button-CSsDmuQC.d.mts → icon-button-CqdQBsRe.d.ts} +11 -5
  29. package/dist/{icon-button-CSsDmuQC.d.ts → icon-button-USJo7AqO.d.mts} +11 -5
  30. package/dist/index.d.mts +8 -8
  31. package/dist/index.d.ts +8 -8
  32. package/dist/index.js +570 -309
  33. package/dist/index.js.map +1 -1
  34. package/dist/index.mjs +570 -310
  35. package/dist/index.mjs.map +1 -1
  36. package/dist/layout.d.mts +1 -1
  37. package/dist/layout.d.ts +1 -1
  38. package/dist/layout.js +159 -60
  39. package/dist/layout.js.map +1 -1
  40. package/dist/layout.mjs +160 -61
  41. package/dist/layout.mjs.map +1 -1
  42. package/dist/{md3-Dty-Qcad.d.mts → md3-D0_Z7IXj.d.mts} +9 -1
  43. package/dist/{md3-Dty-Qcad.d.ts → md3-D0_Z7IXj.d.ts} +9 -1
  44. package/dist/navigation.d.mts +103 -33
  45. package/dist/navigation.d.ts +103 -33
  46. package/dist/navigation.js +443 -152
  47. package/dist/navigation.js.map +1 -1
  48. package/dist/navigation.mjs +444 -154
  49. package/dist/navigation.mjs.map +1 -1
  50. package/dist/overlays.js +159 -28
  51. package/dist/overlays.js.map +1 -1
  52. package/dist/overlays.mjs +160 -29
  53. package/dist/overlays.mjs.map +1 -1
  54. package/dist/pickers.js +159 -28
  55. package/dist/pickers.js.map +1 -1
  56. package/dist/pickers.mjs +160 -29
  57. package/dist/pickers.mjs.map +1 -1
  58. package/dist/{split-button-trailing-uncheckable-DPJL3bO6.d.mts → split-button-trailing-uncheckable-CIVEYgjY.d.mts} +12 -7
  59. package/dist/{split-button-trailing-uncheckable--BhNTEJw.d.ts → split-button-trailing-uncheckable-DTQJjzsB.d.ts} +12 -7
  60. package/dist/{text-field-DWC7qOvp.d.mts → text-field-CiOmDM_8.d.ts} +52 -51
  61. package/dist/{text-field-DWC7qOvp.d.ts → text-field-Ear3hCSq.d.mts} +52 -51
  62. package/package.json +3 -3
@@ -10,6 +10,14 @@ type MD3ColorStyle = "elevated" | "filled" | "tonal" | "outlined" | "text"
10
10
  | "tertiary-fixed";
11
11
  /** MD3 Expressive button sizes */
12
12
  type MD3Size = "xs" | "sm" | "md" | "lg" | "xl";
13
+ /**
14
+ * MD3 Expressive slot width ratio.
15
+ * Used for icon buttons where width is independent from the size scale.
16
+ * - `"narrow"` – compressed width for dense toolbars.
17
+ * - `"default"` – 1:1 square/round aspect ratio.
18
+ * - `"wide"` – extended width.
19
+ */
20
+ type MD3SlotWidth = "narrow" | "default" | "wide";
13
21
  /** MD3 shape families */
14
22
  type MD3Shape = "round" | "square";
15
23
  /** Helper: PolyMorphic component ref */
@@ -20,4 +28,4 @@ type PolymorphicProps<C extends ElementType, Props = object> = Props & Omit<Comp
20
28
  children?: ReactNode;
21
29
  };
22
30
 
23
- export type { MD3ColorStyle as M, PolymorphicProps as P, MD3Shape as a, MD3Size as b, PolymorphicRef as c };
31
+ export type { MD3SlotWidth as M, PolymorphicProps as P, MD3ColorStyle as a, MD3Shape as b, MD3Size as c, PolymorphicRef as d };
@@ -10,6 +10,14 @@ type MD3ColorStyle = "elevated" | "filled" | "tonal" | "outlined" | "text"
10
10
  | "tertiary-fixed";
11
11
  /** MD3 Expressive button sizes */
12
12
  type MD3Size = "xs" | "sm" | "md" | "lg" | "xl";
13
+ /**
14
+ * MD3 Expressive slot width ratio.
15
+ * Used for icon buttons where width is independent from the size scale.
16
+ * - `"narrow"` – compressed width for dense toolbars.
17
+ * - `"default"` – 1:1 square/round aspect ratio.
18
+ * - `"wide"` – extended width.
19
+ */
20
+ type MD3SlotWidth = "narrow" | "default" | "wide";
13
21
  /** MD3 shape families */
14
22
  type MD3Shape = "round" | "square";
15
23
  /** Helper: PolyMorphic component ref */
@@ -20,4 +28,4 @@ type PolymorphicProps<C extends ElementType, Props = object> = Props & Omit<Comp
20
28
  children?: ReactNode;
21
29
  };
22
30
 
23
- export type { MD3ColorStyle as M, PolymorphicProps as P, MD3Shape as a, MD3Size as b, PolymorphicRef as c };
31
+ export type { MD3SlotWidth as M, PolymorphicProps as P, MD3ColorStyle as a, MD3Shape as b, MD3Size as c, PolymorphicRef as d };
@@ -1,12 +1,86 @@
1
- import * as motion from 'motion';
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import { RefObject } from 'react';
4
- import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import * as motion from 'motion';
5
5
  import * as RxContextMenu from '@radix-ui/react-context-menu';
6
6
  import * as DropdownMenu from '@radix-ui/react-dropdown-menu';
7
7
  import { Transition, Variants, HTMLMotionProps } from 'motion/react';
8
8
  import { M as MD3ShapeName } from './md3-expressive-shapes-CPcfl_Hf.mjs';
9
- import { B as BaseIconButtonProps } from './icon-button-CSsDmuQC.mjs';
9
+ import { M as MD3SlotWidth } from './md3-D0_Z7IXj.mjs';
10
+ import { B as BaseIconButtonProps } from './icon-button-USJo7AqO.mjs';
11
+
12
+ /**
13
+ * @file fading-blur-mask.types.ts
14
+ * Fading Edge & Backdrop Blur Mask — TypeScript interfaces.
15
+ */
16
+
17
+ /** Gradient fade direction for the blur mask. */
18
+ type FadingBlurDirection = "top" | "bottom" | "both";
19
+ /**
20
+ * Props for the primitive `<FadingBlurMask>` component.
21
+ */
22
+ interface FadingBlurMaskProps {
23
+ /**
24
+ * Gradient fade direction.
25
+ * - `top`: Fades from opaque at top to transparent downward (for Top App Bars).
26
+ * - `bottom`: Fades from opaque at bottom to transparent upward (for Bottom App Bars).
27
+ * - `both`: Fades at both top and bottom edges.
28
+ * @default "top"
29
+ */
30
+ direction?: FadingBlurDirection;
31
+ /**
32
+ * Backdrop blur radius in pixels.
33
+ * @default 12
34
+ */
35
+ blurIntensity?: number;
36
+ /**
37
+ * Height/length of the fade mask container or gradient zone.
38
+ * Can be a CSS string (e.g., "100%", "64px") or pixel number.
39
+ * @default "100%"
40
+ */
41
+ blurHeight?: number | string;
42
+ /**
43
+ * Tint or background color overlay mixed into the blur.
44
+ * Defaults to MD3 surface token `var(--md-sys-color-surface)`.
45
+ */
46
+ color?: string;
47
+ /** Additional CSS class names for styling. */
48
+ className?: string;
49
+ /** Custom inline styles. */
50
+ style?: React$1.CSSProperties;
51
+ /** Children components rendered inside the blur mask container if needed. */
52
+ children?: React$1.ReactNode;
53
+ }
54
+ /**
55
+ * Mixin interface for components that integrate Fading Blur functionality (e.g. AppBars).
56
+ */
57
+ interface FadingBlurProps {
58
+ /**
59
+ * Enables smooth fading edge and backdrop blur effect.
60
+ * @default false
61
+ */
62
+ enableFadingBlur?: boolean;
63
+ /**
64
+ * Custom blur intensity in pixels when `enableFadingBlur` is active.
65
+ * @default 12
66
+ */
67
+ blurIntensity?: number;
68
+ /**
69
+ * Custom blur height when `enableFadingBlur` is active.
70
+ * Defaults to container height.
71
+ */
72
+ blurHeight?: number | string;
73
+ }
74
+
75
+ /**
76
+ * `<FadingBlurMask>` component renders a smooth gradient fading backdrop blur overlay.
77
+ *
78
+ * @example
79
+ * ```tsx
80
+ * <FadingBlurMask direction="top" blurIntensity={16} />
81
+ * ```
82
+ */
83
+ declare function FadingBlurMask({ direction, blurIntensity, blurHeight, color, className, style, children, }: FadingBlurMaskProps): react_jsx_runtime.JSX.Element;
10
84
 
11
85
  /**
12
86
  * @file app-bar.tokens.ts
@@ -214,7 +288,7 @@ interface AppBarColors {
214
288
  /**
215
289
  * Shared props for all top App Bar variants.
216
290
  */
217
- interface BaseAppBarProps {
291
+ interface BaseAppBarProps extends FadingBlurProps {
218
292
  /**
219
293
  * Navigation icon slot (typically IconButton with back arrow or hamburger).
220
294
  * Should have `aria-label` for accessibility.
@@ -362,6 +436,12 @@ interface SearchAppBarProps extends BaseAppBarProps {
362
436
  * @default "search-bar"
363
437
  */
364
438
  searchBarId?: string;
439
+ /**
440
+ * Height of the search bar pill in px.
441
+ * MD3 spec: 56dp. Override for compact layouts.
442
+ * @default 56
443
+ */
444
+ searchBarHeight?: number;
365
445
  }
366
446
  /**
367
447
  * Props for `<BottomAppBar>`.
@@ -369,7 +449,7 @@ interface SearchAppBarProps extends BaseAppBarProps {
369
449
  * Fixed to the bottom of the screen. Contains navigation actions and optional FAB.
370
450
  * Height: 80px. Background: `surface-container`. Elevation: Level2.
371
451
  */
372
- interface BottomAppBarProps {
452
+ interface BottomAppBarProps extends FadingBlurProps {
373
453
  /**
374
454
  * Action icon buttons rendered at the leading end.
375
455
  * Typically 3-4 `<IconButton>` components.
@@ -636,7 +716,7 @@ declare function AppBarRow({ items, maxItemCount, className }: AppBarRowProps):
636
716
  * <BottomAppBar scrollBehavior="hidden" actions={...} />
637
717
  * ```
638
718
  */
639
- declare function BottomAppBar({ actions, floatingActionButton, scrollBehavior, scrollElement, className, }: BottomAppBarProps): react_jsx_runtime.JSX.Element;
719
+ declare function BottomAppBar({ actions, floatingActionButton, scrollBehavior, scrollElement, className, enableFadingBlur, blurIntensity, blurHeight, }: BottomAppBarProps): react_jsx_runtime.JSX.Element;
640
720
 
641
721
  /**
642
722
  * MD3 Expressive Docked Toolbar.
@@ -706,7 +786,7 @@ declare function useAppBarScroll({ scrollElement, behavior, collapsedHeight, exp
706
786
  * />
707
787
  * ```
708
788
  */
709
- declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
789
+ declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
710
790
 
711
791
  /**
712
792
  * MD3 Expressive Medium Flexible App Bar.
@@ -721,7 +801,7 @@ declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigati
721
801
  * />
722
802
  * ```
723
803
  */
724
- declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
804
+ declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
725
805
 
726
806
  /**
727
807
  * MD3 Expressive Search App Bar.
@@ -754,7 +834,7 @@ declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigat
754
834
  * </AnimatePresence>
755
835
  * ```
756
836
  */
757
- declare function SearchAppBar({ searchPlaceholder, searchValue, onSearchFocus, leadingSearchIcon, trailingSearchActions, externalActions, navigationIcon, colors, scrollBehavior, scrollElement, searchBarId, className, }: SearchAppBarProps): react_jsx_runtime.JSX.Element;
837
+ declare function SearchAppBar({ searchPlaceholder, searchValue, onSearchFocus, leadingSearchIcon, trailingSearchActions, externalActions, navigationIcon, colors, scrollBehavior, scrollElement, searchBarId, searchBarVariant, searchBarHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: SearchAppBarProps): react_jsx_runtime.JSX.Element;
758
838
 
759
839
  /**
760
840
  * MD3 Expressive Search View.
@@ -805,7 +885,7 @@ declare function SearchViewContainer({ isOpen, ...props }: SearchViewProps & {
805
885
  * />
806
886
  * ```
807
887
  */
808
- declare function SmallAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollBehavior, scrollElement, className, }: SmallAppBarProps): react_jsx_runtime.JSX.Element;
888
+ declare function SmallAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollBehavior, scrollElement, className, enableFadingBlur, blurIntensity, blurHeight, }: SmallAppBarProps): react_jsx_runtime.JSX.Element;
809
889
 
810
890
  /** Color variant of the menu — standard (surface-based) or vibrant (tertiary-based). */
811
891
  type MenuColorVariant = "standard" | "vibrant";
@@ -2703,14 +2783,13 @@ interface FloatingToolbarWithFabProps extends FloatingToolbarProps {
2703
2783
  /** End content (explicitly declared to resolve type issues) */
2704
2784
  endContent?: React$1.ReactNode;
2705
2785
  /**
2706
- * Size of the FAB container.
2707
- * - `"default"` 56×56px (`FabBaselineTokens.ContainerHeight`)
2708
- * - `"medium"` 80×80px (`FabBaselineTokens.MediumContainerHeight`)
2709
- *
2710
- * MD3: pair a medium FAB with the toolbar to give it greater visual prominence.
2711
- * @default "default"
2786
+ * FAB size embedded in the floating toolbar.
2787
+ * - `"sm"` standard FAB: 56×56dp (MD3 default).
2788
+ * - `"md"` medium FAB: 80×80dp (`FabBaselineTokens.MediumContainerHeight`).
2789
+ * Corresponds to MD3 Toolbar Floating FAB token sizes.
2790
+ * @default "sm"
2712
2791
  */
2713
- fabSize?: "default" | "medium";
2792
+ fabSize?: "sm" | "md";
2714
2793
  }
2715
2794
  /**
2716
2795
  * A horizontal floating toolbar paired with a FAB.
@@ -2781,12 +2860,14 @@ interface ToolbarIconButtonProps extends Omit<BaseIconButtonProps, "colorStyle"
2781
2860
  */
2782
2861
  emphasis?: ToolbarIconButtonVariant;
2783
2862
  /**
2784
- * Button width sizing.
2785
- *
2786
- * Height is always `48px` to meet MD3 touch-target requirements.
2863
+ * Slot width of the toolbar icon button per MD3 Expressive specification.
2864
+ * Controls how much horizontal space the button occupies in the toolbar.
2865
+ * - `"narrow"` minimum width slot (40px), for compact actions.
2866
+ * - `"default"` – standard square slot (48px).
2867
+ * - `"wide"` – extended slot (64px), for primary emphasis actions.
2787
2868
  * @default "default"
2788
2869
  */
2789
- toolbarSize?: ToolbarIconButtonSize;
2870
+ width?: MD3SlotWidth;
2790
2871
  /**
2791
2872
  * Whether the icon button is in a selected/active toggle state.
2792
2873
  */
@@ -2802,17 +2883,6 @@ interface ToolbarIconButtonProps extends Omit<BaseIconButtonProps, "colorStyle"
2802
2883
  */
2803
2884
  "aria-label": string;
2804
2885
  }
2805
- /**
2806
- * Width sizing for a toolbar icon button.
2807
- *
2808
- * MD3 guideline: *"Use wide and narrow icon buttons"* to create visual hierarchy.
2809
- * Touch-target height is always 48dp regardless of width.
2810
- *
2811
- * - `narrow` → 40px wide (secondary, de-emphasised)
2812
- * - `default` → 48px wide (standard square touch target)
2813
- * - `wide` → 64px wide (primary emphasis, draws eye)
2814
- */
2815
- type ToolbarIconButtonSize = "narrow" | "default" | "wide";
2816
2886
  /**
2817
2887
  * Visual emphasis variant for a toolbar icon button.
2818
2888
  *
@@ -2967,4 +3037,4 @@ declare const ToolbarToggleButtonTokens: {
2967
3037
  readonly Gap: 8;
2968
3038
  };
2969
3039
 
2970
- export { APP_BAR_BOTTOM_SPRING, APP_BAR_COLORS, APP_BAR_COLOR_TRANSITION, APP_BAR_ENTER_ALWAYS_SPRING, APP_BAR_TITLE_FADE, type AppBarColors, AppBarColumn, type AppBarColumnProps, type AppBarItem, type AppBarItemType, type AppBarMenuState, AppBarOverflowIndicator, type AppBarOverflowIndicatorProps, AppBarRow, type AppBarRowProps, type AppBarScrollBehavior, AppBarTokens, type BaseAppBarProps, BottomAppBar, type BottomAppBarProps, BottomDockedToolbar, type BottomDockedToolbarProps, CHECK_ICON_VARIANTS, ContextMenu, ContextMenuContent, type ContextMenuContentProps, type ContextMenuProps, ContextMenuTrigger, type ContextMenuTriggerProps, DIVIDER_COLOR, DIVIDER_PADDING, DockedToolbar, type DockedToolbarProps, FAST_EFFECTS_TRANSITION, FAST_SPATIAL_SPRING, type FlexibleAppBarProps, type FloatingToolbarColors, type FloatingToolbarProps, type FloatingToolbarScrollBehavior, type FloatingToolbarWithFabProps, GROUP_SHAPES, HorizontalFloatingToolbar, HorizontalFloatingToolbarWithFab, ITEM_SHAPE_CLASSES, LargeFlexibleAppBar, MENU_CHECK_ICON_SIZE, MENU_CONTAINER_VARIANTS, MENU_GROUP_GAP, MENU_ICON_SIZE, MENU_ITEM_MIN_HEIGHT, MENU_MAX_WIDTH, MENU_MIN_WIDTH, MediumFlexibleAppBar, Menu, type MenuColorVariant, MenuContent, type MenuContentProps, MenuDivider, type MenuDividerProps, MenuGroup, type MenuGroupPosition, type MenuGroupProps, MenuItem, type MenuItemPosition, type MenuItemProps, type MenuPrimitive, type MenuProps, MenuProvider, MenuTrigger, type MenuTriggerProps, type MenuVariant, NavigationBar, NavigationBarComponent, NavigationBarItem, type NavigationBarItemLayout, type NavigationBarItemProps, type NavigationBarLabelVisibility, type NavigationBarProps, type NavigationBarVariant, type NavigationItemShape, NavigationRail, type NavigationRailActiveIndicatorWidth, NavigationRailItem, type NavigationRailItemProps, type NavigationRailLabelVisibility, type NavigationRailProps, type NavigationRailVariant, SEARCH_BAR_EXIT_SPRING, SEARCH_BAR_EXPAND_SPRING, SEARCH_COLORS, SEARCH_DOCKED_REVEAL_SPRING, SEARCH_FULLSCREEN_SPRING, SEARCH_TYPOGRAPHY, SEARCH_VIEW_SPRING, STANDARD_COLORS, SUBMENU_CONTAINER_VARIANTS, Search, SearchAppBar, type SearchAppBarProps, SearchBar, type SearchBarVariant, type SearchProps, type SearchStyleType, SearchTokens, type SearchVariant, SearchView, SearchViewContainer, SearchViewDocked, SearchViewFullScreen, type SearchViewProps, SmallAppBar, type SmallAppBarProps, SubMenu, type SubMenuProps, Tab, type TabProps, Tabs, TabsColors, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTokens, type TabsVariant, type TitleAlignment, ToolbarDivider, type ToolbarDividerProps, ToolbarDividerTokens, ToolbarIconButton, type ToolbarIconButtonProps, type ToolbarIconButtonSize, ToolbarIconButtonTokens, type ToolbarIconButtonVariant, ToolbarToggleButton, type ToolbarToggleButtonProps, ToolbarToggleButtonTokens, type ToolbarVariant, type UseAppBarScrollReturn, type UseFloatingToolbarScrollBehaviorOptions, VIBRANT_COLORS, VerticalFloatingToolbar, VerticalFloatingToolbarWithFab, VerticalMenu, VerticalMenuContent, type VerticalMenuContentProps, VerticalMenuDivider, type VerticalMenuDividerProps, VerticalMenuGroup, type VerticalMenuGroupProps, type VerticalMenuProps, type VerticalMenuSeparatorStyle, appBarTypography, getNavigationShapeStyle, getToolbarColors, isSquareShape, standardFloatingToolbarColors, surfaceContainerHighFloatingToolbarColors, surfaceContainerHighestFloatingToolbarColors, tertiaryContainerFloatingToolbarColors, useAppBarScroll, useFloatingToolbarScrollBehavior, useMenuContext, useSearch, useSearchKeyboard, vibrantFloatingToolbarColors, xrFloatingToolbarColors };
3040
+ export { APP_BAR_BOTTOM_SPRING, APP_BAR_COLORS, APP_BAR_COLOR_TRANSITION, APP_BAR_ENTER_ALWAYS_SPRING, APP_BAR_TITLE_FADE, type AppBarColors, AppBarColumn, type AppBarColumnProps, type AppBarItem, type AppBarItemType, type AppBarMenuState, AppBarOverflowIndicator, type AppBarOverflowIndicatorProps, AppBarRow, type AppBarRowProps, type AppBarScrollBehavior, AppBarTokens, type BaseAppBarProps, BottomAppBar, type BottomAppBarProps, BottomDockedToolbar, type BottomDockedToolbarProps, CHECK_ICON_VARIANTS, ContextMenu, ContextMenuContent, type ContextMenuContentProps, type ContextMenuProps, ContextMenuTrigger, type ContextMenuTriggerProps, DIVIDER_COLOR, DIVIDER_PADDING, DockedToolbar, type DockedToolbarProps, FAST_EFFECTS_TRANSITION, FAST_SPATIAL_SPRING, type FadingBlurDirection, FadingBlurMask, type FadingBlurMaskProps, type FadingBlurProps, type FlexibleAppBarProps, type FloatingToolbarColors, type FloatingToolbarProps, type FloatingToolbarScrollBehavior, type FloatingToolbarWithFabProps, GROUP_SHAPES, HorizontalFloatingToolbar, HorizontalFloatingToolbarWithFab, ITEM_SHAPE_CLASSES, LargeFlexibleAppBar, MENU_CHECK_ICON_SIZE, MENU_CONTAINER_VARIANTS, MENU_GROUP_GAP, MENU_ICON_SIZE, MENU_ITEM_MIN_HEIGHT, MENU_MAX_WIDTH, MENU_MIN_WIDTH, MediumFlexibleAppBar, Menu, type MenuColorVariant, MenuContent, type MenuContentProps, MenuDivider, type MenuDividerProps, MenuGroup, type MenuGroupPosition, type MenuGroupProps, MenuItem, type MenuItemPosition, type MenuItemProps, type MenuPrimitive, type MenuProps, MenuProvider, MenuTrigger, type MenuTriggerProps, type MenuVariant, NavigationBar, NavigationBarComponent, NavigationBarItem, type NavigationBarItemLayout, type NavigationBarItemProps, type NavigationBarLabelVisibility, type NavigationBarProps, type NavigationBarVariant, type NavigationItemShape, NavigationRail, type NavigationRailActiveIndicatorWidth, NavigationRailItem, type NavigationRailItemProps, type NavigationRailLabelVisibility, type NavigationRailProps, type NavigationRailVariant, SEARCH_BAR_EXIT_SPRING, SEARCH_BAR_EXPAND_SPRING, SEARCH_COLORS, SEARCH_DOCKED_REVEAL_SPRING, SEARCH_FULLSCREEN_SPRING, SEARCH_TYPOGRAPHY, SEARCH_VIEW_SPRING, STANDARD_COLORS, SUBMENU_CONTAINER_VARIANTS, Search, SearchAppBar, type SearchAppBarProps, SearchBar, type SearchBarVariant, type SearchProps, type SearchStyleType, SearchTokens, type SearchVariant, SearchView, SearchViewContainer, SearchViewDocked, SearchViewFullScreen, type SearchViewProps, SmallAppBar, type SmallAppBarProps, SubMenu, type SubMenuProps, Tab, type TabProps, Tabs, TabsColors, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTokens, type TabsVariant, type TitleAlignment, ToolbarDivider, type ToolbarDividerProps, ToolbarDividerTokens, ToolbarIconButton, type ToolbarIconButtonProps, ToolbarIconButtonTokens, type ToolbarIconButtonVariant, ToolbarToggleButton, type ToolbarToggleButtonProps, ToolbarToggleButtonTokens, type ToolbarVariant, type UseAppBarScrollReturn, type UseFloatingToolbarScrollBehaviorOptions, VIBRANT_COLORS, VerticalFloatingToolbar, VerticalFloatingToolbarWithFab, VerticalMenu, VerticalMenuContent, type VerticalMenuContentProps, VerticalMenuDivider, type VerticalMenuDividerProps, VerticalMenuGroup, type VerticalMenuGroupProps, type VerticalMenuProps, type VerticalMenuSeparatorStyle, appBarTypography, getNavigationShapeStyle, getToolbarColors, isSquareShape, standardFloatingToolbarColors, surfaceContainerHighFloatingToolbarColors, surfaceContainerHighestFloatingToolbarColors, tertiaryContainerFloatingToolbarColors, useAppBarScroll, useFloatingToolbarScrollBehavior, useMenuContext, useSearch, useSearchKeyboard, vibrantFloatingToolbarColors, xrFloatingToolbarColors };
@@ -1,12 +1,86 @@
1
- import * as motion from 'motion';
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import { RefObject } from 'react';
4
- import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import * as motion from 'motion';
5
5
  import * as RxContextMenu from '@radix-ui/react-context-menu';
6
6
  import * as DropdownMenu from '@radix-ui/react-dropdown-menu';
7
7
  import { Transition, Variants, HTMLMotionProps } from 'motion/react';
8
8
  import { M as MD3ShapeName } from './md3-expressive-shapes-CPcfl_Hf.js';
9
- import { B as BaseIconButtonProps } from './icon-button-CSsDmuQC.js';
9
+ import { M as MD3SlotWidth } from './md3-D0_Z7IXj.js';
10
+ import { B as BaseIconButtonProps } from './icon-button-CqdQBsRe.js';
11
+
12
+ /**
13
+ * @file fading-blur-mask.types.ts
14
+ * Fading Edge & Backdrop Blur Mask — TypeScript interfaces.
15
+ */
16
+
17
+ /** Gradient fade direction for the blur mask. */
18
+ type FadingBlurDirection = "top" | "bottom" | "both";
19
+ /**
20
+ * Props for the primitive `<FadingBlurMask>` component.
21
+ */
22
+ interface FadingBlurMaskProps {
23
+ /**
24
+ * Gradient fade direction.
25
+ * - `top`: Fades from opaque at top to transparent downward (for Top App Bars).
26
+ * - `bottom`: Fades from opaque at bottom to transparent upward (for Bottom App Bars).
27
+ * - `both`: Fades at both top and bottom edges.
28
+ * @default "top"
29
+ */
30
+ direction?: FadingBlurDirection;
31
+ /**
32
+ * Backdrop blur radius in pixels.
33
+ * @default 12
34
+ */
35
+ blurIntensity?: number;
36
+ /**
37
+ * Height/length of the fade mask container or gradient zone.
38
+ * Can be a CSS string (e.g., "100%", "64px") or pixel number.
39
+ * @default "100%"
40
+ */
41
+ blurHeight?: number | string;
42
+ /**
43
+ * Tint or background color overlay mixed into the blur.
44
+ * Defaults to MD3 surface token `var(--md-sys-color-surface)`.
45
+ */
46
+ color?: string;
47
+ /** Additional CSS class names for styling. */
48
+ className?: string;
49
+ /** Custom inline styles. */
50
+ style?: React$1.CSSProperties;
51
+ /** Children components rendered inside the blur mask container if needed. */
52
+ children?: React$1.ReactNode;
53
+ }
54
+ /**
55
+ * Mixin interface for components that integrate Fading Blur functionality (e.g. AppBars).
56
+ */
57
+ interface FadingBlurProps {
58
+ /**
59
+ * Enables smooth fading edge and backdrop blur effect.
60
+ * @default false
61
+ */
62
+ enableFadingBlur?: boolean;
63
+ /**
64
+ * Custom blur intensity in pixels when `enableFadingBlur` is active.
65
+ * @default 12
66
+ */
67
+ blurIntensity?: number;
68
+ /**
69
+ * Custom blur height when `enableFadingBlur` is active.
70
+ * Defaults to container height.
71
+ */
72
+ blurHeight?: number | string;
73
+ }
74
+
75
+ /**
76
+ * `<FadingBlurMask>` component renders a smooth gradient fading backdrop blur overlay.
77
+ *
78
+ * @example
79
+ * ```tsx
80
+ * <FadingBlurMask direction="top" blurIntensity={16} />
81
+ * ```
82
+ */
83
+ declare function FadingBlurMask({ direction, blurIntensity, blurHeight, color, className, style, children, }: FadingBlurMaskProps): react_jsx_runtime.JSX.Element;
10
84
 
11
85
  /**
12
86
  * @file app-bar.tokens.ts
@@ -214,7 +288,7 @@ interface AppBarColors {
214
288
  /**
215
289
  * Shared props for all top App Bar variants.
216
290
  */
217
- interface BaseAppBarProps {
291
+ interface BaseAppBarProps extends FadingBlurProps {
218
292
  /**
219
293
  * Navigation icon slot (typically IconButton with back arrow or hamburger).
220
294
  * Should have `aria-label` for accessibility.
@@ -362,6 +436,12 @@ interface SearchAppBarProps extends BaseAppBarProps {
362
436
  * @default "search-bar"
363
437
  */
364
438
  searchBarId?: string;
439
+ /**
440
+ * Height of the search bar pill in px.
441
+ * MD3 spec: 56dp. Override for compact layouts.
442
+ * @default 56
443
+ */
444
+ searchBarHeight?: number;
365
445
  }
366
446
  /**
367
447
  * Props for `<BottomAppBar>`.
@@ -369,7 +449,7 @@ interface SearchAppBarProps extends BaseAppBarProps {
369
449
  * Fixed to the bottom of the screen. Contains navigation actions and optional FAB.
370
450
  * Height: 80px. Background: `surface-container`. Elevation: Level2.
371
451
  */
372
- interface BottomAppBarProps {
452
+ interface BottomAppBarProps extends FadingBlurProps {
373
453
  /**
374
454
  * Action icon buttons rendered at the leading end.
375
455
  * Typically 3-4 `<IconButton>` components.
@@ -636,7 +716,7 @@ declare function AppBarRow({ items, maxItemCount, className }: AppBarRowProps):
636
716
  * <BottomAppBar scrollBehavior="hidden" actions={...} />
637
717
  * ```
638
718
  */
639
- declare function BottomAppBar({ actions, floatingActionButton, scrollBehavior, scrollElement, className, }: BottomAppBarProps): react_jsx_runtime.JSX.Element;
719
+ declare function BottomAppBar({ actions, floatingActionButton, scrollBehavior, scrollElement, className, enableFadingBlur, blurIntensity, blurHeight, }: BottomAppBarProps): react_jsx_runtime.JSX.Element;
640
720
 
641
721
  /**
642
722
  * MD3 Expressive Docked Toolbar.
@@ -706,7 +786,7 @@ declare function useAppBarScroll({ scrollElement, behavior, collapsedHeight, exp
706
786
  * />
707
787
  * ```
708
788
  */
709
- declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
789
+ declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
710
790
 
711
791
  /**
712
792
  * MD3 Expressive Medium Flexible App Bar.
@@ -721,7 +801,7 @@ declare function LargeFlexibleAppBar({ title, subtitle, titleAlignment, navigati
721
801
  * />
722
802
  * ```
723
803
  */
724
- declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
804
+ declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollElement, headerContent, collapsedHeight, expandedHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: FlexibleAppBarProps): react_jsx_runtime.JSX.Element;
725
805
 
726
806
  /**
727
807
  * MD3 Expressive Search App Bar.
@@ -754,7 +834,7 @@ declare function MediumFlexibleAppBar({ title, subtitle, titleAlignment, navigat
754
834
  * </AnimatePresence>
755
835
  * ```
756
836
  */
757
- declare function SearchAppBar({ searchPlaceholder, searchValue, onSearchFocus, leadingSearchIcon, trailingSearchActions, externalActions, navigationIcon, colors, scrollBehavior, scrollElement, searchBarId, className, }: SearchAppBarProps): react_jsx_runtime.JSX.Element;
837
+ declare function SearchAppBar({ searchPlaceholder, searchValue, onSearchFocus, leadingSearchIcon, trailingSearchActions, externalActions, navigationIcon, colors, scrollBehavior, scrollElement, searchBarId, searchBarVariant, searchBarHeight, className, enableFadingBlur, blurIntensity, blurHeight, }: SearchAppBarProps): react_jsx_runtime.JSX.Element;
758
838
 
759
839
  /**
760
840
  * MD3 Expressive Search View.
@@ -805,7 +885,7 @@ declare function SearchViewContainer({ isOpen, ...props }: SearchViewProps & {
805
885
  * />
806
886
  * ```
807
887
  */
808
- declare function SmallAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollBehavior, scrollElement, className, }: SmallAppBarProps): react_jsx_runtime.JSX.Element;
888
+ declare function SmallAppBar({ title, subtitle, titleAlignment, navigationIcon, actions, colors, scrollBehavior, scrollElement, className, enableFadingBlur, blurIntensity, blurHeight, }: SmallAppBarProps): react_jsx_runtime.JSX.Element;
809
889
 
810
890
  /** Color variant of the menu — standard (surface-based) or vibrant (tertiary-based). */
811
891
  type MenuColorVariant = "standard" | "vibrant";
@@ -2703,14 +2783,13 @@ interface FloatingToolbarWithFabProps extends FloatingToolbarProps {
2703
2783
  /** End content (explicitly declared to resolve type issues) */
2704
2784
  endContent?: React$1.ReactNode;
2705
2785
  /**
2706
- * Size of the FAB container.
2707
- * - `"default"` 56×56px (`FabBaselineTokens.ContainerHeight`)
2708
- * - `"medium"` 80×80px (`FabBaselineTokens.MediumContainerHeight`)
2709
- *
2710
- * MD3: pair a medium FAB with the toolbar to give it greater visual prominence.
2711
- * @default "default"
2786
+ * FAB size embedded in the floating toolbar.
2787
+ * - `"sm"` standard FAB: 56×56dp (MD3 default).
2788
+ * - `"md"` medium FAB: 80×80dp (`FabBaselineTokens.MediumContainerHeight`).
2789
+ * Corresponds to MD3 Toolbar Floating FAB token sizes.
2790
+ * @default "sm"
2712
2791
  */
2713
- fabSize?: "default" | "medium";
2792
+ fabSize?: "sm" | "md";
2714
2793
  }
2715
2794
  /**
2716
2795
  * A horizontal floating toolbar paired with a FAB.
@@ -2781,12 +2860,14 @@ interface ToolbarIconButtonProps extends Omit<BaseIconButtonProps, "colorStyle"
2781
2860
  */
2782
2861
  emphasis?: ToolbarIconButtonVariant;
2783
2862
  /**
2784
- * Button width sizing.
2785
- *
2786
- * Height is always `48px` to meet MD3 touch-target requirements.
2863
+ * Slot width of the toolbar icon button per MD3 Expressive specification.
2864
+ * Controls how much horizontal space the button occupies in the toolbar.
2865
+ * - `"narrow"` minimum width slot (40px), for compact actions.
2866
+ * - `"default"` – standard square slot (48px).
2867
+ * - `"wide"` – extended slot (64px), for primary emphasis actions.
2787
2868
  * @default "default"
2788
2869
  */
2789
- toolbarSize?: ToolbarIconButtonSize;
2870
+ width?: MD3SlotWidth;
2790
2871
  /**
2791
2872
  * Whether the icon button is in a selected/active toggle state.
2792
2873
  */
@@ -2802,17 +2883,6 @@ interface ToolbarIconButtonProps extends Omit<BaseIconButtonProps, "colorStyle"
2802
2883
  */
2803
2884
  "aria-label": string;
2804
2885
  }
2805
- /**
2806
- * Width sizing for a toolbar icon button.
2807
- *
2808
- * MD3 guideline: *"Use wide and narrow icon buttons"* to create visual hierarchy.
2809
- * Touch-target height is always 48dp regardless of width.
2810
- *
2811
- * - `narrow` → 40px wide (secondary, de-emphasised)
2812
- * - `default` → 48px wide (standard square touch target)
2813
- * - `wide` → 64px wide (primary emphasis, draws eye)
2814
- */
2815
- type ToolbarIconButtonSize = "narrow" | "default" | "wide";
2816
2886
  /**
2817
2887
  * Visual emphasis variant for a toolbar icon button.
2818
2888
  *
@@ -2967,4 +3037,4 @@ declare const ToolbarToggleButtonTokens: {
2967
3037
  readonly Gap: 8;
2968
3038
  };
2969
3039
 
2970
- export { APP_BAR_BOTTOM_SPRING, APP_BAR_COLORS, APP_BAR_COLOR_TRANSITION, APP_BAR_ENTER_ALWAYS_SPRING, APP_BAR_TITLE_FADE, type AppBarColors, AppBarColumn, type AppBarColumnProps, type AppBarItem, type AppBarItemType, type AppBarMenuState, AppBarOverflowIndicator, type AppBarOverflowIndicatorProps, AppBarRow, type AppBarRowProps, type AppBarScrollBehavior, AppBarTokens, type BaseAppBarProps, BottomAppBar, type BottomAppBarProps, BottomDockedToolbar, type BottomDockedToolbarProps, CHECK_ICON_VARIANTS, ContextMenu, ContextMenuContent, type ContextMenuContentProps, type ContextMenuProps, ContextMenuTrigger, type ContextMenuTriggerProps, DIVIDER_COLOR, DIVIDER_PADDING, DockedToolbar, type DockedToolbarProps, FAST_EFFECTS_TRANSITION, FAST_SPATIAL_SPRING, type FlexibleAppBarProps, type FloatingToolbarColors, type FloatingToolbarProps, type FloatingToolbarScrollBehavior, type FloatingToolbarWithFabProps, GROUP_SHAPES, HorizontalFloatingToolbar, HorizontalFloatingToolbarWithFab, ITEM_SHAPE_CLASSES, LargeFlexibleAppBar, MENU_CHECK_ICON_SIZE, MENU_CONTAINER_VARIANTS, MENU_GROUP_GAP, MENU_ICON_SIZE, MENU_ITEM_MIN_HEIGHT, MENU_MAX_WIDTH, MENU_MIN_WIDTH, MediumFlexibleAppBar, Menu, type MenuColorVariant, MenuContent, type MenuContentProps, MenuDivider, type MenuDividerProps, MenuGroup, type MenuGroupPosition, type MenuGroupProps, MenuItem, type MenuItemPosition, type MenuItemProps, type MenuPrimitive, type MenuProps, MenuProvider, MenuTrigger, type MenuTriggerProps, type MenuVariant, NavigationBar, NavigationBarComponent, NavigationBarItem, type NavigationBarItemLayout, type NavigationBarItemProps, type NavigationBarLabelVisibility, type NavigationBarProps, type NavigationBarVariant, type NavigationItemShape, NavigationRail, type NavigationRailActiveIndicatorWidth, NavigationRailItem, type NavigationRailItemProps, type NavigationRailLabelVisibility, type NavigationRailProps, type NavigationRailVariant, SEARCH_BAR_EXIT_SPRING, SEARCH_BAR_EXPAND_SPRING, SEARCH_COLORS, SEARCH_DOCKED_REVEAL_SPRING, SEARCH_FULLSCREEN_SPRING, SEARCH_TYPOGRAPHY, SEARCH_VIEW_SPRING, STANDARD_COLORS, SUBMENU_CONTAINER_VARIANTS, Search, SearchAppBar, type SearchAppBarProps, SearchBar, type SearchBarVariant, type SearchProps, type SearchStyleType, SearchTokens, type SearchVariant, SearchView, SearchViewContainer, SearchViewDocked, SearchViewFullScreen, type SearchViewProps, SmallAppBar, type SmallAppBarProps, SubMenu, type SubMenuProps, Tab, type TabProps, Tabs, TabsColors, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTokens, type TabsVariant, type TitleAlignment, ToolbarDivider, type ToolbarDividerProps, ToolbarDividerTokens, ToolbarIconButton, type ToolbarIconButtonProps, type ToolbarIconButtonSize, ToolbarIconButtonTokens, type ToolbarIconButtonVariant, ToolbarToggleButton, type ToolbarToggleButtonProps, ToolbarToggleButtonTokens, type ToolbarVariant, type UseAppBarScrollReturn, type UseFloatingToolbarScrollBehaviorOptions, VIBRANT_COLORS, VerticalFloatingToolbar, VerticalFloatingToolbarWithFab, VerticalMenu, VerticalMenuContent, type VerticalMenuContentProps, VerticalMenuDivider, type VerticalMenuDividerProps, VerticalMenuGroup, type VerticalMenuGroupProps, type VerticalMenuProps, type VerticalMenuSeparatorStyle, appBarTypography, getNavigationShapeStyle, getToolbarColors, isSquareShape, standardFloatingToolbarColors, surfaceContainerHighFloatingToolbarColors, surfaceContainerHighestFloatingToolbarColors, tertiaryContainerFloatingToolbarColors, useAppBarScroll, useFloatingToolbarScrollBehavior, useMenuContext, useSearch, useSearchKeyboard, vibrantFloatingToolbarColors, xrFloatingToolbarColors };
3040
+ export { APP_BAR_BOTTOM_SPRING, APP_BAR_COLORS, APP_BAR_COLOR_TRANSITION, APP_BAR_ENTER_ALWAYS_SPRING, APP_BAR_TITLE_FADE, type AppBarColors, AppBarColumn, type AppBarColumnProps, type AppBarItem, type AppBarItemType, type AppBarMenuState, AppBarOverflowIndicator, type AppBarOverflowIndicatorProps, AppBarRow, type AppBarRowProps, type AppBarScrollBehavior, AppBarTokens, type BaseAppBarProps, BottomAppBar, type BottomAppBarProps, BottomDockedToolbar, type BottomDockedToolbarProps, CHECK_ICON_VARIANTS, ContextMenu, ContextMenuContent, type ContextMenuContentProps, type ContextMenuProps, ContextMenuTrigger, type ContextMenuTriggerProps, DIVIDER_COLOR, DIVIDER_PADDING, DockedToolbar, type DockedToolbarProps, FAST_EFFECTS_TRANSITION, FAST_SPATIAL_SPRING, type FadingBlurDirection, FadingBlurMask, type FadingBlurMaskProps, type FadingBlurProps, type FlexibleAppBarProps, type FloatingToolbarColors, type FloatingToolbarProps, type FloatingToolbarScrollBehavior, type FloatingToolbarWithFabProps, GROUP_SHAPES, HorizontalFloatingToolbar, HorizontalFloatingToolbarWithFab, ITEM_SHAPE_CLASSES, LargeFlexibleAppBar, MENU_CHECK_ICON_SIZE, MENU_CONTAINER_VARIANTS, MENU_GROUP_GAP, MENU_ICON_SIZE, MENU_ITEM_MIN_HEIGHT, MENU_MAX_WIDTH, MENU_MIN_WIDTH, MediumFlexibleAppBar, Menu, type MenuColorVariant, MenuContent, type MenuContentProps, MenuDivider, type MenuDividerProps, MenuGroup, type MenuGroupPosition, type MenuGroupProps, MenuItem, type MenuItemPosition, type MenuItemProps, type MenuPrimitive, type MenuProps, MenuProvider, MenuTrigger, type MenuTriggerProps, type MenuVariant, NavigationBar, NavigationBarComponent, NavigationBarItem, type NavigationBarItemLayout, type NavigationBarItemProps, type NavigationBarLabelVisibility, type NavigationBarProps, type NavigationBarVariant, type NavigationItemShape, NavigationRail, type NavigationRailActiveIndicatorWidth, NavigationRailItem, type NavigationRailItemProps, type NavigationRailLabelVisibility, type NavigationRailProps, type NavigationRailVariant, SEARCH_BAR_EXIT_SPRING, SEARCH_BAR_EXPAND_SPRING, SEARCH_COLORS, SEARCH_DOCKED_REVEAL_SPRING, SEARCH_FULLSCREEN_SPRING, SEARCH_TYPOGRAPHY, SEARCH_VIEW_SPRING, STANDARD_COLORS, SUBMENU_CONTAINER_VARIANTS, Search, SearchAppBar, type SearchAppBarProps, SearchBar, type SearchBarVariant, type SearchProps, type SearchStyleType, SearchTokens, type SearchVariant, SearchView, SearchViewContainer, SearchViewDocked, SearchViewFullScreen, type SearchViewProps, SmallAppBar, type SmallAppBarProps, SubMenu, type SubMenuProps, Tab, type TabProps, Tabs, TabsColors, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTokens, type TabsVariant, type TitleAlignment, ToolbarDivider, type ToolbarDividerProps, ToolbarDividerTokens, ToolbarIconButton, type ToolbarIconButtonProps, ToolbarIconButtonTokens, type ToolbarIconButtonVariant, ToolbarToggleButton, type ToolbarToggleButtonProps, ToolbarToggleButtonTokens, type ToolbarVariant, type UseAppBarScrollReturn, type UseFloatingToolbarScrollBehaviorOptions, VIBRANT_COLORS, VerticalFloatingToolbar, VerticalFloatingToolbarWithFab, VerticalMenu, VerticalMenuContent, type VerticalMenuContentProps, VerticalMenuDivider, type VerticalMenuDividerProps, VerticalMenuGroup, type VerticalMenuGroupProps, type VerticalMenuProps, type VerticalMenuSeparatorStyle, appBarTypography, getNavigationShapeStyle, getToolbarColors, isSquareShape, standardFloatingToolbarColors, surfaceContainerHighFloatingToolbarColors, surfaceContainerHighestFloatingToolbarColors, tertiaryContainerFloatingToolbarColors, useAppBarScroll, useFloatingToolbarScrollBehavior, useMenuContext, useSearch, useSearchKeyboard, vibrantFloatingToolbarColors, xrFloatingToolbarColors };