@tinybigui/react 0.7.0 → 0.8.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.
- package/README.md +18 -18
- package/dist/index.cjs +261 -382
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +158 -170
- package/dist/index.d.ts +158 -170
- package/dist/index.js +261 -382
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2264,23 +2264,23 @@ interface CheckboxProps extends AriaCheckboxProps, Omit<React__default.HTMLAttri
|
|
|
2264
2264
|
* Material Design 3 Checkbox Component (Layer 3: Styled)
|
|
2265
2265
|
*
|
|
2266
2266
|
* Built on React Aria for world-class accessibility.
|
|
2267
|
-
*
|
|
2268
|
-
*
|
|
2267
|
+
* Implements the Variants-vs-States architecture: all interaction/selection
|
|
2268
|
+
* states are expressed as data-* attributes on the root and consumed by each
|
|
2269
|
+
* slot via group-data-[x]/checkbox Tailwind selectors — no state variants in CVA.
|
|
2269
2270
|
*
|
|
2270
2271
|
* Features:
|
|
2271
|
-
* -
|
|
2272
|
-
* -
|
|
2273
|
-
* -
|
|
2274
|
-
* -
|
|
2275
|
-
* -
|
|
2276
|
-
* -
|
|
2277
|
-
* -
|
|
2272
|
+
* - 3 states: unchecked, checked, indeterminate
|
|
2273
|
+
* - Error/invalid state support
|
|
2274
|
+
* - Ripple effect (Material Design)
|
|
2275
|
+
* - Full keyboard accessibility (via React Aria)
|
|
2276
|
+
* - Screen reader support (via React Aria)
|
|
2277
|
+
* - Focus management (via React Aria)
|
|
2278
|
+
* - Form integration (name, value props)
|
|
2278
2279
|
*
|
|
2279
2280
|
* MD3 Specifications:
|
|
2280
|
-
* -
|
|
2281
|
-
* -
|
|
2282
|
-
* -
|
|
2283
|
-
* - Disabled: 38% opacity
|
|
2281
|
+
* - Box: 18×18dp, 2dp corner radius, within 40×40dp touch target
|
|
2282
|
+
* - State-layer opacities: hover 8% | focus/pressed 10%
|
|
2283
|
+
* - Disabled: 38% opacity on root
|
|
2284
2284
|
* - Label spacing: 16px (ml-4)
|
|
2285
2285
|
*
|
|
2286
2286
|
* @example
|
|
@@ -3647,137 +3647,6 @@ declare const HeadlessNavigationBar: React$1.ForwardRefExoticComponent<HeadlessN
|
|
|
3647
3647
|
*/
|
|
3648
3648
|
declare const HeadlessNavigationBarItem: React$1.ForwardRefExoticComponent<HeadlessNavigationBarItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3649
3649
|
|
|
3650
|
-
/**
|
|
3651
|
-
* Badge color roles (Material Design 3)
|
|
3652
|
-
*/
|
|
3653
|
-
type BadgeColor = "error" | "primary";
|
|
3654
|
-
/**
|
|
3655
|
-
* Props for the BadgeContent indicator element.
|
|
3656
|
-
*
|
|
3657
|
-
* Renders either a small dot (no count) or a count pill (with count).
|
|
3658
|
-
*/
|
|
3659
|
-
interface BadgeContentProps {
|
|
3660
|
-
/**
|
|
3661
|
-
* Numeric count to display. When omitted, renders a small dot indicator.
|
|
3662
|
-
*/
|
|
3663
|
-
count?: number | undefined;
|
|
3664
|
-
/**
|
|
3665
|
-
* Maximum displayable count. Values exceeding this render as `"${max}+"`.
|
|
3666
|
-
* @default 999
|
|
3667
|
-
*/
|
|
3668
|
-
max?: number;
|
|
3669
|
-
/**
|
|
3670
|
-
* Badge color role mapped to MD3 design tokens.
|
|
3671
|
-
* @default 'error'
|
|
3672
|
-
*/
|
|
3673
|
-
color?: BadgeColor;
|
|
3674
|
-
/**
|
|
3675
|
-
* Whether the badge is invisible (scale-0 / opacity-0).
|
|
3676
|
-
* @default false
|
|
3677
|
-
*/
|
|
3678
|
-
invisible?: boolean;
|
|
3679
|
-
/**
|
|
3680
|
-
* Accessible label override. Defaults to `"New"` for dot badges
|
|
3681
|
-
* or `"${count} notifications"` for count badges.
|
|
3682
|
-
*/
|
|
3683
|
-
"aria-label"?: string | undefined;
|
|
3684
|
-
/**
|
|
3685
|
-
* Whether to skip transition animations (reduced motion).
|
|
3686
|
-
* @default false
|
|
3687
|
-
*/
|
|
3688
|
-
reducedMotion?: boolean;
|
|
3689
|
-
/**
|
|
3690
|
-
* Additional CSS classes merged via `cn()`.
|
|
3691
|
-
*/
|
|
3692
|
-
className?: string;
|
|
3693
|
-
}
|
|
3694
|
-
/**
|
|
3695
|
-
* Props for the headless Badge wrapper.
|
|
3696
|
-
*
|
|
3697
|
-
* Provides the structural `relative inline-flex` container that positions
|
|
3698
|
-
* the badge indicator absolutely over the host element.
|
|
3699
|
-
*/
|
|
3700
|
-
interface BadgeHeadlessProps {
|
|
3701
|
-
/**
|
|
3702
|
-
* Whether the badge indicator is invisible.
|
|
3703
|
-
*/
|
|
3704
|
-
invisible?: boolean;
|
|
3705
|
-
/**
|
|
3706
|
-
* Accessible label for the badge region.
|
|
3707
|
-
*/
|
|
3708
|
-
"aria-label"?: string;
|
|
3709
|
-
/**
|
|
3710
|
-
* Additional CSS classes merged via `cn()`.
|
|
3711
|
-
*/
|
|
3712
|
-
className?: string | undefined;
|
|
3713
|
-
/**
|
|
3714
|
-
* The host element(s) to badge — typically an icon, IconButton, or avatar.
|
|
3715
|
-
*/
|
|
3716
|
-
children?: React__default.ReactNode;
|
|
3717
|
-
}
|
|
3718
|
-
/**
|
|
3719
|
-
* Material Design 3 Badge Component Props
|
|
3720
|
-
*
|
|
3721
|
-
* Composes `BadgeHeadless` (structure) + `BadgeContent` (indicator).
|
|
3722
|
-
*
|
|
3723
|
-
* @example
|
|
3724
|
-
* ```tsx
|
|
3725
|
-
* // Dot badge (no count)
|
|
3726
|
-
* <Badge>
|
|
3727
|
-
* <IconButton icon={<BellIcon />} aria-label="Notifications" />
|
|
3728
|
-
* </Badge>
|
|
3729
|
-
*
|
|
3730
|
-
* // Count badge
|
|
3731
|
-
* <Badge count={3}>
|
|
3732
|
-
* <IconButton icon={<BellIcon />} aria-label="Notifications" />
|
|
3733
|
-
* </Badge>
|
|
3734
|
-
*
|
|
3735
|
-
* // Capped count
|
|
3736
|
-
* <Badge count={1200} max={99}>
|
|
3737
|
-
* <IconButton icon={<MailIcon />} aria-label="Messages" />
|
|
3738
|
-
* </Badge>
|
|
3739
|
-
*
|
|
3740
|
-
* // Primary color
|
|
3741
|
-
* <Badge count={5} color="primary">
|
|
3742
|
-
* <IconButton icon={<BellIcon />} aria-label="Alerts" />
|
|
3743
|
-
* </Badge>
|
|
3744
|
-
* ```
|
|
3745
|
-
*/
|
|
3746
|
-
interface BadgeProps {
|
|
3747
|
-
/**
|
|
3748
|
-
* Numeric count to display. When omitted, renders a dot indicator.
|
|
3749
|
-
*/
|
|
3750
|
-
count?: number;
|
|
3751
|
-
/**
|
|
3752
|
-
* Maximum displayable count. Values exceeding this render as `"${max}+"`.
|
|
3753
|
-
* @default 999
|
|
3754
|
-
*/
|
|
3755
|
-
max?: number;
|
|
3756
|
-
/**
|
|
3757
|
-
* Badge color role mapped to MD3 design tokens.
|
|
3758
|
-
* @default 'error'
|
|
3759
|
-
*/
|
|
3760
|
-
color?: BadgeColor;
|
|
3761
|
-
/**
|
|
3762
|
-
* When `true`, hides the badge indicator.
|
|
3763
|
-
* Also hides when `count` is `0`.
|
|
3764
|
-
* @default false
|
|
3765
|
-
*/
|
|
3766
|
-
invisible?: boolean;
|
|
3767
|
-
/**
|
|
3768
|
-
* Accessible label override for the badge indicator.
|
|
3769
|
-
*/
|
|
3770
|
-
"aria-label"?: string;
|
|
3771
|
-
/**
|
|
3772
|
-
* Additional CSS classes merged via `cn()`.
|
|
3773
|
-
*/
|
|
3774
|
-
className?: string;
|
|
3775
|
-
/**
|
|
3776
|
-
* The host element to badge — typically an icon, IconButton, or avatar.
|
|
3777
|
-
*/
|
|
3778
|
-
children: React__default.ReactNode;
|
|
3779
|
-
}
|
|
3780
|
-
|
|
3781
3650
|
/**
|
|
3782
3651
|
* Structural variant of the Navigation Drawer.
|
|
3783
3652
|
*
|
|
@@ -3796,8 +3665,6 @@ type DrawerVariant = "standard" | "modal";
|
|
|
3796
3665
|
interface DrawerItemBadgeConfig {
|
|
3797
3666
|
/** Numeric count to display. Omit for a dot indicator. */
|
|
3798
3667
|
count?: number;
|
|
3799
|
-
/** Badge color role. @default 'error' */
|
|
3800
|
-
color?: BadgeColor;
|
|
3801
3668
|
}
|
|
3802
3669
|
/**
|
|
3803
3670
|
* Material Design 3 Navigation Drawer props.
|
|
@@ -3920,8 +3787,8 @@ interface DrawerItemProps extends AriaButtonProps, Pick<AriaLinkOptions, "href">
|
|
|
3920
3787
|
* // ReactNode badge (backward compatible)
|
|
3921
3788
|
* <DrawerItem label="Inbox" badge={<span>3</span>} />
|
|
3922
3789
|
*
|
|
3923
|
-
* // Config badge (renders Badge component)
|
|
3924
|
-
* <DrawerItem label="Inbox" badge={{ count: 3
|
|
3790
|
+
* // Config badge (renders Badge component using MD3 error color role)
|
|
3791
|
+
* <DrawerItem label="Inbox" badge={{ count: 3 }} />
|
|
3925
3792
|
* ```
|
|
3926
3793
|
*/
|
|
3927
3794
|
badge?: ReactNode | DrawerItemBadgeConfig;
|
|
@@ -4139,7 +4006,7 @@ declare const Drawer: React__default.ForwardRefExoticComponent<DrawerProps & Rea
|
|
|
4139
4006
|
* - Ripple effect on interaction
|
|
4140
4007
|
* - Hover/focus/pressed state layers (MD3 spec: 8% / 12%)
|
|
4141
4008
|
* - Optional leading icon (24dp slot)
|
|
4142
|
-
* - Optional trailing badge — `ReactNode` or `{ count
|
|
4009
|
+
* - Optional trailing badge — `ReactNode` or `{ count }` config
|
|
4143
4010
|
* - Icon-only mode: label hidden, `title` tooltip via `DrawerIconOnlyContext`
|
|
4144
4011
|
* - Disabled state: `opacity-38`, non-interactive
|
|
4145
4012
|
*
|
|
@@ -4148,8 +4015,8 @@ declare const Drawer: React__default.ForwardRefExoticComponent<DrawerProps & Rea
|
|
|
4148
4015
|
* // Active item with icon
|
|
4149
4016
|
* <DrawerItem icon={<HomeIcon />} label="Home" isActive onPress={() => navigate('/')} />
|
|
4150
4017
|
*
|
|
4151
|
-
* // Item with Badge config
|
|
4152
|
-
* <DrawerItem label="Inbox" badge={{ count: 5
|
|
4018
|
+
* // Item with Badge config (uses MD3 error color role)
|
|
4019
|
+
* <DrawerItem label="Inbox" badge={{ count: 5 }} />
|
|
4153
4020
|
*
|
|
4154
4021
|
* // Disabled
|
|
4155
4022
|
* <DrawerItem label="Disabled Feature" isDisabled />
|
|
@@ -7681,6 +7548,118 @@ declare const searchViewHeaderVariants: (props?: ({
|
|
|
7681
7548
|
layout?: "fullscreen" | "docked" | null | undefined;
|
|
7682
7549
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7683
7550
|
|
|
7551
|
+
/**
|
|
7552
|
+
* Props for the BadgeContent indicator element.
|
|
7553
|
+
*
|
|
7554
|
+
* Renders either a small dot (no count) or a count pill (with count).
|
|
7555
|
+
*/
|
|
7556
|
+
interface BadgeContentProps {
|
|
7557
|
+
/**
|
|
7558
|
+
* Numeric count to display. When omitted, renders a small dot indicator.
|
|
7559
|
+
*/
|
|
7560
|
+
count?: number | undefined;
|
|
7561
|
+
/**
|
|
7562
|
+
* Maximum displayable count. Values exceeding this render as `"${max}+"`.
|
|
7563
|
+
* @default 999
|
|
7564
|
+
*/
|
|
7565
|
+
max?: number;
|
|
7566
|
+
/**
|
|
7567
|
+
* Whether the badge is invisible (scale-0).
|
|
7568
|
+
* @default false
|
|
7569
|
+
*/
|
|
7570
|
+
invisible?: boolean;
|
|
7571
|
+
/**
|
|
7572
|
+
* Accessible label override. Defaults to `"New"` for dot badges
|
|
7573
|
+
* or `"${count} notifications"` for count badges.
|
|
7574
|
+
*/
|
|
7575
|
+
"aria-label"?: string | undefined;
|
|
7576
|
+
/**
|
|
7577
|
+
* Whether to skip transition animations (reduced motion).
|
|
7578
|
+
* @default false
|
|
7579
|
+
*/
|
|
7580
|
+
reducedMotion?: boolean;
|
|
7581
|
+
/**
|
|
7582
|
+
* Additional CSS classes merged via `cn()`.
|
|
7583
|
+
*/
|
|
7584
|
+
className?: string;
|
|
7585
|
+
}
|
|
7586
|
+
/**
|
|
7587
|
+
* Props for the headless Badge wrapper.
|
|
7588
|
+
*
|
|
7589
|
+
* Provides the structural `relative inline-flex` container that positions
|
|
7590
|
+
* the badge indicator absolutely over the host element.
|
|
7591
|
+
*/
|
|
7592
|
+
interface BadgeHeadlessProps {
|
|
7593
|
+
/**
|
|
7594
|
+
* Whether the badge indicator is invisible.
|
|
7595
|
+
*/
|
|
7596
|
+
invisible?: boolean;
|
|
7597
|
+
/**
|
|
7598
|
+
* Accessible label for the badge region.
|
|
7599
|
+
*/
|
|
7600
|
+
"aria-label"?: string;
|
|
7601
|
+
/**
|
|
7602
|
+
* Additional CSS classes merged via `cn()`.
|
|
7603
|
+
*/
|
|
7604
|
+
className?: string | undefined;
|
|
7605
|
+
/**
|
|
7606
|
+
* The host element(s) to badge — typically an icon, IconButton, or avatar.
|
|
7607
|
+
*/
|
|
7608
|
+
children?: React__default.ReactNode;
|
|
7609
|
+
}
|
|
7610
|
+
/**
|
|
7611
|
+
* Material Design 3 Badge Component Props
|
|
7612
|
+
*
|
|
7613
|
+
* Composes `BadgeHeadless` (structure) + `BadgeContent` (indicator).
|
|
7614
|
+
*
|
|
7615
|
+
* @example
|
|
7616
|
+
* ```tsx
|
|
7617
|
+
* // Dot badge (no count)
|
|
7618
|
+
* <Badge>
|
|
7619
|
+
* <IconButton icon={<BellIcon />} aria-label="Notifications" />
|
|
7620
|
+
* </Badge>
|
|
7621
|
+
*
|
|
7622
|
+
* // Count badge
|
|
7623
|
+
* <Badge count={3}>
|
|
7624
|
+
* <IconButton icon={<BellIcon />} aria-label="Notifications" />
|
|
7625
|
+
* </Badge>
|
|
7626
|
+
*
|
|
7627
|
+
* // Capped count
|
|
7628
|
+
* <Badge count={1200} max={99}>
|
|
7629
|
+
* <IconButton icon={<MailIcon />} aria-label="Messages" />
|
|
7630
|
+
* </Badge>
|
|
7631
|
+
* ```
|
|
7632
|
+
*/
|
|
7633
|
+
interface BadgeProps {
|
|
7634
|
+
/**
|
|
7635
|
+
* Numeric count to display. When omitted, renders a dot indicator.
|
|
7636
|
+
*/
|
|
7637
|
+
count?: number;
|
|
7638
|
+
/**
|
|
7639
|
+
* Maximum displayable count. Values exceeding this render as `"${max}+"`.
|
|
7640
|
+
* @default 999
|
|
7641
|
+
*/
|
|
7642
|
+
max?: number;
|
|
7643
|
+
/**
|
|
7644
|
+
* When `true`, hides the badge indicator.
|
|
7645
|
+
* Also hides when `count` is `0`.
|
|
7646
|
+
* @default false
|
|
7647
|
+
*/
|
|
7648
|
+
invisible?: boolean;
|
|
7649
|
+
/**
|
|
7650
|
+
* Accessible label override for the badge indicator.
|
|
7651
|
+
*/
|
|
7652
|
+
"aria-label"?: string;
|
|
7653
|
+
/**
|
|
7654
|
+
* Additional CSS classes merged via `cn()`.
|
|
7655
|
+
*/
|
|
7656
|
+
className?: string;
|
|
7657
|
+
/**
|
|
7658
|
+
* The host element to badge — typically an icon, IconButton, or avatar.
|
|
7659
|
+
*/
|
|
7660
|
+
children: React__default.ReactNode;
|
|
7661
|
+
}
|
|
7662
|
+
|
|
7684
7663
|
/**
|
|
7685
7664
|
* Material Design 3 Badge Component (Layer 3: Styled)
|
|
7686
7665
|
*
|
|
@@ -7688,8 +7667,8 @@ declare const searchViewHeaderVariants: (props?: ({
|
|
|
7688
7667
|
* (dot or count indicator). Automatically hides the badge when
|
|
7689
7668
|
* `count` is `0` or `invisible` is `true`.
|
|
7690
7669
|
*
|
|
7691
|
-
* Respects `prefers-reduced-motion` —
|
|
7692
|
-
* the user has requested reduced motion.
|
|
7670
|
+
* Respects `prefers-reduced-motion` — the scale transition is omitted
|
|
7671
|
+
* when the user has requested reduced motion.
|
|
7693
7672
|
*
|
|
7694
7673
|
* @example
|
|
7695
7674
|
* ```tsx
|
|
@@ -7732,30 +7711,39 @@ declare const BadgeHeadless: React$1.ForwardRefExoticComponent<BadgeHeadlessProp
|
|
|
7732
7711
|
* Badge Content Indicator
|
|
7733
7712
|
*
|
|
7734
7713
|
* Renders the badge's visual element — either a small dot (no count)
|
|
7735
|
-
* or a count pill. Applies
|
|
7714
|
+
* or a count pill. Applies the `badgeVariants` base classes and sets
|
|
7715
|
+
* content/visibility data flags directly on the element.
|
|
7716
|
+
*
|
|
7717
|
+
* Content flags (structural — not interaction state):
|
|
7718
|
+
* `data-dot` → element is a dot badge (no count)
|
|
7719
|
+
* `data-invisible` → element is hidden (scale-0)
|
|
7720
|
+
*
|
|
7721
|
+
* Motion:
|
|
7722
|
+
* `transition-transform duration-expressive-fast-spatial ease-expressive-fast-spatial`
|
|
7723
|
+
* is applied when `reducedMotion` is false (component-level guard, per
|
|
7724
|
+
* md3-motion.mdc: JS-driven animations must guard at the component level).
|
|
7736
7725
|
*
|
|
7737
7726
|
* Uses `role="status"` so screen readers announce changes to the count.
|
|
7738
7727
|
*/
|
|
7739
7728
|
declare const BadgeContent: React$1.ForwardRefExoticComponent<BadgeContentProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
7740
7729
|
|
|
7741
7730
|
/**
|
|
7742
|
-
*
|
|
7731
|
+
* Anchored indicator element — badge center straddles the wrapped host's
|
|
7732
|
+
* top-right corner via `top-0 right-0 -translate-y-1/2 translate-x-1/2`.
|
|
7743
7733
|
*
|
|
7744
|
-
*
|
|
7745
|
-
*
|
|
7746
|
-
*
|
|
7747
|
-
*
|
|
7748
|
-
*
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7756
|
-
/**
|
|
7757
|
-
* Extract variant prop types from CVA
|
|
7734
|
+
* Use this variant (via `BadgeContent`) when the badge wraps an icon element
|
|
7735
|
+
* (e.g. a 24dp icon span, an IconButton) and needs to overlay its corner.
|
|
7736
|
+
*
|
|
7737
|
+
* Content flags (set explicitly by BadgeContent, never by this CVA):
|
|
7738
|
+
* `data-dot` → element has no count; renders as 6dp dot
|
|
7739
|
+
* `data-invisible` → element is hidden (scale-0); runtime show/hide control
|
|
7740
|
+
*
|
|
7741
|
+
* Visibility uses scale only (not scale + opacity) per the MD3 Expressive
|
|
7742
|
+
* scale-in/out pattern for small components. The transition-transform class
|
|
7743
|
+
* is applied conditionally by the component (outside CVA) to allow a
|
|
7744
|
+
* component-level reduced-motion guard.
|
|
7758
7745
|
*/
|
|
7746
|
+
declare const badgeVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
7759
7747
|
type BadgeVariants = VariantProps<typeof badgeVariants>;
|
|
7760
7748
|
|
|
7761
7749
|
/**
|
|
@@ -10990,4 +10978,4 @@ type DatePickerSupportingTextVariants = VariantProps<typeof datePickerSupporting
|
|
|
10990
10978
|
declare const datePickerScrimVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
10991
10979
|
type DatePickerScrimVariants = VariantProps<typeof datePickerScrimVariants>;
|
|
10992
10980
|
|
|
10993
|
-
export { AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge,
|
|
10981
|
+
export { 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 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 };
|