@tinybigui/react 0.19.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/README.md +17 -17
- package/dist/index.cjs +746 -201
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +242 -69
- package/dist/index.d.ts +242 -69
- package/dist/index.js +739 -200
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5477,10 +5477,19 @@ type SnackbarSeverity = "default" | "error";
|
|
|
5477
5477
|
/**
|
|
5478
5478
|
* Internal animation state machine for the Snackbar.
|
|
5479
5479
|
*
|
|
5480
|
-
* - `entering` →
|
|
5481
|
-
* - `visible` →
|
|
5482
|
-
*
|
|
5480
|
+
* - `entering` → initial paint: opacity-0 + directional translate offset (no duration)
|
|
5481
|
+
* - `visible` → slide in + fade in: translate-y-0 + opacity-100
|
|
5482
|
+
* (spring-standard-default-effects = 200ms, no overshoot)
|
|
5483
|
+
* - `exiting` → slide out + fade out: offset + opacity-0
|
|
5484
|
+
* (spring-standard-fast-effects = 150ms)
|
|
5483
5485
|
* - `exited` → removed from DOM / stack updated
|
|
5486
|
+
*
|
|
5487
|
+
* The translate direction is position-aware:
|
|
5488
|
+
* bottom positions → slide up from below (translate-y-3 → translate-y-0)
|
|
5489
|
+
* top positions → slide down from above (-translate-y-3 → translate-y-0)
|
|
5490
|
+
*
|
|
5491
|
+
* When `prefers-reduced-motion` is active, the translate offset is suppressed
|
|
5492
|
+
* and only opacity transitions (fade-only).
|
|
5484
5493
|
*/
|
|
5485
5494
|
type SnackbarAnimationState = "entering" | "visible" | "exiting" | "exited";
|
|
5486
5495
|
/**
|
|
@@ -5679,14 +5688,23 @@ interface SnackbarProviderProps {
|
|
|
5679
5688
|
* Renders one of four MD3 Snackbar content configurations:
|
|
5680
5689
|
* 1. Single-line message only
|
|
5681
5690
|
* 2. Two-line message + `supportingText`
|
|
5682
|
-
* 3. Single-line with text `action` button (styled
|
|
5683
|
-
* `inverse-primary` color per MD3 spec)
|
|
5691
|
+
* 3. Single-line with text `action` button (styled with `inverse-primary` per MD3 spec)
|
|
5684
5692
|
* 4. Single-line with close icon (or combined with action)
|
|
5685
5693
|
*
|
|
5686
5694
|
* Uses `SnackbarHeadless` for all behavioral concerns (ARIA live region,
|
|
5687
5695
|
* auto-dismiss timer with pause/resume, animation state machine) and CVA
|
|
5688
5696
|
* variants for MD3-compliant visual styling.
|
|
5689
5697
|
*
|
|
5698
|
+
* **Motion**: Position-aware slide + fade using spring-standard effects tokens.
|
|
5699
|
+
* Automatically respects `prefers-reduced-motion` (fade-only when reduced motion
|
|
5700
|
+
* is preferred — no translate offset).
|
|
5701
|
+
*
|
|
5702
|
+
* **State layers**: Dedicated slot components (`SnackbarActionButton`,
|
|
5703
|
+
* `SnackbarCloseButton`) replace the shared `Button`/`IconButton` components.
|
|
5704
|
+
* This ensures the state-layer colors are MD3-correct on an `inverse-surface`:
|
|
5705
|
+
* - Action button state layer: `bg-inverse-primary`
|
|
5706
|
+
* - Close button state layer: `bg-inverse-on-surface`
|
|
5707
|
+
*
|
|
5690
5708
|
* For typical app usage, render inside `SnackbarProvider` and trigger via
|
|
5691
5709
|
* the `useSnackbar` hook. For declarative/test usage, it can be rendered
|
|
5692
5710
|
* standalone.
|
|
@@ -8219,16 +8237,28 @@ declare const badgeVariants: (props?: class_variance_authority_types.ClassProp |
|
|
|
8219
8237
|
type BadgeVariants = VariantProps<typeof badgeVariants>;
|
|
8220
8238
|
|
|
8221
8239
|
/**
|
|
8222
|
-
* Split Button variant types (Material Design 3).
|
|
8240
|
+
* Split Button variant types (Material Design 3 Expressive).
|
|
8223
8241
|
*
|
|
8224
|
-
* Split buttons
|
|
8225
|
-
* per the MD3
|
|
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
|
|
8226
8246
|
*/
|
|
8227
|
-
type SplitButtonVariant = "filled" | "tonal" | "outlined";
|
|
8247
|
+
type SplitButtonVariant = "elevated" | "filled" | "tonal" | "outlined";
|
|
8228
8248
|
/**
|
|
8229
|
-
* 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'
|
|
8230
8260
|
*/
|
|
8231
|
-
type SplitButtonSize = "
|
|
8261
|
+
type SplitButtonSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
8232
8262
|
/**
|
|
8233
8263
|
* Represents a single item in the split button dropdown menu.
|
|
8234
8264
|
*
|
|
@@ -8254,9 +8284,9 @@ interface SplitButtonMenuItem {
|
|
|
8254
8284
|
/**
|
|
8255
8285
|
* Props for the headless `SplitButtonHeadless` primitive (Layer 2).
|
|
8256
8286
|
*
|
|
8257
|
-
* A Split Button groups a
|
|
8258
|
-
* secondary actions in a menu. Both segments are
|
|
8259
|
-
* 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.
|
|
8260
8290
|
*
|
|
8261
8291
|
* @example
|
|
8262
8292
|
* ```tsx
|
|
@@ -8277,15 +8307,15 @@ interface SplitButtonHeadlessProps {
|
|
|
8277
8307
|
*/
|
|
8278
8308
|
variant?: SplitButtonVariant;
|
|
8279
8309
|
/**
|
|
8280
|
-
* Size of the split button.
|
|
8281
|
-
* @default '
|
|
8310
|
+
* Size of the split button per the MD3 Expressive size scale.
|
|
8311
|
+
* @default 'sm'
|
|
8282
8312
|
*/
|
|
8283
8313
|
size?: SplitButtonSize;
|
|
8284
|
-
/** Label text displayed in the
|
|
8314
|
+
/** Label text displayed in the leading action segment. */
|
|
8285
8315
|
primaryLabel: string;
|
|
8286
|
-
/** Callback invoked when the
|
|
8316
|
+
/** Callback invoked when the leading action segment is pressed. */
|
|
8287
8317
|
onPrimaryAction: (e: PressEvent) => void;
|
|
8288
|
-
/** Menu items displayed in the dropdown when the trigger is activated. */
|
|
8318
|
+
/** Menu items displayed in the dropdown when the trailing trigger is activated. */
|
|
8289
8319
|
items: SplitButtonMenuItem[];
|
|
8290
8320
|
/**
|
|
8291
8321
|
* Whether both segments are disabled.
|
|
@@ -8301,29 +8331,40 @@ interface SplitButtonHeadlessProps {
|
|
|
8301
8331
|
* Props for the styled `SplitButton` component (Layer 3).
|
|
8302
8332
|
*
|
|
8303
8333
|
* Extends the headless props with identical API surface; the styled layer
|
|
8304
|
-
* applies MD3 visual tokens and CVA variants on top of the
|
|
8334
|
+
* applies MD3 Expressive visual tokens and CVA variants on top of the
|
|
8335
|
+
* headless primitive.
|
|
8305
8336
|
*/
|
|
8306
8337
|
type SplitButtonProps = SplitButtonHeadlessProps;
|
|
8307
8338
|
|
|
8308
8339
|
/**
|
|
8309
|
-
* Material Design 3 Split Button Component (Layer 3: Styled)
|
|
8340
|
+
* Material Design 3 Expressive Split Button Component (Layer 3: Styled)
|
|
8310
8341
|
*
|
|
8311
|
-
* Combines a
|
|
8312
|
-
* secondary actions in a menu. Both segments
|
|
8313
|
-
*
|
|
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.
|
|
8314
8349
|
*
|
|
8315
8350
|
* Features:
|
|
8316
|
-
* -
|
|
8317
|
-
* -
|
|
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)
|
|
8318
8356
|
* - Ripple effect on both segments
|
|
8357
|
+
* - Inner-corner shape morphing on interaction (MD3 Expressive signature)
|
|
8358
|
+
* - 2dp gap between segments per MD3 spec
|
|
8319
8359
|
* - Chevron rotation animation on menu open
|
|
8320
|
-
* -
|
|
8360
|
+
* - useReducedMotion guard on all JS-driven transitions
|
|
8321
8361
|
* - Full keyboard accessibility via React Aria
|
|
8322
8362
|
*
|
|
8323
8363
|
* @example
|
|
8324
8364
|
* ```tsx
|
|
8325
8365
|
* <SplitButton
|
|
8326
8366
|
* variant="filled"
|
|
8367
|
+
* size="sm"
|
|
8327
8368
|
* primaryLabel="Save"
|
|
8328
8369
|
* onPrimaryAction={() => console.log('saved')}
|
|
8329
8370
|
* items={[
|
|
@@ -8342,12 +8383,12 @@ declare const SplitButton: React$1.ForwardRefExoticComponent<SplitButtonHeadless
|
|
|
8342
8383
|
* Provides behavior only — bring your own styles.
|
|
8343
8384
|
*
|
|
8344
8385
|
* Structure:
|
|
8345
|
-
* -
|
|
8346
|
-
* -
|
|
8347
|
-
*
|
|
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)
|
|
8348
8389
|
*
|
|
8349
8390
|
* Both segments are independently focusable via Tab navigation.
|
|
8350
|
-
* The
|
|
8391
|
+
* The trailing trigger manages `aria-haspopup` and `aria-expanded`.
|
|
8351
8392
|
*
|
|
8352
8393
|
* @example
|
|
8353
8394
|
* ```tsx
|
|
@@ -8364,60 +8405,192 @@ declare const SplitButton: React$1.ForwardRefExoticComponent<SplitButtonHeadless
|
|
|
8364
8405
|
declare const SplitButtonHeadless: React$1.ForwardRefExoticComponent<SplitButtonHeadlessProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8365
8406
|
|
|
8366
8407
|
/**
|
|
8367
|
-
* Material Design 3 Split Button
|
|
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
|
|
8368
8438
|
*
|
|
8369
|
-
*
|
|
8370
|
-
*
|
|
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
|
|
8452
|
+
*
|
|
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.
|
|
8371
8460
|
*/
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
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;
|
|
8376
8480
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8377
8481
|
/**
|
|
8378
|
-
*
|
|
8482
|
+
* Trailing segment — the dropdown trigger.
|
|
8379
8483
|
*
|
|
8380
|
-
*
|
|
8381
|
-
*
|
|
8382
|
-
*
|
|
8383
|
-
* 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).
|
|
8384
8487
|
*/
|
|
8385
|
-
declare const
|
|
8386
|
-
variant?: "filled" | "outlined" | "tonal" | null | undefined;
|
|
8387
|
-
size?: "
|
|
8488
|
+
declare const splitButtonTrailingVariants: (props?: ({
|
|
8489
|
+
variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
|
|
8490
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
8388
8491
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8389
8492
|
/**
|
|
8390
|
-
*
|
|
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).
|
|
8391
8497
|
*
|
|
8392
|
-
*
|
|
8393
|
-
*
|
|
8394
|
-
*
|
|
8395
|
-
*
|
|
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
|
|
8506
|
+
*
|
|
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.
|
|
8396
8511
|
*/
|
|
8397
|
-
declare const
|
|
8398
|
-
variant?: "filled" | "outlined" | "tonal" | null | undefined;
|
|
8399
|
-
|
|
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;
|
|
8400
8559
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8401
8560
|
type SplitButtonContainerVariants = VariantProps<typeof splitButtonContainerVariants>;
|
|
8402
|
-
type
|
|
8403
|
-
type
|
|
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>;
|
|
8404
8567
|
/**
|
|
8405
|
-
* Convenience bundle of all
|
|
8406
|
-
* Useful for consumers that want a single import point.
|
|
8568
|
+
* Convenience bundle of all Split Button CVA functions.
|
|
8407
8569
|
*/
|
|
8408
8570
|
declare const splitButtonVariants: {
|
|
8409
|
-
container: (props?:
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
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;
|
|
8413
8579
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8414
|
-
|
|
8415
|
-
variant?: "filled" | "outlined" | "tonal" | null | undefined;
|
|
8416
|
-
|
|
8580
|
+
stateLayer: (props?: ({
|
|
8581
|
+
variant?: "filled" | "outlined" | "tonal" | "elevated" | null | undefined;
|
|
8582
|
+
groupScope?: "leading" | "trailing" | null | undefined;
|
|
8417
8583
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
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;
|
|
8421
8594
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8422
8595
|
};
|
|
8423
8596
|
|
|
@@ -12077,4 +12250,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
|
|
|
12077
12250
|
declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
12078
12251
|
type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
|
|
12079
12252
|
|
|
12080
|
-
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 };
|