@tinybigui/react 0.13.0 → 0.15.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 +18 -18
- package/dist/index.cjs +573 -419
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +147 -75
- package/dist/index.d.ts +147 -75
- package/dist/index.js +573 -419
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2004,24 +2004,16 @@ declare const FABHeadless: React$1.ForwardRefExoticComponent<FABHeadlessProps &
|
|
|
2004
2004
|
* TextField Type Definitions
|
|
2005
2005
|
*
|
|
2006
2006
|
* Type definitions for the Material Design 3 TextField component.
|
|
2007
|
-
* Supports
|
|
2007
|
+
* Supports filled and outlined variants with full accessibility via React Aria.
|
|
2008
2008
|
*/
|
|
2009
2009
|
|
|
2010
2010
|
/**
|
|
2011
|
-
* TextField visual variants
|
|
2011
|
+
* TextField visual variants.
|
|
2012
2012
|
*
|
|
2013
|
-
* - `filled`: Solid background with bottom border
|
|
2014
|
-
* - `outlined`:
|
|
2013
|
+
* - `filled`: Solid background (`surface-container-highest`) with active indicator bottom border.
|
|
2014
|
+
* - `outlined`: Transparent with a full rounded border and notched legend for the floating label.
|
|
2015
2015
|
*/
|
|
2016
2016
|
type TextFieldVariant = "filled" | "outlined";
|
|
2017
|
-
/**
|
|
2018
|
-
* TextField size variants
|
|
2019
|
-
*
|
|
2020
|
-
* - `small`: Compact height
|
|
2021
|
-
* - `medium`: Standard height (default)
|
|
2022
|
-
* - `large`: Larger height
|
|
2023
|
-
*/
|
|
2024
|
-
type TextFieldSize = "small" | "medium" | "large";
|
|
2025
2017
|
/**
|
|
2026
2018
|
* Arguments passed to the TextFieldHeadless render-prop children function.
|
|
2027
2019
|
*
|
|
@@ -2039,7 +2031,7 @@ interface TextFieldRenderProps {
|
|
|
2039
2031
|
errorMessageProps: HTMLAttributes<HTMLElement>;
|
|
2040
2032
|
/** Whether the field is currently in an invalid state */
|
|
2041
2033
|
isInvalid: boolean;
|
|
2042
|
-
/** Whether the input currently has focus (keyboard or pointer) */
|
|
2034
|
+
/** Whether the input currently has any focus (keyboard or pointer) */
|
|
2043
2035
|
isFocused: boolean;
|
|
2044
2036
|
/** Whether the input has keyboard-visible focus (for focus ring) */
|
|
2045
2037
|
isFocusVisible: boolean;
|
|
@@ -2049,67 +2041,67 @@ interface TextFieldRenderProps {
|
|
|
2049
2041
|
inputRef: RefObject<HTMLInputElement | HTMLTextAreaElement>;
|
|
2050
2042
|
}
|
|
2051
2043
|
/**
|
|
2052
|
-
* Props for the headless TextField component (Layer 2)
|
|
2044
|
+
* Props for the headless TextField component (Layer 2).
|
|
2053
2045
|
*
|
|
2054
2046
|
* Extends React Aria's AriaTextFieldProps for accessibility.
|
|
2055
2047
|
* Provides behavior without styling.
|
|
2056
2048
|
*/
|
|
2057
2049
|
interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "onFocus" | "onBlur"> {
|
|
2058
2050
|
/**
|
|
2059
|
-
* Label text for the input
|
|
2051
|
+
* Label text for the input.
|
|
2060
2052
|
*/
|
|
2061
2053
|
label?: string;
|
|
2062
2054
|
/**
|
|
2063
|
-
* Helper text displayed below the input
|
|
2055
|
+
* Helper text displayed below the input.
|
|
2064
2056
|
* @example "Enter your email address"
|
|
2065
2057
|
*/
|
|
2066
2058
|
description?: string;
|
|
2067
2059
|
/**
|
|
2068
|
-
* Error message to display when input is invalid
|
|
2060
|
+
* Error message to display when input is invalid.
|
|
2069
2061
|
* @example "Email is required"
|
|
2070
2062
|
*/
|
|
2071
2063
|
errorMessage?: string;
|
|
2072
2064
|
/**
|
|
2073
|
-
* Whether the input should expand to fill its container
|
|
2065
|
+
* Whether the input should expand to fill its container.
|
|
2074
2066
|
* @default false
|
|
2075
2067
|
*/
|
|
2076
2068
|
fullWidth?: boolean;
|
|
2077
2069
|
/**
|
|
2078
|
-
* Enable multiline mode (textarea)
|
|
2070
|
+
* Enable multiline mode (textarea).
|
|
2079
2071
|
* @default false
|
|
2080
2072
|
*/
|
|
2081
2073
|
multiline?: boolean;
|
|
2082
2074
|
/**
|
|
2083
|
-
* Number of visible rows for multiline input
|
|
2075
|
+
* Number of visible rows for multiline input.
|
|
2084
2076
|
* @default 3
|
|
2085
2077
|
*/
|
|
2086
2078
|
rows?: number;
|
|
2087
2079
|
/**
|
|
2088
|
-
* Custom className for the container
|
|
2080
|
+
* Custom className for the container.
|
|
2089
2081
|
*/
|
|
2090
2082
|
className?: string;
|
|
2091
2083
|
/**
|
|
2092
|
-
* Custom className for the input element
|
|
2084
|
+
* Custom className for the input element.
|
|
2093
2085
|
*/
|
|
2094
2086
|
inputClassName?: string;
|
|
2095
2087
|
/**
|
|
2096
|
-
* Custom className for the label element
|
|
2088
|
+
* Custom className for the label element.
|
|
2097
2089
|
*/
|
|
2098
2090
|
labelClassName?: string;
|
|
2099
2091
|
/**
|
|
2100
|
-
* Custom className for the description element
|
|
2092
|
+
* Custom className for the description element.
|
|
2101
2093
|
*/
|
|
2102
2094
|
descriptionClassName?: string;
|
|
2103
2095
|
/**
|
|
2104
|
-
* Custom className for the error message element
|
|
2096
|
+
* Custom className for the error message element.
|
|
2105
2097
|
*/
|
|
2106
2098
|
errorClassName?: string;
|
|
2107
2099
|
/**
|
|
2108
|
-
* Handler called when the input is focused
|
|
2100
|
+
* Handler called when the input is focused.
|
|
2109
2101
|
*/
|
|
2110
2102
|
onFocus?: (e: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
2111
2103
|
/**
|
|
2112
|
-
* Handler called when the input loses focus
|
|
2104
|
+
* Handler called when the input loses focus.
|
|
2113
2105
|
*/
|
|
2114
2106
|
onBlur?: (e: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
2115
2107
|
/**
|
|
@@ -2119,14 +2111,12 @@ interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "
|
|
|
2119
2111
|
* React Aria props and derived state so the styled layer can build its
|
|
2120
2112
|
* own MD3 DOM without duplicating accessibility wiring.
|
|
2121
2113
|
*
|
|
2122
|
-
* When omitted, the default accessible DOM (label + input + helper text) renders.
|
|
2123
|
-
*
|
|
2124
2114
|
* @example
|
|
2125
2115
|
* ```tsx
|
|
2126
2116
|
* <TextFieldHeadless label="Email" value={value} onChange={onChange}>
|
|
2127
2117
|
* {({ labelProps, inputProps, isFocused }) => (
|
|
2128
2118
|
* <div>
|
|
2129
|
-
* <label {...labelProps} className={
|
|
2119
|
+
* <label {...labelProps} className={isFocused ? 'focused' : ''}>Email</label>
|
|
2130
2120
|
* <input {...inputProps} className="md3-input" />
|
|
2131
2121
|
* </div>
|
|
2132
2122
|
* )}
|
|
@@ -2136,50 +2126,62 @@ interface TextFieldHeadlessProps extends Omit<AriaTextFieldProps, "children" | "
|
|
|
2136
2126
|
children?: ((renderProps: TextFieldRenderProps) => ReactNode) | ReactNode;
|
|
2137
2127
|
}
|
|
2138
2128
|
/**
|
|
2139
|
-
* Props for the styled TextField component (Layer 3)
|
|
2129
|
+
* Props for the styled TextField component (Layer 3).
|
|
2140
2130
|
*
|
|
2141
2131
|
* Extends TextFieldHeadlessProps with MD3 visual styling options.
|
|
2132
|
+
* Strictly follows MD3 spec: single fixed height (56dp), two variants,
|
|
2133
|
+
* optional icons, prefix/suffix affixes, and supporting text + counter row.
|
|
2142
2134
|
*/
|
|
2143
2135
|
interface TextFieldProps extends TextFieldHeadlessProps {
|
|
2144
2136
|
/**
|
|
2145
|
-
* Visual variant of the text field
|
|
2137
|
+
* Visual variant of the text field.
|
|
2146
2138
|
* @default 'filled'
|
|
2147
2139
|
*/
|
|
2148
2140
|
variant?: TextFieldVariant;
|
|
2149
2141
|
/**
|
|
2150
|
-
*
|
|
2151
|
-
*
|
|
2142
|
+
* Leading icon rendered at the start of the field.
|
|
2143
|
+
* MD3 Specification: icons should be 24×24dp.
|
|
2152
2144
|
*/
|
|
2153
|
-
|
|
2145
|
+
leadingIcon?: ReactNode;
|
|
2154
2146
|
/**
|
|
2155
|
-
*
|
|
2156
|
-
* MD3 Specification:
|
|
2147
|
+
* Trailing icon rendered at the end of the field.
|
|
2148
|
+
* MD3 Specification: icons should be 24×24dp.
|
|
2149
|
+
* Automatically colored `error` when the field is invalid.
|
|
2157
2150
|
*/
|
|
2158
|
-
|
|
2151
|
+
trailingIcon?: ReactNode;
|
|
2159
2152
|
/**
|
|
2160
|
-
*
|
|
2161
|
-
*
|
|
2153
|
+
* Inline prefix text rendered before the input value.
|
|
2154
|
+
* Only visible when the label is in its floating (small) position.
|
|
2155
|
+
* Useful for currency symbols, units, etc.
|
|
2156
|
+
* @example "$"
|
|
2162
2157
|
*/
|
|
2163
|
-
|
|
2158
|
+
prefix?: ReactNode;
|
|
2164
2159
|
/**
|
|
2165
|
-
*
|
|
2166
|
-
*
|
|
2160
|
+
* Inline suffix text rendered after the input value.
|
|
2161
|
+
* Only visible when the label is in its floating (small) position.
|
|
2162
|
+
* Useful for units, domain suffixes, etc.
|
|
2163
|
+
* @example "kg"
|
|
2164
|
+
*/
|
|
2165
|
+
suffix?: ReactNode;
|
|
2166
|
+
/**
|
|
2167
|
+
* Show character counter in the supporting row below the field.
|
|
2168
|
+
* Requires `maxLength` to be set.
|
|
2167
2169
|
* @default false
|
|
2168
2170
|
*/
|
|
2169
2171
|
characterCount?: boolean;
|
|
2170
2172
|
/**
|
|
2171
|
-
* Maximum number of characters allowed
|
|
2172
|
-
*
|
|
2173
|
+
* Maximum number of characters allowed.
|
|
2174
|
+
* Enforced on the native input and displayed in the counter when
|
|
2175
|
+
* `characterCount` is true.
|
|
2173
2176
|
*/
|
|
2174
2177
|
maxLength?: number;
|
|
2175
2178
|
}
|
|
2176
2179
|
|
|
2177
2180
|
/**
|
|
2178
|
-
* TextField
|
|
2181
|
+
* TextField — MD3 Expressive Text Input Component
|
|
2179
2182
|
*
|
|
2180
|
-
* A text input field following Material Design 3 specifications.
|
|
2181
|
-
* Supports filled and outlined variants with
|
|
2182
|
-
* provided by React Aria via the TextFieldHeadless layer.
|
|
2183
|
+
* A text input field strictly following Material Design 3 Expressive specifications.
|
|
2184
|
+
* Supports filled and outlined variants with full accessibility via React Aria.
|
|
2183
2185
|
*
|
|
2184
2186
|
* @example
|
|
2185
2187
|
* ```tsx
|
|
@@ -2194,6 +2196,14 @@ interface TextFieldProps extends TextFieldHeadlessProps {
|
|
|
2194
2196
|
* errorMessage="Please enter a valid email"
|
|
2195
2197
|
* />
|
|
2196
2198
|
*
|
|
2199
|
+
* // With icons and affixes
|
|
2200
|
+
* <TextField
|
|
2201
|
+
* label="Price"
|
|
2202
|
+
* prefix="$"
|
|
2203
|
+
* suffix="USD"
|
|
2204
|
+
* leadingIcon={<IconDollar />}
|
|
2205
|
+
* />
|
|
2206
|
+
*
|
|
2197
2207
|
* // Multiline with character counter
|
|
2198
2208
|
* <TextField
|
|
2199
2209
|
* label="Bio"
|
|
@@ -7083,9 +7093,9 @@ type RichTooltipVariants = VariantProps<typeof richTooltipVariants>;
|
|
|
7083
7093
|
/**
|
|
7084
7094
|
* Visual density based on content lines (MD3 List)
|
|
7085
7095
|
*
|
|
7086
|
-
* - `one-line`: headline only (
|
|
7087
|
-
* - `two-line`: headline + supporting text (
|
|
7088
|
-
* - `three-line`: overline + headline + supporting text (88dp)
|
|
7096
|
+
* - `one-line`: headline only (56dp min-height)
|
|
7097
|
+
* - `two-line`: headline + supporting text (72dp min-height)
|
|
7098
|
+
* - `three-line`: overline + headline + supporting text (88dp min-height)
|
|
7089
7099
|
*/
|
|
7090
7100
|
type ListDensity = "one-line" | "two-line" | "three-line";
|
|
7091
7101
|
/**
|
|
@@ -7191,8 +7201,6 @@ interface ListItemProps {
|
|
|
7191
7201
|
insetDivider?: boolean;
|
|
7192
7202
|
/** Additional CSS classes */
|
|
7193
7203
|
className?: string;
|
|
7194
|
-
/** Item-specific action callback */
|
|
7195
|
-
onAction?: (value: string | number) => void;
|
|
7196
7204
|
}
|
|
7197
7205
|
/**
|
|
7198
7206
|
* Props for the ListItem leading slot
|
|
@@ -7266,24 +7274,44 @@ declare const List: React__default.ForwardRefExoticComponent<ListProps & React__
|
|
|
7266
7274
|
/**
|
|
7267
7275
|
* Material Design 3 List Item (Layer 3: Styled)
|
|
7268
7276
|
*
|
|
7269
|
-
*
|
|
7270
|
-
*
|
|
7277
|
+
* Architecture: Variants-vs-States
|
|
7278
|
+
* - Design-time variant: `density` (auto-derived from content).
|
|
7279
|
+
* - All interaction/selection states are expressed as data-* attributes on the root <li>
|
|
7280
|
+
* via `getInteractionDataAttributes`, consumed by each slot via group-data-[x]/list-item.
|
|
7281
|
+
* - Content flags (`data-with-leading`, `data-with-trailing`) describe structure, set explicitly.
|
|
7271
7282
|
*
|
|
7272
|
-
*
|
|
7273
|
-
*
|
|
7274
|
-
*
|
|
7275
|
-
*
|
|
7283
|
+
* Two operating modes:
|
|
7284
|
+
* - **Interactive** (inside a `List` with `selectionMode` or `onAction`):
|
|
7285
|
+
* uses `useOption` for ARIA semantics, renders state layer + focus ring + ripple.
|
|
7286
|
+
* - **Static**: renders `<li role="listitem">`, no interactive affordances.
|
|
7276
7287
|
*
|
|
7277
7288
|
* Density is auto-derived from content:
|
|
7278
|
-
* - one-line (56dp)
|
|
7279
|
-
* - two-line (72dp)
|
|
7289
|
+
* - one-line (56dp) — headline only
|
|
7290
|
+
* - two-line (72dp) — headline + supportingText
|
|
7280
7291
|
* - three-line (88dp) — overline present
|
|
7292
|
+
*
|
|
7293
|
+
* @example
|
|
7294
|
+
* ```tsx
|
|
7295
|
+
* // Static
|
|
7296
|
+
* <List aria-label="Settings">
|
|
7297
|
+
* <ListItem value="wifi" headline="Wi-Fi" supportingText="Connected" leadingType="icon" leadingSlot={<IconWifi />} />
|
|
7298
|
+
* </List>
|
|
7299
|
+
*
|
|
7300
|
+
* // Interactive single-select
|
|
7301
|
+
* <List aria-label="Alignment" selectionMode="single">
|
|
7302
|
+
* <ListItem value="left" headline="Left" />
|
|
7303
|
+
* <ListItem value="center" headline="Center" />
|
|
7304
|
+
* </List>
|
|
7305
|
+
* ```
|
|
7281
7306
|
*/
|
|
7282
7307
|
declare const ListItem: React__default.ForwardRefExoticComponent<ListItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
7283
7308
|
|
|
7284
7309
|
/**
|
|
7285
7310
|
* MD3 ListItem leading slot.
|
|
7286
7311
|
*
|
|
7312
|
+
* Uses `listItemLeadingVariants` CVA so icon/text colors automatically react to
|
|
7313
|
+
* the parent `group/list-item` data-selected and data-disabled attributes.
|
|
7314
|
+
*
|
|
7287
7315
|
* For `checkbox` and `radio` types the children are wrapped with
|
|
7288
7316
|
* `aria-hidden="true"` and `tabIndex={-1}` because the parent
|
|
7289
7317
|
* `ListItem`'s `useOption` already conveys selection state to
|
|
@@ -7294,6 +7322,9 @@ declare const ListItemLeading: React$1.ForwardRefExoticComponent<ListItemLeading
|
|
|
7294
7322
|
/**
|
|
7295
7323
|
* MD3 ListItem trailing slot.
|
|
7296
7324
|
*
|
|
7325
|
+
* Uses `listItemTrailingVariants` CVA so icon/text colors automatically react to
|
|
7326
|
+
* the parent `group/list-item` data-selected and data-disabled attributes.
|
|
7327
|
+
*
|
|
7297
7328
|
* For `checkbox` and `radio` types the children are wrapped with
|
|
7298
7329
|
* `aria-hidden="true"` and `tabIndex={-1}` — selection semantics
|
|
7299
7330
|
* come from the parent `ListItem`'s `useOption`.
|
|
@@ -7303,6 +7334,9 @@ declare const ListItemTrailing: React$1.ForwardRefExoticComponent<ListItemTraili
|
|
|
7303
7334
|
/**
|
|
7304
7335
|
* MD3 ListItem text block — overline + headline + supporting text.
|
|
7305
7336
|
*
|
|
7337
|
+
* Each text element uses its own slot CVA so colors automatically react to
|
|
7338
|
+
* the parent `group/list-item` data-selected and data-disabled attributes.
|
|
7339
|
+
*
|
|
7306
7340
|
* Uses `min-w-0` to allow text truncation inside flex containers.
|
|
7307
7341
|
*/
|
|
7308
7342
|
declare const ListItemText: React$1.ForwardRefExoticComponent<ListItemTextProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -7347,20 +7381,58 @@ declare const ListHeadless: React__default.ForwardRefExoticComponent<ListProps &
|
|
|
7347
7381
|
declare const ListItemHeadless: React__default.ForwardRefExoticComponent<ListItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
7348
7382
|
|
|
7349
7383
|
/**
|
|
7350
|
-
*
|
|
7384
|
+
* Material Design 3 List Variants
|
|
7385
|
+
*
|
|
7386
|
+
* Architecture: Variants vs States
|
|
7387
|
+
* - CVA holds design-time structure only (density, slot type).
|
|
7388
|
+
* - All interaction/selection states are driven by data-* attributes on the root <li>
|
|
7389
|
+
* via group-data-[x]/list-item Tailwind selectors in each slot's base classes.
|
|
7390
|
+
* - Content flags (data-with-leading, data-with-trailing) are set explicitly by ListItem.
|
|
7391
|
+
*
|
|
7392
|
+
* Slot responsibilities:
|
|
7393
|
+
* listVariants — container <ul>; bg-surface
|
|
7394
|
+
* listItemVariants — root <li>; group/list-item; density height; cursor; disabled
|
|
7395
|
+
* listItemStateLayerVariants — absolute inset overlay; hover/focus/pressed opacity ring
|
|
7396
|
+
* listItemFocusRingVariants — keyboard focus indicator outline
|
|
7397
|
+
* listItemLeadingVariants — leading slot wrapper; type-specific size/shape + color states
|
|
7398
|
+
* listItemTrailingVariants — trailing slot wrapper; type-specific size/shape + color states
|
|
7399
|
+
* listItemOverlineVariants — overline text; color reacts to selected/disabled
|
|
7400
|
+
* listItemHeadlineVariants — headline text; color reacts to selected/disabled
|
|
7401
|
+
* listItemSupportingTextVariants — supporting text; color reacts to selected/disabled
|
|
7402
|
+
*
|
|
7403
|
+
* MD3 Spec (lists/specs):
|
|
7404
|
+
* One-line: 56dp min-height
|
|
7405
|
+
* Two-line: 72dp min-height
|
|
7406
|
+
* Three-line: 88dp min-height (leading/trailing top-aligned)
|
|
7407
|
+
* Padding: 16dp horizontal, 8dp vertical
|
|
7408
|
+
* Leading icon: 24dp, text-on-surface-variant
|
|
7409
|
+
* Leading avatar: 40dp circle
|
|
7410
|
+
* State-layer opacities: hover 8% | focus 10% | pressed 10%
|
|
7411
|
+
* Disabled: content 38% opacity, pointer-events none
|
|
7412
|
+
* Selected: bg-secondary-container, text/icons on-secondary-container
|
|
7413
|
+
*/
|
|
7414
|
+
/**
|
|
7415
|
+
* List container (<ul>).
|
|
7416
|
+
* MD3: Lists use `surface` color role for their container.
|
|
7351
7417
|
*/
|
|
7352
7418
|
declare const listVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
7353
7419
|
/**
|
|
7354
|
-
*
|
|
7420
|
+
* Root <li> element — carries `group/list-item` and emits data-* interaction attributes.
|
|
7421
|
+
*
|
|
7422
|
+
* Design-time variant: `density` only.
|
|
7423
|
+
* All interaction/selection states are driven via group-data-[x]/list-item selectors
|
|
7424
|
+
* in the slot CVAs below — NOT as CVA variant keys here.
|
|
7355
7425
|
*
|
|
7356
|
-
*
|
|
7357
|
-
*
|
|
7426
|
+
* one-line: 56dp (min-h-14)
|
|
7427
|
+
* two-line: 72dp (min-h-18)
|
|
7428
|
+
* three-line: 88dp (min-h-22, items-start for top-aligned slots)
|
|
7429
|
+
*
|
|
7430
|
+
* Selected background: group-data-[selected]/list-item:bg-secondary-container
|
|
7431
|
+
* Interactive cursor: data-[interactive]:cursor-pointer
|
|
7432
|
+
* Disabled: self-targeting data-[disabled]: selectors (38% + no pointer)
|
|
7358
7433
|
*/
|
|
7359
7434
|
declare const listItemVariants: (props?: ({
|
|
7360
7435
|
density?: "one-line" | "two-line" | "three-line" | null | undefined;
|
|
7361
|
-
isSelected?: boolean | null | undefined;
|
|
7362
|
-
isDisabled?: boolean | null | undefined;
|
|
7363
|
-
isInteractive?: boolean | null | undefined;
|
|
7364
7436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7365
7437
|
type ListVariants = VariantProps<typeof listVariants>;
|
|
7366
7438
|
type ListItemVariants = VariantProps<typeof listItemVariants>;
|
|
@@ -8964,7 +9036,7 @@ declare const sliderHandleVariants: (props?: ({
|
|
|
8964
9036
|
* in Slider.tsx based on useReducedMotion() guard (MD3 Appendix E).
|
|
8965
9037
|
*/
|
|
8966
9038
|
declare const sliderHandleStateLayerVariants: (props?: ({
|
|
8967
|
-
state?: "disabled" | "
|
|
9039
|
+
state?: "disabled" | "enabled" | "focused" | "hovered" | "pressed" | null | undefined;
|
|
8968
9040
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8969
9041
|
/**
|
|
8970
9042
|
* CVA for the track layout container (holds active track + handle + inactive track).
|
|
@@ -10102,7 +10174,7 @@ type ClockDialContainerVariants = VariantProps<typeof clockDialContainerVariants
|
|
|
10102
10174
|
declare const clockDialNumberVariants: (props?: ({
|
|
10103
10175
|
selected?: boolean | null | undefined;
|
|
10104
10176
|
ring?: "outer" | "inner" | null | undefined;
|
|
10105
|
-
state?: "
|
|
10177
|
+
state?: "enabled" | "focused" | "hovered" | null | undefined;
|
|
10106
10178
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10107
10179
|
type ClockDialNumberVariants = VariantProps<typeof clockDialNumberVariants>;
|
|
10108
10180
|
/**
|
|
@@ -10129,7 +10201,7 @@ type ClockHandHandleVariants = VariantProps<typeof clockHandHandleVariants>;
|
|
|
10129
10201
|
*/
|
|
10130
10202
|
declare const timeSelectorContainerVariants: (props?: ({
|
|
10131
10203
|
selected?: boolean | null | undefined;
|
|
10132
|
-
state?: "
|
|
10204
|
+
state?: "enabled" | "focused" | "hovered" | null | undefined;
|
|
10133
10205
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10134
10206
|
type TimeSelectorContainerVariants = VariantProps<typeof timeSelectorContainerVariants>;
|
|
10135
10207
|
/**
|
|
@@ -10146,7 +10218,7 @@ type PeriodSelectorContainerVariants = VariantProps<typeof periodSelectorContain
|
|
|
10146
10218
|
*/
|
|
10147
10219
|
declare const periodSelectorItemVariants: (props?: ({
|
|
10148
10220
|
selected?: boolean | null | undefined;
|
|
10149
|
-
state?: "
|
|
10221
|
+
state?: "enabled" | "focused" | "hovered" | null | undefined;
|
|
10150
10222
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10151
10223
|
type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants>;
|
|
10152
10224
|
/**
|
|
@@ -10155,7 +10227,7 @@ type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants
|
|
|
10155
10227
|
*/
|
|
10156
10228
|
declare const timeInputFieldVariants: (props?: ({
|
|
10157
10229
|
selected?: boolean | null | undefined;
|
|
10158
|
-
state?: "
|
|
10230
|
+
state?: "enabled" | "focused" | "hovered" | null | undefined;
|
|
10159
10231
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10160
10232
|
type TimeInputFieldVariants = VariantProps<typeof timeInputFieldVariants>;
|
|
10161
10233
|
/**
|
|
@@ -11732,4 +11804,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
|
|
|
11732
11804
|
declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11733
11805
|
type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
|
|
11734
11806
|
|
|
11735
|
-
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 TextFieldSize, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };
|
|
11807
|
+
export { type ActionButtonFocusRingVariants, type ActionButtonSlotProps, type ActionButtonStateLayerVariants, type ActionButtonVariants, type ActionRowVariants, AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, BadgeContent, type BadgeContentProps, BadgeHeadless, type BadgeHeadlessProps, type BadgeProps, type BadgeVariants, BottomSheet, type BottomSheetAnimationState, type BottomSheetAnimationVariants, BottomSheetContext, type BottomSheetContextValue, BottomSheetHandle, type BottomSheetHandleProps, type BottomSheetHandleVariants, BottomSheetHeadless, type BottomSheetHeadlessProps, type BottomSheetProps, type BottomSheetScrimVariants, type BottomSheetVariant, type BottomSheetVariants, Button, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupFocusRingVariants, ButtonGroupHeadless, type ButtonGroupProps, type ButtonGroupRootVariants, type ButtonGroupSelectionMode, type ButtonGroupShape, type ButtonGroupSize, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, type CalendarCellComponentProps, type CalendarCellFocusRingVariants, type CalendarCellProps, type CalendarCellStateLayerVariants, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarCoreProps, type CalendarDividerVariants, type CalendarGridProps, type CalendarHeaderVariants, type CalendarSlots, type CalendarTitleIconVariants, type CalendarTitleStateLayerVariants, type CalendarTitleTextVariants, type CalendarTitleVariants, type CalendarView, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardHeadless, type CardHeadlessProps, CardMedia, type CardMediaProps, type CardProps, type CardVariant, type CardVariants, Checkbox, type CheckboxProps, Chip, ChipHeadless, type ChipHeadlessProps, type ChipProps, ChipSet, type ChipSetProps, type ChipSurface, type ChipType, type ChipVariants, type ClockDialContainerVariants, type ClockDialNumberVariants, type ClockDialProps, type ClockHandCenterVariants, type ClockHandHandleVariants, type ClockHandProps, type ClockHandTrackVariants, type ClockSelectionMode, DateField, type DateFieldProps, type DateFieldVariants, type DateInputErrorVariants, type DateInputFieldGroupVariants, type DateInputFieldProps, type DateInputFieldVariants, type DateInputLabelVariants, DatePicker, type DatePickerActionsProps, type DatePickerCalendarSlots, type DatePickerContainerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeadlessProps, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerProps, type DatePickerRenderState, type DatePickerVariant, type DateSegmentPlaceholderVariants, type DateSelectionMode, Dialog, DialogActions, type DialogActionsProps, type DialogAnimationState, DialogContent, type DialogContentProps, DialogContext, type DialogContextValue, DialogHeadless, type DialogHeadlessProps, DialogHeadline, type DialogHeadlineProps, type DialogProps, type DialogVariant, Divider, DividerHeadless, type DividerHeadlessProps, type DividerInset, type DividerOrientation, type DividerProps, type DividerVariants, type DockedFieldGroupVariants, type DockedLabelVariants, type DockedTriggerStateLayerVariants, type DockedTriggerVariants, Drawer, type DrawerContextValue, DrawerIconOnlyContext, DrawerItem, type DrawerItemBadgeConfig, type DrawerItemProps, type DrawerProps, DrawerSection, type DrawerSectionProps, type DrawerVariant, FAB, type FABColor, FABHeadless, type FABHeadlessProps, FABMenu, FABMenuContext, type FABMenuContextValue, type FABMenuDirection, FABMenuHeadless, type FABMenuHeadlessProps, FABMenuItem, type FABMenuItemColor, type FABMenuItemFocusRingVariants, type FABMenuItemIconVariants, type FABMenuItemLabelVariants, type FABMenuItemProps, type FABMenuItemStateLayerVariants, type FABMenuItemVariants, type FABMenuListVariants, type FABMenuProps, type FABMenuVariants, type FABProps, type FABSize, HeadlessDrawer, HeadlessDrawerItem, type HeadlessDrawerItemProps, type HeadlessDrawerProps, HeadlessMenu, HeadlessMenuDivider, HeadlessMenuItem, type HeadlessMenuItemProps, type HeadlessMenuProps, HeadlessMenuSection, type HeadlessMenuSectionProps, HeadlessMenuTrigger, type HeadlessMenuTriggerProps, HeadlessNavigationBar, HeadlessNavigationBarItem, type HeadlessNavigationBarItemProps, type HeadlessNavigationBarProps, HeadlessTab, HeadlessTabList, HeadlessTabPanel, type HeadlessTabPanelProps, type HeadlessTabProps, type HeadlineVariants, IconButton, type IconButtonColor, IconButtonHeadless, type IconButtonHeadlessProps, type IconButtonProps, type IconButtonSize, type IconButtonVariant, List, type ListDensity, ListHeadless, type ListHeadlessProps, ListItem, ListItemHeadless, ListItemLeading, type ListItemLeadingProps, type ListItemProps, ListItemText, type ListItemTextProps, ListItemTrailing, type ListItemTrailingProps, type ListItemVariants, type ListLeadingType, type ListProps, type ListTrailingType, type ListVariants, type MD3ColorRole, type MD3TypographyScale, type MD3TypographySize, type MD3TypographyStyle, Menu, type MenuContainerVariants, MenuContext, type MenuContextValue, MenuDivider, type MenuDividerProps, MenuItem, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuTrigger, type MenuTriggerProps, type ModalDialogVariants, type ModalHeaderVariants, type ModeToggleStateLayerVariants, type ModeToggleVariants, type NavButtonComponentProps, type NavButtonFocusRingVariants, type NavButtonStateLayerVariants, type NavButtonVariants, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, type PopoverVariants, Progress, ProgressHeadless, type ProgressHeadlessProps, type ProgressProps, Radio, RadioGroup, RadioGroupHeadless, type RadioGroupHeadlessProps, type RadioGroupProps, RadioHeadless, type RadioHeadlessProps, type RadioProps, type RangeCalendarProps, RichTooltip, type RichTooltipProps, type RichTooltipVariants, STATE_LAYER_OPACITY, type ScrimVariants, Search, SearchBar, SearchBarHeadless, type SearchBarHeadlessProps, type SearchBarProps, type SearchLayout, type SearchProps, type SearchStyle, SearchView, SearchViewHeadless, type SearchViewHeadlessProps, type SearchViewProps, Slider, SliderHeadless, type SliderHeadlessProps, type SliderOrientation, type SliderProps, type SliderRangeThumbLabels, type SliderRenderState, type SliderSize, type SliderThumbProps, type SliderThumbState, type SliderVariant, Snackbar, type SnackbarAction, SnackbarContext, type SnackbarContextValue, SnackbarHeadless, type SnackbarHeadlessProps, type SnackbarItem, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, type SnackbarSeverity, SplitButton, type SplitButtonContainerVariants, type SplitButtonDropdownVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonMenuItem, type SplitButtonPrimaryVariants, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, StyledActionButton, StyledCalendarCell, StyledCalendarTitle, StyledNavButton, StyledWeekday, StyledYearItem, type SupportingTextVariants, Switch, type SwitchProps, TYPOGRAPHY_ELEMENT_MAP, TYPOGRAPHY_USAGE, Tab, type TabItem, type TabLayout, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, type TabVariant, Tabs, type TabsProps, TextField, type TextFieldProps, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };
|