@tinybigui/react 0.20.0 → 0.21.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
@@ -8237,16 +8237,28 @@ declare const badgeVariants: (props?: class_variance_authority_types.ClassProp |
8237
8237
  type BadgeVariants = VariantProps<typeof badgeVariants>;
8238
8238
 
8239
8239
  /**
8240
- * Split Button variant types (Material Design 3).
8240
+ * Split Button variant types (Material Design 3 Expressive).
8241
8241
  *
8242
- * Split buttons only support filled, tonal, and outlined variants
8243
- * per the MD3 specification.
8242
+ * Split buttons support elevated, filled, tonal, and outlined variants,
8243
+ * mirroring the standard Button color schemes per the MD3 Expressive spec.
8244
+ *
8245
+ * @see https://m3.material.io/components/split-button/specs
8244
8246
  */
8245
- type SplitButtonVariant = "filled" | "tonal" | "outlined";
8247
+ type SplitButtonVariant = "elevated" | "filled" | "tonal" | "outlined";
8246
8248
  /**
8247
- * Split Button size options.
8249
+ * Split Button size options (MD3 Expressive size scale).
8250
+ *
8251
+ * | Token | Height | Typography |
8252
+ * |-------|--------|--------------------|
8253
+ * | xs | 32dp | Label Large |
8254
+ * | sm | 40dp | Label Large |
8255
+ * | md | 56dp | Title Medium |
8256
+ * | lg | 96dp | Headline Small |
8257
+ * | xl | 136dp | Headline Large |
8258
+ *
8259
+ * @default 'sm'
8248
8260
  */
8249
- type SplitButtonSize = "small" | "medium" | "large";
8261
+ type SplitButtonSize = "xs" | "sm" | "md" | "lg" | "xl";
8250
8262
  /**
8251
8263
  * Represents a single item in the split button dropdown menu.
8252
8264
  *
@@ -8272,9 +8284,9 @@ interface SplitButtonMenuItem {
8272
8284
  /**
8273
8285
  * Props for the headless `SplitButtonHeadless` primitive (Layer 2).
8274
8286
  *
8275
- * A Split Button groups a primary action with a dropdown trigger that reveals
8276
- * secondary actions in a menu. Both segments are independently focusable and
8277
- * accessible.
8287
+ * A Split Button groups a leading action button with a trailing dropdown
8288
+ * trigger that reveals secondary actions in a menu. Both segments are
8289
+ * independently focusable and accessible.
8278
8290
  *
8279
8291
  * @example
8280
8292
  * ```tsx
@@ -8295,15 +8307,15 @@ interface SplitButtonHeadlessProps {
8295
8307
  */
8296
8308
  variant?: SplitButtonVariant;
8297
8309
  /**
8298
- * Size of the split button.
8299
- * @default 'medium'
8310
+ * Size of the split button per the MD3 Expressive size scale.
8311
+ * @default 'sm'
8300
8312
  */
8301
8313
  size?: SplitButtonSize;
8302
- /** Label text displayed in the primary action segment. */
8314
+ /** Label text displayed in the leading action segment. */
8303
8315
  primaryLabel: string;
8304
- /** Callback invoked when the primary action segment is pressed. */
8316
+ /** Callback invoked when the leading action segment is pressed. */
8305
8317
  onPrimaryAction: (e: PressEvent) => void;
8306
- /** Menu items displayed in the dropdown when the trigger is activated. */
8318
+ /** Menu items displayed in the dropdown when the trailing trigger is activated. */
8307
8319
  items: SplitButtonMenuItem[];
8308
8320
  /**
8309
8321
  * Whether both segments are disabled.
@@ -8319,29 +8331,40 @@ interface SplitButtonHeadlessProps {
8319
8331
  * Props for the styled `SplitButton` component (Layer 3).
8320
8332
  *
8321
8333
  * Extends the headless props with identical API surface; the styled layer
8322
- * applies MD3 visual tokens and CVA variants on top of the headless primitive.
8334
+ * applies MD3 Expressive visual tokens and CVA variants on top of the
8335
+ * headless primitive.
8323
8336
  */
8324
8337
  type SplitButtonProps = SplitButtonHeadlessProps;
8325
8338
 
8326
8339
  /**
8327
- * Material Design 3 Split Button Component (Layer 3: Styled)
8340
+ * Material Design 3 Expressive Split Button Component (Layer 3: Styled)
8328
8341
  *
8329
- * Combines a primary action button with a dropdown trigger that reveals
8330
- * secondary actions in a menu. Both segments include MD3 state layers and
8331
- * ripple effects.
8342
+ * Combines a leading action button with a trailing dropdown trigger that reveals
8343
+ * secondary actions in a menu. Both segments have full MD3 Expressive state layers,
8344
+ * per-segment focus rings, and inner-corner shape morphing.
8345
+ *
8346
+ * Implements the Variants-vs-States architecture: all interaction states are
8347
+ * expressed as data-* attributes on each segment root and consumed by child
8348
+ * slots via group-data-[x]/sb-leading and group-data-[x]/sb-trailing selectors.
8332
8349
  *
8333
8350
  * Features:
8334
- * - 3 MD3 variants: filled, tonal, outlined
8335
- * - Per-segment state layers (hover 8%, focus/pressed 12%)
8351
+ * - 4 MD3 variants: elevated, filled, tonal, outlined
8352
+ * - 5 MD3 Expressive sizes: xs, sm, md, lg, xl
8353
+ * - Per-segment React Aria interaction tracking (hover, focus, press)
8354
+ * - Per-segment MD3 state layers (hover 8%, focus 10%, pressed 10%)
8355
+ * - Per-segment focus rings (extends outside overflow-hidden)
8336
8356
  * - Ripple effect on both segments
8357
+ * - Inner-corner shape morphing on interaction (MD3 Expressive signature)
8358
+ * - 2dp gap between segments per MD3 spec
8337
8359
  * - Chevron rotation animation on menu open
8338
- * - Visual divider between segments per MD3 spec
8360
+ * - useReducedMotion guard on all JS-driven transitions
8339
8361
  * - Full keyboard accessibility via React Aria
8340
8362
  *
8341
8363
  * @example
8342
8364
  * ```tsx
8343
8365
  * <SplitButton
8344
8366
  * variant="filled"
8367
+ * size="sm"
8345
8368
  * primaryLabel="Save"
8346
8369
  * onPrimaryAction={() => console.log('saved')}
8347
8370
  * items={[
@@ -8360,12 +8383,12 @@ declare const SplitButton: React$1.ForwardRefExoticComponent<SplitButtonHeadless
8360
8383
  * Provides behavior only — bring your own styles.
8361
8384
  *
8362
8385
  * Structure:
8363
- * - Primary segment: triggers the main action
8364
- * - Divider: visual separator (1dp vertical line)
8365
- * - Dropdown trigger: opens/closes the dropdown menu
8386
+ * - Leading segment: triggers the main action
8387
+ * - Trailing segment: opens/closes the dropdown menu
8388
+ * (separated by a 2dp gap in the styled layer; no divider element here)
8366
8389
  *
8367
8390
  * Both segments are independently focusable via Tab navigation.
8368
- * The dropdown trigger manages `aria-haspopup` and `aria-expanded`.
8391
+ * The trailing trigger manages `aria-haspopup` and `aria-expanded`.
8369
8392
  *
8370
8393
  * @example
8371
8394
  * ```tsx
@@ -8382,60 +8405,192 @@ declare const SplitButton: React$1.ForwardRefExoticComponent<SplitButtonHeadless
8382
8405
  declare const SplitButtonHeadless: React$1.ForwardRefExoticComponent<SplitButtonHeadlessProps & React$1.RefAttributes<HTMLDivElement>>;
8383
8406
 
8384
8407
  /**
8385
- * Material Design 3 Split Button — Container Variants (CVA)
8408
+ * Material Design 3 Expressive Split Button Variants
8409
+ *
8410
+ * Architecture: Variants vs States
8411
+ * - CVA holds design-time structure only (no disabled/pressed/hovered state variants).
8412
+ * - All interaction states are driven by data-* attributes on each segment's root via
8413
+ * group-data-[x]/sb-leading and group-data-[x]/sb-trailing Tailwind selectors.
8414
+ * - Inner-corner radius morphing is driven by a CSS variable (--sb-inner-radius) on
8415
+ * the segment root to avoid specificity battles — the same technique as Switch's
8416
+ * --switch-handle-size.
8417
+ *
8418
+ * Slot responsibilities:
8419
+ * splitButtonContainerVariants — outer wrapper; gap between the two segments
8420
+ * splitButtonLeadingVariants — leading (primary) button segment; shape + color
8421
+ * splitButtonTrailingVariants — trailing (dropdown trigger) button segment; shape + color
8422
+ * splitButtonStateLayerVariants — per-segment hover/focus/press opacity overlay
8423
+ * splitButtonFocusRingVariants — per-segment keyboard focus outline (extends outside overflow-hidden)
8424
+ * splitButtonLabelVariants — leading label text slot
8425
+ * splitButtonIconVariants — icon wrapper; carries per-size optical offset + selected reset
8426
+ * splitButtonMenuVariants — dropdown menu surface
8427
+ * splitButtonMenuItemVariants — individual menu item row
8428
+ *
8429
+ * MD3 Expressive Specs:
8430
+ * Shape: outer corners rounded-full; inner corners morph on interaction
8431
+ * Height: 32dp xs | 40dp sm | 56dp md | 96dp lg | 136dp xl
8432
+ * Trailing segment is always square (width = height); selected state = perfect circle
8433
+ * Gap between segments: 2dp (gap-0.5)
8434
+ * Icon size: 20px xs/sm | 24px md | 32px lg | 40px xl
8435
+ * State-layer opacities: hover 8% | focus 10% | pressed 10%
8436
+ * Disabled: container on-surface/12 | content on-surface/38
8437
+ * Elevation: elevated base=1 hover=2; filled/tonal base=0 hover=1; outlined none
8438
+ *
8439
+ * Inner-corner radius morph table (--sb-inner-radius CSS variable):
8440
+ *
8441
+ * Size Rest Hover / Focus Pressed (stronger) Selected (trailing)
8442
+ * xs/sm/md --radius-xs --radius-sm --radius-lg --radius-full
8443
+ * lg --radius-sm --radius-lg --radius-xl --radius-full
8444
+ * xl --radius-md --radius-lg --radius-xl --radius-full
8445
+ *
8446
+ * Specificity ladder (CSS attribute selector weight, all at same cascade layer):
8447
+ * rest → [--sb-inner-radius:...] (0,0,0 base class)
8448
+ * hovered → data-[hovered]: (0,1,0)
8449
+ * focus-visible → data-[fv]:data-[fv]: (0,2,0)
8450
+ * pressed → data-[pressed]:data-[pressed]:data-[pressed]: (0,3,0)
8451
+ * selected → data-[sel]:data-[sel]:data-[sel]:data-[sel]: (0,4,0) — always wins
8386
8452
  *
8387
- * Defines the outer container styling for the split button group.
8388
- * Maps `variant`, `size`, and `isDisabled` to MD3 design tokens via Tailwind.
8453
+ * Motion token pairing:
8454
+ * Border-radius / transform (spatial) duration-expressive-fast-spatial ease-expressive-fast-spatial
8455
+ * Opacity / color / shadow (effects) → duration-spring-standard-fast-effects ease-spring-standard-fast-effects
8456
+ *
8457
+ * Chevron optical offset (MD3 spec — trailing icon shifts toward center gap when unselected):
8458
+ * xs/sm: -1dp md: -2dp lg: -3dp xl: -6dp
8459
+ * Resets to translate-x-0 when group-data-[selected]/sb-trailing is present.
8389
8460
  */
8390
- declare const splitButtonContainerVariants: (props?: ({
8391
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8392
- size?: "small" | "large" | "medium" | null | undefined;
8393
- isDisabled?: boolean | null | undefined;
8461
+ /**
8462
+ * Outer wrapper div lays out leading + trailing with a 2dp gap.
8463
+ * Does NOT own any color, shape, or elevation — those belong to each segment.
8464
+ */
8465
+ declare const splitButtonContainerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8466
+ /**
8467
+ * Leading segment — the primary action button.
8468
+ *
8469
+ * Shape:
8470
+ * outer corners (top-left, bottom-left) = rounded-full
8471
+ * inner corners (top-right, bottom-right) = var(--sb-inner-radius), driven by
8472
+ * self-targeting data-[x]: selectors on this element for the CSS variable.
8473
+ *
8474
+ * The doubled data-[x]:data-[x]: selector for pressed/focus achieves higher
8475
+ * specificity than single hover, mirroring the Switch handle-size technique.
8476
+ */
8477
+ declare const splitButtonLeadingVariants: (props?: ({
8478
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8479
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8394
8480
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8395
8481
  /**
8396
- * Material Design 3 Split Button Primary Segment Variants (CVA)
8482
+ * Trailing segmentthe dropdown trigger.
8397
8483
  *
8398
- * Applies text color, padding, and the Tailwind group name (`group/primary`)
8399
- * to the primary action segment. The group name is required so that the
8400
- * nested state-layer span can target `group-hover/primary:opacity-8`.
8401
- * The divider between segments is rendered via the dropdown's `border-l`.
8484
+ * Shape mirrors leading but mirrored: outer corners right, inner corners left.
8485
+ * Uses group/sb-trailing for child slot selectors.
8486
+ * Gets data-selected when the menu is open (icon centers per MD3 spec).
8402
8487
  */
8403
- declare const splitButtonPrimaryVariants: (props?: ({
8404
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8405
- size?: "small" | "large" | "medium" | null | undefined;
8488
+ declare const splitButtonTrailingVariants: (props?: ({
8489
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8490
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8406
8491
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8407
8492
  /**
8408
- * Material Design 3 Split Button Dropdown Trigger Variants (CVA)
8493
+ * Per-segment state layer absolute inset overlay that transitions opacity.
8494
+ *
8495
+ * overflow-hidden clips ripple + state layer to the button shape without
8496
+ * affecting the focus ring span (which lives outside this element).
8497
+ *
8498
+ * Color is variant-specific (MD3 "on-container" role):
8499
+ * filled → bg-on-primary
8500
+ * tonal → bg-on-secondary-container
8501
+ * outlined → bg-primary
8502
+ * elevated → bg-primary
8503
+ *
8504
+ * Opacities:
8505
+ * 0 at rest | 8% hover | 10% focus | 10% pressed | hidden disabled
8409
8506
  *
8410
- * Applies text color, padding, the visual divider (left border), and the
8411
- * Tailwind group name (`group/dropdown`) to the dropdown trigger segment.
8412
- * The group name is required so that the nested state-layer span can target
8413
- * `group-hover/dropdown:opacity-8`.
8507
+ * The doubled attribute selector for pressed gives it higher specificity (0,2,0)
8508
+ * than the single hover selector (0,1,0), ensuring pressed always wins.
8509
+ *
8510
+ * groupScope controls whether this reads from group/sb-leading or group/sb-trailing.
8414
8511
  */
8415
- declare const splitButtonDropdownVariants: (props?: ({
8416
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8417
- size?: "small" | "large" | "medium" | null | undefined;
8512
+ declare const splitButtonStateLayerVariants: (props?: ({
8513
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8514
+ groupScope?: "leading" | "trailing" | null | undefined;
8515
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8516
+ /**
8517
+ * Per-segment focus ring overlay.
8518
+ *
8519
+ * Rendered as an absolute span with inset-[-3px] so it extends 3px outside
8520
+ * the segment boundary. Requires that overflow-hidden is NOT on the segment
8521
+ * root — it is moved to the state-layer span instead.
8522
+ *
8523
+ * Always present in DOM (opacity-0 at rest) for smooth CSS transition.
8524
+ */
8525
+ declare const splitButtonFocusRingVariants: (props?: ({
8526
+ groupScope?: "leading" | "trailing" | null | undefined;
8527
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8528
+ /**
8529
+ * Label text wrapper — z-10 keeps it above state layer and ripple.
8530
+ * Typography is inherited from the leading segment's size class.
8531
+ */
8532
+ declare const splitButtonLabelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8533
+ /**
8534
+ * Icon wrapper (leading or trailing chevron).
8535
+ *
8536
+ * Size scales with the button size per MD3 spec:
8537
+ * xs/sm → 20px | md → 24px | lg → 32px | xl → 40px
8538
+ *
8539
+ * For the trailing chevron the MD3 spec calls for an optical offset toward the
8540
+ * gap between segments when the button is unselected, and resets to centered
8541
+ * when selected (menu open). The offset is applied as a negative translate-x
8542
+ * and reverted via group-data-[selected]/sb-trailing:translate-x-0.
8543
+ *
8544
+ * Chevron optical offsets (trailing only):
8545
+ * xs/sm: -1dp md: -2dp lg: -3dp xl: -6dp
8546
+ */
8547
+ declare const splitButtonIconVariants: (props?: ({
8548
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8549
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8550
+ /**
8551
+ * Dropdown menu surface — elevated container, positioned below the trailing segment.
8552
+ */
8553
+ declare const splitButtonMenuVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8554
+ /**
8555
+ * Individual menu item row.
8556
+ */
8557
+ declare const splitButtonMenuItemVariants: (props?: ({
8558
+ isDisabled?: boolean | null | undefined;
8418
8559
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8419
8560
  type SplitButtonContainerVariants = VariantProps<typeof splitButtonContainerVariants>;
8420
- type SplitButtonPrimaryVariants = VariantProps<typeof splitButtonPrimaryVariants>;
8421
- type SplitButtonDropdownVariants = VariantProps<typeof splitButtonDropdownVariants>;
8561
+ type SplitButtonLeadingVariants = VariantProps<typeof splitButtonLeadingVariants>;
8562
+ type SplitButtonTrailingVariants = VariantProps<typeof splitButtonTrailingVariants>;
8563
+ type SplitButtonStateLayerVariants = VariantProps<typeof splitButtonStateLayerVariants>;
8564
+ type SplitButtonFocusRingVariants = VariantProps<typeof splitButtonFocusRingVariants>;
8565
+ type SplitButtonIconVariants = VariantProps<typeof splitButtonIconVariants>;
8566
+ type SplitButtonMenuItemVariantProps = VariantProps<typeof splitButtonMenuItemVariants>;
8422
8567
  /**
8423
- * Convenience bundle of all three Split Button CVA functions.
8424
- * Useful for consumers that want a single import point.
8568
+ * Convenience bundle of all Split Button CVA functions.
8425
8569
  */
8426
8570
  declare const splitButtonVariants: {
8427
- container: (props?: ({
8428
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8429
- size?: "small" | "large" | "medium" | null | undefined;
8430
- isDisabled?: boolean | null | undefined;
8571
+ container: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8572
+ leading: (props?: ({
8573
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8574
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8575
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8576
+ trailing: (props?: ({
8577
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8578
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8431
8579
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8432
- primary: (props?: ({
8433
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8434
- size?: "small" | "large" | "medium" | null | undefined;
8580
+ stateLayer: (props?: ({
8581
+ variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
8582
+ groupScope?: "leading" | "trailing" | null | undefined;
8435
8583
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8436
- dropdown: (props?: ({
8437
- variant?: "filled" | "outlined" | "tonal" | null | undefined;
8438
- size?: "small" | "large" | "medium" | null | undefined;
8584
+ focusRing: (props?: ({
8585
+ groupScope?: "leading" | "trailing" | null | undefined;
8586
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8587
+ label: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8588
+ icon: (props?: ({
8589
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8590
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
8591
+ menu: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8592
+ menuItem: (props?: ({
8593
+ isDisabled?: boolean | null | undefined;
8439
8594
  } & class_variance_authority_types.ClassProp) | undefined) => string;
8440
8595
  };
8441
8596
 
@@ -12095,4 +12250,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
12095
12250
  declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
12096
12251
  type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
12097
12252
 
12098
- 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 };
12253
+ 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 SplitButtonFocusRingVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonIconVariants, type SplitButtonLeadingVariants, type SplitButtonMenuItem, type SplitButtonMenuItemVariantProps, type SplitButtonProps, type SplitButtonSize, type SplitButtonStateLayerVariants, type SplitButtonTrailingVariants, 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, splitButtonFocusRingVariants, splitButtonIconVariants, splitButtonLabelVariants, splitButtonLeadingVariants, splitButtonMenuItemVariants, splitButtonMenuVariants, splitButtonStateLayerVariants, splitButtonTrailingVariants, 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 };