@aws-amplify/ui-react 2.4.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/internal.js +1 -1
- package/dist/esm/internal.js.map +1 -1
- package/dist/esm/styles.css +1 -1
- package/dist/esm/styles.css.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +146 -88
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/primitives.json +675 -140
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as React$1 from 'react';
|
|
|
2
2
|
import React__default, { AriaAttributes } from 'react';
|
|
3
3
|
import * as _aws_amplify_ui from '@aws-amplify/ui';
|
|
4
4
|
import { Theme as Theme$1, CognitoUserAmplify, AuthenticatorMachineOptions, AuthMachineState, getServiceFacade, AuthInterpreter, WebTheme, WebDesignToken } from '@aws-amplify/ui';
|
|
5
|
-
export { createTheme, defaultTheme } from '@aws-amplify/ui';
|
|
5
|
+
export { createTheme, defaultTheme, translations } from '@aws-amplify/ui';
|
|
6
6
|
import * as amazon_cognito_identity_js from 'amazon-cognito-identity-js';
|
|
7
7
|
import * as xstate from 'xstate';
|
|
8
8
|
import { Property } from 'csstype';
|
|
@@ -127,9 +127,33 @@ declare const defaultComponents: {
|
|
|
127
127
|
Header: () => JSX.Element;
|
|
128
128
|
Footer: () => JSX.Element;
|
|
129
129
|
};
|
|
130
|
+
SetupTOTP: {
|
|
131
|
+
Header: () => JSX.Element;
|
|
132
|
+
Footer: () => JSX.Element;
|
|
133
|
+
};
|
|
134
|
+
ConfirmResetPassword: {
|
|
135
|
+
Header: () => JSX.Element;
|
|
136
|
+
Footer: () => JSX.Element;
|
|
137
|
+
};
|
|
138
|
+
ConfirmSignIn: {
|
|
139
|
+
Header: () => JSX.Element;
|
|
140
|
+
Footer: () => JSX.Element;
|
|
141
|
+
};
|
|
142
|
+
VerifyUser: {
|
|
143
|
+
Header: () => JSX.Element;
|
|
144
|
+
Footer: () => JSX.Element;
|
|
145
|
+
};
|
|
146
|
+
ConfirmVerifyUser: {
|
|
147
|
+
Header: () => JSX.Element;
|
|
148
|
+
Footer: () => JSX.Element;
|
|
149
|
+
};
|
|
130
150
|
ForceNewPassword: {
|
|
131
151
|
FormFields: typeof FormFields$1;
|
|
132
152
|
};
|
|
153
|
+
ResetPassword: {
|
|
154
|
+
Header: () => JSX.Element;
|
|
155
|
+
Footer: () => JSX.Element;
|
|
156
|
+
};
|
|
133
157
|
Footer: () => JSX.Element;
|
|
134
158
|
};
|
|
135
159
|
|
|
@@ -143,8 +167,16 @@ declare namespace Authenticator {
|
|
|
143
167
|
var Provider: ({ children }: {
|
|
144
168
|
children: any;
|
|
145
169
|
}) => JSX.Element;
|
|
146
|
-
var ResetPassword:
|
|
147
|
-
|
|
170
|
+
var ResetPassword: {
|
|
171
|
+
(): JSX.Element;
|
|
172
|
+
Header(): JSX.Element;
|
|
173
|
+
Footer(): JSX.Element;
|
|
174
|
+
};
|
|
175
|
+
var SetupTOTP: {
|
|
176
|
+
(): JSX.Element;
|
|
177
|
+
Header(): JSX.Element;
|
|
178
|
+
Footer(): JSX.Element;
|
|
179
|
+
};
|
|
148
180
|
var SignIn: typeof SignIn;
|
|
149
181
|
var SignUp: typeof SignUp;
|
|
150
182
|
var ForceNewPassword: {
|
|
@@ -161,7 +193,7 @@ declare type AuthenticatorContextValue = {
|
|
|
161
193
|
*
|
|
162
194
|
* https://xstate.js.org/docs/recipes/react.html#context-provider
|
|
163
195
|
*/
|
|
164
|
-
declare const AuthenticatorContext:
|
|
196
|
+
declare const AuthenticatorContext: React$1.Context<AuthenticatorContextValue>;
|
|
165
197
|
/**
|
|
166
198
|
* These are the "facades" that we provide, which contains contexts respective
|
|
167
199
|
* to current authenticator state.
|
|
@@ -463,6 +495,25 @@ interface InputProps extends ViewProps {
|
|
|
463
495
|
variation?: FieldVariations;
|
|
464
496
|
}
|
|
465
497
|
|
|
498
|
+
declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
|
|
499
|
+
interface TextProps extends ViewProps {
|
|
500
|
+
/**
|
|
501
|
+
* HTML allowed tags
|
|
502
|
+
*/
|
|
503
|
+
as?: 'p' | 'span' | 'strong' | 'em';
|
|
504
|
+
/**
|
|
505
|
+
* This should be the primary way to handle different styles of text. Lower-level
|
|
506
|
+
* text styling attributes like color can be set directly, that should be more of an
|
|
507
|
+
* escape hatch.
|
|
508
|
+
*/
|
|
509
|
+
variation?: TextVariation;
|
|
510
|
+
/**
|
|
511
|
+
* This attribute will be used to indicate if the text component should truncate text
|
|
512
|
+
* that exceeds the width of the text element. Truncated text will render an ellipsis.
|
|
513
|
+
*/
|
|
514
|
+
isTruncated?: boolean;
|
|
515
|
+
}
|
|
516
|
+
|
|
466
517
|
/**
|
|
467
518
|
* Shared type across all field types
|
|
468
519
|
*/
|
|
@@ -488,11 +539,12 @@ interface FieldProps {
|
|
|
488
539
|
}
|
|
489
540
|
interface FieldClearButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
490
541
|
}
|
|
491
|
-
interface FieldDescriptionProps extends Pick<FieldProps, 'descriptiveText' | 'labelHidden'> {
|
|
542
|
+
interface FieldDescriptionProps extends TextProps, Pick<FieldProps, 'descriptiveText' | 'labelHidden'> {
|
|
492
543
|
}
|
|
493
|
-
interface FieldErrorMessageProps extends Pick<FieldProps, 'errorMessage'>, Pick<InputProps, 'hasError'> {
|
|
544
|
+
interface FieldErrorMessageProps extends TextProps, Pick<FieldProps, 'errorMessage'>, Pick<InputProps, 'hasError'> {
|
|
494
545
|
}
|
|
495
546
|
declare type FieldVariations = 'quiet';
|
|
547
|
+
declare type LabelPositions = 'start' | 'end' | 'top' | 'bottom';
|
|
496
548
|
|
|
497
549
|
interface TextAreaStyleProps {
|
|
498
550
|
resize?: Property.Resize;
|
|
@@ -651,7 +703,7 @@ declare type ComponentPropToStyleProp = Required<{
|
|
|
651
703
|
* such as wrap => flexWrap and direction => flexDirection
|
|
652
704
|
*/
|
|
653
705
|
declare const ComponentPropsToStylePropsMap: ComponentPropToStyleProp;
|
|
654
|
-
declare const ComponentPropsToStylePropsMapKeys: ("border" | "color" | "area" | "
|
|
706
|
+
declare const ComponentPropsToStylePropsMapKeys: ("border" | "color" | "area" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "objectFit" | "objectPosition" | "autoColumns" | "autoFlow" | "autoRows" | "templateAreas" | "templateColumns" | "templateRows" | "resize")[];
|
|
655
707
|
|
|
656
708
|
interface FlexContainerStyleProps extends CSSLayoutStyleProps {
|
|
657
709
|
/**
|
|
@@ -763,6 +815,11 @@ interface CheckboxProps extends FlexProps, InputProps {
|
|
|
763
815
|
* Shows on form submission as key pair `name:value`
|
|
764
816
|
*/
|
|
765
817
|
value: string;
|
|
818
|
+
/**
|
|
819
|
+
* Position of label in relation to the checkbox,
|
|
820
|
+
* default is 'start'
|
|
821
|
+
*/
|
|
822
|
+
labelPosition?: LabelPositions;
|
|
766
823
|
}
|
|
767
824
|
|
|
768
825
|
interface CheckboxFieldProps extends CheckboxProps, FieldProps {
|
|
@@ -869,25 +926,6 @@ interface FieldGroupOptions extends FlexProps {
|
|
|
869
926
|
innerEndComponent?: React.ReactNode;
|
|
870
927
|
}
|
|
871
928
|
|
|
872
|
-
declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
|
|
873
|
-
interface TextProps extends ViewProps {
|
|
874
|
-
/**
|
|
875
|
-
* HTML allowed tags
|
|
876
|
-
*/
|
|
877
|
-
as?: 'p' | 'span' | 'strong' | 'em';
|
|
878
|
-
/**
|
|
879
|
-
* This should be the primary way to handle different styles of text. Lower-level
|
|
880
|
-
* text styling attributes like color can be set directly, that should be more of an
|
|
881
|
-
* escape hatch.
|
|
882
|
-
*/
|
|
883
|
-
variation?: TextVariation;
|
|
884
|
-
/**
|
|
885
|
-
* This attribute will be used to indicate if the text component should truncate text
|
|
886
|
-
* that exceeds the width of the text element. Truncated text will render an ellipsis.
|
|
887
|
-
*/
|
|
888
|
-
isTruncated?: boolean;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
929
|
declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
892
930
|
interface HeadingProps extends TextProps {
|
|
893
931
|
level?: HeadingLevel;
|
|
@@ -1099,9 +1137,14 @@ interface TextFieldOptions extends FieldProps, FlexContainerStyleProps {
|
|
|
1099
1137
|
}
|
|
1100
1138
|
interface TextInputFieldProps extends TextFieldOptions, InputProps {
|
|
1101
1139
|
}
|
|
1102
|
-
interface
|
|
1140
|
+
interface TextAreaFieldMultilineProps extends TextFieldOptions, TextAreaProps {
|
|
1103
1141
|
}
|
|
1104
|
-
declare type TextFieldProps<Multiline extends boolean> = (Multiline extends true ?
|
|
1142
|
+
declare type TextFieldProps<Multiline extends boolean> = (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps) & {
|
|
1143
|
+
/**
|
|
1144
|
+
* @deprecated
|
|
1145
|
+
* Multiline functionality has been moved to TextAreaField and will be removed in next major release.
|
|
1146
|
+
* Please use TextAreaField instead of TextField for multiline text fields.
|
|
1147
|
+
*/
|
|
1105
1148
|
isMultiline?: Multiline;
|
|
1106
1149
|
};
|
|
1107
1150
|
|
|
@@ -1145,6 +1188,10 @@ interface SelectProps extends ViewProps {
|
|
|
1145
1188
|
}
|
|
1146
1189
|
|
|
1147
1190
|
interface SelectFieldProps extends FieldProps, FlexContainerStyleProps, SelectProps {
|
|
1191
|
+
/**
|
|
1192
|
+
* List of option values for select dropdown
|
|
1193
|
+
*/
|
|
1194
|
+
options?: string[];
|
|
1148
1195
|
}
|
|
1149
1196
|
|
|
1150
1197
|
interface PhoneNumberFieldProps extends TextInputFieldProps {
|
|
@@ -1256,12 +1303,12 @@ interface SearchFieldProps extends TextInputFieldProps {
|
|
|
1256
1303
|
/**
|
|
1257
1304
|
* Provides ref access to search button DOM element
|
|
1258
1305
|
*/
|
|
1259
|
-
searchButtonRef?:
|
|
1306
|
+
searchButtonRef?: React$1.Ref<HTMLButtonElement>;
|
|
1260
1307
|
}
|
|
1261
1308
|
interface SearchFieldButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
1262
1309
|
}
|
|
1263
1310
|
declare type UseSearchFieldProps = Partial<SearchFieldProps> & {
|
|
1264
|
-
externalRef?:
|
|
1311
|
+
externalRef?: React$1.ForwardedRef<HTMLInputElement>;
|
|
1265
1312
|
};
|
|
1266
1313
|
|
|
1267
1314
|
declare type SliderOrientation = 'horizontal' | 'vertical';
|
|
@@ -1297,7 +1344,6 @@ interface StepperFieldProps extends TextInputFieldProps {
|
|
|
1297
1344
|
onDecrease?: () => void;
|
|
1298
1345
|
}
|
|
1299
1346
|
|
|
1300
|
-
declare type labelPositions = 'start' | 'end' | 'top' | 'bottom';
|
|
1301
1347
|
interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
|
|
1302
1348
|
/**
|
|
1303
1349
|
* Use this to provide a default checked value for an uncontrolled SwitchField
|
|
@@ -1323,7 +1369,7 @@ interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
|
|
|
1323
1369
|
/**
|
|
1324
1370
|
* Position of label in relation to the switchfield
|
|
1325
1371
|
*/
|
|
1326
|
-
labelPosition?:
|
|
1372
|
+
labelPosition?: LabelPositions;
|
|
1327
1373
|
/**
|
|
1328
1374
|
* This prop adds a name attribute to the input element
|
|
1329
1375
|
*/
|
|
@@ -1432,6 +1478,9 @@ interface TabItemProps extends BaseComponentProps, BaseStyleProps {
|
|
|
1432
1478
|
isDisabled?: boolean;
|
|
1433
1479
|
}
|
|
1434
1480
|
|
|
1481
|
+
interface TextAreaFieldProps extends FieldProps, FlexContainerStyleProps, TextAreaProps {
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1435
1484
|
interface ToggleButtonProps extends ButtonProps {
|
|
1436
1485
|
value?: string;
|
|
1437
1486
|
isPressed?: boolean;
|
|
@@ -1442,6 +1491,7 @@ interface ToggleButtonProps extends ButtonProps {
|
|
|
1442
1491
|
interface ToggleButtonGroupProps extends FlexProps, Pick<ToggleButtonProps, 'size' | 'variation'> {
|
|
1443
1492
|
children: React$1.ReactNode;
|
|
1444
1493
|
isExclusive?: boolean;
|
|
1494
|
+
isSelectionRequired?: boolean;
|
|
1445
1495
|
value: string | string[];
|
|
1446
1496
|
onChange: (value: string | string[]) => void;
|
|
1447
1497
|
}
|
|
@@ -1449,41 +1499,41 @@ interface ToggleButtonGroupProps extends FlexProps, Pick<ToggleButtonProps, 'siz
|
|
|
1449
1499
|
interface VisuallyHiddenProps extends ViewProps {
|
|
1450
1500
|
}
|
|
1451
1501
|
|
|
1452
|
-
declare const Alert: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<AlertProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "heading" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isDismissible" | "onDismiss" | "hasIcon" | "buttonRef"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1502
|
+
declare const Alert: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<AlertProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "heading" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "isDismissible" | "onDismiss" | "hasIcon" | "buttonRef"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1453
1503
|
|
|
1454
|
-
declare const Badge: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<BadgeProps, "span">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1504
|
+
declare const Badge: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<BadgeProps, "span">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1455
1505
|
|
|
1456
|
-
declare const Button: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "
|
|
1506
|
+
declare const Button: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "isFullWidth" | "isLoading" | "loadingText" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1457
1507
|
|
|
1458
|
-
declare const ButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1508
|
+
declare const ButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1459
1509
|
|
|
1460
|
-
declare const Card: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CardProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1510
|
+
declare const Card: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CardProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "variation"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1461
1511
|
|
|
1462
|
-
declare const CheckboxField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CheckboxFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "
|
|
1512
|
+
declare const CheckboxField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CheckboxFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "labelPosition"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1463
1513
|
|
|
1464
1514
|
declare const Collection: {
|
|
1465
1515
|
<Item>({ className, isSearchable, isPaginated, items, itemsPerPage, searchFilter, searchPlaceholder, type, testId, ...rest }: CollectionProps<Item>): JSX.Element;
|
|
1466
1516
|
displayName: string;
|
|
1467
1517
|
};
|
|
1468
1518
|
|
|
1469
|
-
declare const Divider: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<DividerProps, "hr">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1519
|
+
declare const Divider: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<DividerProps, "hr">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "orientation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size"> & React$1.RefAttributes<HTMLHRElement>>;
|
|
1470
1520
|
|
|
1471
|
-
declare const Expander: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ExpanderProps, React$1.ForwardRefExoticComponent<(_radix_ui_react_accordion.AccordionSingleProps & React$1.RefAttributes<HTMLDivElement>) | (_radix_ui_react_accordion.AccordionMultipleProps & React$1.RefAttributes<HTMLDivElement>)>>, "children" | "value" | "border" | "disabled" | "color" | "area" | "slot" | "style" | "title" | "type" | "
|
|
1521
|
+
declare const Expander: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ExpanderProps, React$1.ForwardRefExoticComponent<(_radix_ui_react_accordion.AccordionSingleProps & React$1.RefAttributes<HTMLDivElement>) | (_radix_ui_react_accordion.AccordionMultipleProps & React$1.RefAttributes<HTMLDivElement>)>>, "children" | "value" | "border" | "disabled" | "color" | "area" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "asChild" | "onValueChange" | "isCollapsible"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1472
1522
|
|
|
1473
|
-
declare const ExpanderItem: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ExpanderItemProps, React$1.ForwardRefExoticComponent<_radix_ui_react_accordion.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "disabled" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1523
|
+
declare const ExpanderItem: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ExpanderItemProps, React$1.ForwardRefExoticComponent<_radix_ui_react_accordion.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "disabled" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "asChild"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1474
1524
|
|
|
1475
|
-
declare const FieldGroupIcon: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FieldGroupIconProps, "button" | "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1525
|
+
declare const FieldGroupIcon: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FieldGroupIconProps, "button" | "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "isVisible" | "excludeFromTabOrder"> & React$1.RefAttributes<HTMLDivElement | HTMLButtonElement>>;
|
|
1476
1526
|
|
|
1477
|
-
declare const FieldGroupIconButton: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FieldGroupIconButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "
|
|
1527
|
+
declare const FieldGroupIconButton: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FieldGroupIconButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "isVisible" | "excludeFromTabOrder"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1478
1528
|
|
|
1479
|
-
declare const Flex: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1529
|
+
declare const Flex: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1480
1530
|
|
|
1481
|
-
declare const Grid: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<GridProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1531
|
+
declare const Grid: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<GridProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoColumns" | "autoFlow" | "autoRows" | "templateAreas" | "templateColumns" | "templateRows"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1482
1532
|
|
|
1483
1533
|
declare type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
1484
|
-
declare const Heading: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<HeadingProps, HeadingTag>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
1534
|
+
declare const Heading: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<HeadingProps, HeadingTag>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "variation" | "isTruncated" | "level"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
1485
1535
|
|
|
1486
|
-
declare const Icon: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<IconProps, "svg">, "string" | "children" | "border" | "color" | "values" | "name" | "area" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "
|
|
1536
|
+
declare const Icon: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<IconProps, "svg">, "string" | "children" | "border" | "color" | "values" | "name" | "area" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "media" | "method" | "min" | "target" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textLength" | "textRendering" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "pathData" | "paths"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1487
1537
|
|
|
1488
1538
|
declare const Icon360: (props: any) => JSX.Element;
|
|
1489
1539
|
|
|
@@ -4141,84 +4191,86 @@ declare const IconZoomOutMap: (props: any) => JSX.Element;
|
|
|
4141
4191
|
|
|
4142
4192
|
declare const IconZoomOut: (props: any) => JSX.Element;
|
|
4143
4193
|
|
|
4144
|
-
declare const Image: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ImageProps, "img">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
4194
|
+
declare const Image: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ImageProps, "img">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "useMap" | "referrerPolicy" | "alt" | "src" | "loading" | "decoding" | "sizes" | "srcSet" | "objectFit" | "objectPosition"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
4145
4195
|
|
|
4146
|
-
declare const Link: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<LinkProps, "a">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "type" | "
|
|
4196
|
+
declare const Link: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<LinkProps, "a">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "media" | "target" | "tabIndex" | "href" | "to" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy" | "isExternal"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
4147
4197
|
|
|
4148
|
-
declare const Loader: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<LoaderProps, "svg">, "string" | "children" | "border" | "color" | "values" | "name" | "area" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "
|
|
4198
|
+
declare const Loader: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<LoaderProps, "svg">, "string" | "children" | "border" | "color" | "values" | "name" | "area" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "media" | "method" | "min" | "target" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textLength" | "textRendering" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "size" | "variation" | "filledColor" | "emptyColor"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
4149
4199
|
|
|
4150
|
-
declare const Menu: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<MenuProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
4200
|
+
declare const Menu: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<MenuProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "onOpenChange" | "menuAlign" | "isOpen" | "trigger" | "triggerClassName"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4151
4201
|
|
|
4152
|
-
declare const MenuButton: React$1.ForwardRefExoticComponent<Pick<ButtonProps, "border" | "color" | "area" | "style" | "type" | "
|
|
4202
|
+
declare const MenuButton: React$1.ForwardRefExoticComponent<Pick<ButtonProps, "border" | "color" | "area" | "style" | "type" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "direction" | "onClick" | "isFullWidth" | "isLoading" | "loadingText" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & {
|
|
4153
4203
|
as?: ElementType;
|
|
4154
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "type" | "
|
|
4204
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "type" | "id" | "className" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is">, "children" | "value" | "disabled" | "name" | "form" | "slot" | "title" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4155
4205
|
|
|
4156
4206
|
declare const MenuItem: React$1.ForwardRefExoticComponent<MenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
4157
4207
|
|
|
4158
|
-
declare const Pagination: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PaginationProps, "nav">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
4208
|
+
declare const Pagination: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PaginationProps, "nav">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "onNext" | "onPrevious" | "currentPage" | "totalPages" | "siblingCount"> & React$1.RefAttributes<HTMLElement>>;
|
|
4159
4209
|
|
|
4160
4210
|
declare const usePagination: (props: UsePaginationProps) => UsePaginationResult;
|
|
4161
4211
|
|
|
4162
|
-
declare const PasswordField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PasswordFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "
|
|
4212
|
+
declare const PasswordField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PasswordFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "hideShowPassword" | "showPasswordButtonRef"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4213
|
+
|
|
4214
|
+
declare const PhoneNumberField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PhoneNumberFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "countryCodeLabel" | "countryCodeName" | "defaultCountryCode" | "onCountryCodeChange" | "countryCodeRef"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4163
4215
|
|
|
4164
|
-
declare const
|
|
4216
|
+
declare const Placeholder: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<PlaceholderProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "isLoaded"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4165
4217
|
|
|
4166
|
-
declare const
|
|
4218
|
+
declare const Radio: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RadioProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "hasError" | "isReadOnly" | "isRequired"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4167
4219
|
|
|
4168
|
-
declare const Radio: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RadioProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "pattern" | "type" | "aria-label" | "aria-valuetext" | "list" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "alt" | "src" | "onClick" | "variation" | "size" | "defaultValue" | "hidden" | "hasError" | "autoComplete" | "checked" | "defaultChecked" | "inputMode" | "isReadOnly" | "isRequired" | "placeholder" | "translate" | "multiple" | "onChange" | "accept" | "autoFocus" | "capture" | "crossOrigin" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "max" | "maxLength" | "min" | "minLength" | "readOnly" | "required" | "step" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "enterKeyHint"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4220
|
+
declare const RadioGroupField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RadioGroupFieldProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "name" | "area" | "label" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoComplete" | "checked" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4169
4221
|
|
|
4170
|
-
declare const RadioGroupField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RadioGroupFieldProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "name" | "area" | "label" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "checked" | "defaultChecked" | "inputMode" | "isReadOnly" | "isRequired" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4222
|
+
declare const Rating: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RatingProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "icon" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "emptyColor" | "emptyIcon" | "fillColor" | "maxValue"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4171
4223
|
|
|
4172
|
-
declare const Rating: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<RatingProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "icon" | "emptyColor" | "emptyIcon" | "fillColor" | "maxValue"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4224
|
+
declare const ScrollView: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ScrollViewProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "orientation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4173
4225
|
|
|
4174
|
-
declare const
|
|
4226
|
+
declare const SearchField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SearchFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "onClear" | "searchButtonRef"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4175
4227
|
|
|
4176
|
-
declare const
|
|
4228
|
+
declare const SelectField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SelectFieldProps, "select">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "icon" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoComplete" | "multiple" | "required" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isRequired" | "iconColor" | "options"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
4177
4229
|
|
|
4178
|
-
declare const
|
|
4230
|
+
declare const SliderField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SliderFieldProps, React$1.ForwardRefExoticComponent<_radix_ui_react_slider.SliderProps & React$1.RefAttributes<HTMLSpanElement>>>, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "label" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "direction" | "orientation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoComplete" | "checked" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "asChild" | "onValueChange" | "isValueHidden" | "trackSize" | "emptyTrackColor" | "filledTrackColor" | "thumbColor" | "minStepsBetweenThumbs"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
4179
4231
|
|
|
4180
|
-
declare const
|
|
4232
|
+
declare const StepperField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<StepperFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "max" | "min" | "tabIndex" | "crossOrigin" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "alt" | "src" | "autoComplete" | "accept" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "step" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "onDecrease" | "onIncrease" | "onStepChange"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4181
4233
|
|
|
4182
|
-
declare const StepperField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<StepperFieldProps, "input">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "aria-label" | "aria-valuetext" | "list" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "alt" | "src" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "checked" | "defaultChecked" | "inputMode" | "isReadOnly" | "isRequired" | "placeholder" | "translate" | "multiple" | "onChange" | "accept" | "autoFocus" | "capture" | "crossOrigin" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "max" | "maxLength" | "min" | "minLength" | "readOnly" | "required" | "step" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "enterKeyHint" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "onDecrease" | "onIncrease" | "onStepChange"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4234
|
+
declare const SwitchField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SwitchFieldProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "name" | "area" | "label" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoComplete" | "checked" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "labelPosition" | "thumbColor" | "isChecked" | "isLabelHidden" | "trackColor" | "trackCheckedColor"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4183
4235
|
|
|
4184
|
-
declare const SwitchField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SwitchFieldProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "name" | "area" | "label" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "checked" | "defaultChecked" | "inputMode" | "isReadOnly" | "isRequired" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "thumbColor" | "isChecked" | "isLabelHidden" | "labelPosition" | "trackColor" | "trackCheckedColor"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4236
|
+
declare const Table: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableProps, "table">, "children" | "border" | "color" | "area" | "caption" | "slot" | "style" | "summary" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "cellPadding" | "cellSpacing" | "highlightOnHover"> & React$1.RefAttributes<HTMLTableElement>>;
|
|
4185
4237
|
|
|
4186
|
-
declare const
|
|
4238
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableBodyProps, "tbody">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
4187
4239
|
|
|
4188
|
-
declare const
|
|
4240
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableCellProps, TableCellElement>, "children" | "border" | "color" | "abbr" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "align" | "colSpan" | "headers" | "scope" | "colspan" | "rowspan"> & React$1.RefAttributes<HTMLTableDataCellElement | HTMLTableHeaderCellElement>>;
|
|
4189
4241
|
|
|
4190
|
-
declare const
|
|
4242
|
+
declare const TableFoot: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableFootProps, "tfoot">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
4191
4243
|
|
|
4192
|
-
declare const
|
|
4244
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableHeadProps, "thead">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
4193
4245
|
|
|
4194
|
-
declare const
|
|
4246
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableRowProps, "tr">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
4195
4247
|
|
|
4196
|
-
declare const TableRow: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableRowProps, "tr">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
4248
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TabsProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "spacing" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultIndex" | "currentIndex" | "indicatorPosition"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4249
|
+
declare const TabItem: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TabItemProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4197
4250
|
|
|
4198
|
-
declare const Tabs: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TabsProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "spacing" | "defaultIndex" | "currentIndex" | "indicatorPosition"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4199
|
-
declare const TabItem: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TabItemProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "role" | "onClick" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4251
|
+
declare const Text: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TextProps, "p">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "variation" | "isTruncated"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
4200
4252
|
|
|
4201
|
-
declare const
|
|
4253
|
+
declare const TextAreaField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TextAreaFieldProps, "textarea">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required" | "cols" | "dirName" | "rows" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "isReadOnly" | "isRequired" | "resize"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
4202
4254
|
|
|
4203
4255
|
declare const TextFieldPrimitive: {
|
|
4204
|
-
<Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ?
|
|
4256
|
+
<Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> & {
|
|
4205
4257
|
as?: "input" | "textarea" | TextFieldProps<Multiline>["as"];
|
|
4206
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">>>, ref: React$1.ForwardedRef<HTMLTextAreaElement | HTMLInputElement>): JSX.Element;
|
|
4258
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "id" | "className" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">>>, ref: React$1.ForwardedRef<HTMLTextAreaElement | HTMLInputElement>): JSX.Element;
|
|
4207
4259
|
displayName: string;
|
|
4208
4260
|
};
|
|
4209
|
-
declare const TextField: <Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ?
|
|
4261
|
+
declare const TextField: <Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> & {
|
|
4210
4262
|
as?: "input" | "textarea" | TextFieldProps<Multiline>["as"];
|
|
4211
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">>> & {
|
|
4263
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "id" | "className" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">>> & {
|
|
4212
4264
|
ref?: React$1.ForwardedRef<HTMLInputElement | HTMLTextAreaElement>;
|
|
4213
4265
|
}) => ReturnType<typeof TextFieldPrimitive>;
|
|
4214
4266
|
|
|
4215
|
-
declare const ToggleButton: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "isFullWidth" | "isLoading" | "loadingText" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLButtonElement>>>, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "isFullWidth" | "isLoading" | "loadingText" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isPressed" | "defaultPressed"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4267
|
+
declare const ToggleButton: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "isFullWidth" | "isLoading" | "loadingText" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLButtonElement>>>, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "isFullWidth" | "isLoading" | "loadingText" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "isPressed" | "defaultPressed"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4216
4268
|
|
|
4217
|
-
declare const ToggleButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isExclusive"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4269
|
+
declare const ToggleButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "direction" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "variation" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "isExclusive" | "isSelectionRequired"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4218
4270
|
|
|
4219
|
-
declare const View: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ViewProps, ElementType>, string | number | symbol> & React$1.RefAttributes<HTMLElement | HTMLDivElement | HTMLStyleElement | HTMLInputElement | HTMLSelectElement |
|
|
4271
|
+
declare const View: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ViewProps, ElementType>, string | number | symbol> & React$1.RefAttributes<HTMLElement | HTMLDivElement | HTMLStyleElement | HTMLInputElement | HTMLSelectElement | HTMLFormElement | SVGSVGElement | SVGElement | HTMLButtonElement | SVGPathElement | HTMLParagraphElement | SVGSymbolElement | HTMLObjectElement | HTMLBaseElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadingElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLModElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLLinkElement | HTMLMapElement | HTMLMetaElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLParamElement | HTMLPreElement | HTMLProgressElement | HTMLQuoteElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLSpanElement | HTMLTableElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableDataCellElement | HTMLTextAreaElement | HTMLTableHeaderCellElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLWebViewElement | SVGCircleElement | SVGClipPathElement | SVGDefsElement | SVGDescElement | SVGEllipseElement | SVGFEBlendElement | SVGFEColorMatrixElement | SVGFEComponentTransferElement | SVGFECompositeElement | SVGFEConvolveMatrixElement | SVGFEDiffuseLightingElement | SVGFEDisplacementMapElement | SVGFEDistantLightElement | SVGFEDropShadowElement | SVGFEFloodElement | SVGFEFuncAElement | SVGFEFuncBElement | SVGFEFuncGElement | SVGFEFuncRElement | SVGFEGaussianBlurElement | SVGFEImageElement | SVGFEMergeElement | SVGFEMergeNodeElement | SVGFEMorphologyElement | SVGFEOffsetElement | SVGFEPointLightElement | SVGFESpecularLightingElement | SVGFESpotLightElement | SVGFETileElement | SVGFETurbulenceElement | SVGFilterElement | SVGForeignObjectElement | SVGGElement | SVGImageElement | SVGLineElement | SVGLinearGradientElement | SVGMarkerElement | SVGMaskElement | SVGMetadataElement | SVGPatternElement | SVGPolygonElement | SVGPolylineElement | SVGRadialGradientElement | SVGRectElement | SVGStopElement | SVGSwitchElement | SVGTextElement | SVGTextPathElement | SVGTSpanElement | SVGUseElement | SVGViewElement>>;
|
|
4220
4272
|
|
|
4221
|
-
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<VisuallyHiddenProps, "span">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "
|
|
4273
|
+
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<VisuallyHiddenProps, "span">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "row" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
4222
4274
|
|
|
4223
4275
|
declare enum ComponentClassNames {
|
|
4224
4276
|
Alert = "amplify-alert",
|
|
@@ -4229,6 +4281,7 @@ declare enum ComponentClassNames {
|
|
|
4229
4281
|
Badge = "amplify-badge",
|
|
4230
4282
|
Button = "amplify-button",
|
|
4231
4283
|
ButtonGroup = "amplify-buttongroup",
|
|
4284
|
+
ButtonLoaderWrapper = "amplify-button__loader-wrapper",
|
|
4232
4285
|
Card = "amplify-card",
|
|
4233
4286
|
Checkbox = "amplify-checkbox",
|
|
4234
4287
|
CheckboxButton = "amplify-checkbox__button",
|
|
@@ -4327,6 +4380,7 @@ declare enum ComponentClassNames {
|
|
|
4327
4380
|
Text = "amplify-text",
|
|
4328
4381
|
Textarea = "amplify-textarea",
|
|
4329
4382
|
TextField = "amplify-textfield",
|
|
4383
|
+
TextAreaField = "amplify-textareafield",
|
|
4330
4384
|
ToggleButton = "amplify-togglebutton",
|
|
4331
4385
|
ToggleButtonGroup = "amplify-togglebuttongroup",
|
|
4332
4386
|
VisuallyHidden = "amplify-visually-hidden"
|
|
@@ -4401,6 +4455,7 @@ declare const index_SwitchField: typeof SwitchField;
|
|
|
4401
4455
|
declare const index_Tabs: typeof Tabs;
|
|
4402
4456
|
declare const index_TabItem: typeof TabItem;
|
|
4403
4457
|
declare const index_Text: typeof Text;
|
|
4458
|
+
declare const index_TextAreaField: typeof TextAreaField;
|
|
4404
4459
|
declare const index_TextField: typeof TextField;
|
|
4405
4460
|
declare const index_ToggleButton: typeof ToggleButton;
|
|
4406
4461
|
declare const index_ToggleButtonGroup: typeof ToggleButtonGroup;
|
|
@@ -5783,6 +5838,7 @@ type index_FieldClearButtonProps = FieldClearButtonProps;
|
|
|
5783
5838
|
type index_FieldDescriptionProps = FieldDescriptionProps;
|
|
5784
5839
|
type index_FieldErrorMessageProps = FieldErrorMessageProps;
|
|
5785
5840
|
type index_FieldVariations = FieldVariations;
|
|
5841
|
+
type index_LabelPositions = LabelPositions;
|
|
5786
5842
|
type index_FieldGroupOrientation = FieldGroupOrientation;
|
|
5787
5843
|
type index_FieldGroupOptions = FieldGroupOptions;
|
|
5788
5844
|
type index_FieldGroupIconProps = FieldGroupIconProps;
|
|
@@ -5843,7 +5899,6 @@ type index_AllStyleProps = AllStyleProps;
|
|
|
5843
5899
|
type index_ComponentPropToStyleProp = ComponentPropToStyleProp;
|
|
5844
5900
|
declare const index_ComponentPropsToStylePropsMap: typeof ComponentPropsToStylePropsMap;
|
|
5845
5901
|
declare const index_ComponentPropsToStylePropsMapKeys: typeof ComponentPropsToStylePropsMapKeys;
|
|
5846
|
-
type index_labelPositions = labelPositions;
|
|
5847
5902
|
type index_SwitchFieldProps = SwitchFieldProps;
|
|
5848
5903
|
type index_TableSize = TableSize;
|
|
5849
5904
|
type index_TableVariation = TableVariation;
|
|
@@ -5861,9 +5916,10 @@ type index_TextVariation = TextVariation;
|
|
|
5861
5916
|
type index_TextProps = TextProps;
|
|
5862
5917
|
type index_TextAreaStyleProps = TextAreaStyleProps;
|
|
5863
5918
|
type index_TextAreaProps = TextAreaProps;
|
|
5919
|
+
type index_TextAreaFieldProps = TextAreaFieldProps;
|
|
5864
5920
|
type index_TextFieldOptions = TextFieldOptions;
|
|
5865
5921
|
type index_TextInputFieldProps = TextInputFieldProps;
|
|
5866
|
-
type
|
|
5922
|
+
type index_TextAreaFieldMultilineProps = TextAreaFieldMultilineProps;
|
|
5867
5923
|
type index_TextFieldProps<Multiline extends boolean> = TextFieldProps<Multiline>;
|
|
5868
5924
|
type index_ToggleButtonProps = ToggleButtonProps;
|
|
5869
5925
|
type index_ToggleButtonGroupProps = ToggleButtonGroupProps;
|
|
@@ -5919,6 +5975,7 @@ declare namespace index {
|
|
|
5919
5975
|
index_Tabs as Tabs,
|
|
5920
5976
|
index_TabItem as TabItem,
|
|
5921
5977
|
index_Text as Text,
|
|
5978
|
+
index_TextAreaField as TextAreaField,
|
|
5922
5979
|
index_TextField as TextField,
|
|
5923
5980
|
index_ToggleButton as ToggleButton,
|
|
5924
5981
|
index_ToggleButtonGroup as ToggleButtonGroup,
|
|
@@ -7300,6 +7357,7 @@ declare namespace index {
|
|
|
7300
7357
|
index_FieldDescriptionProps as FieldDescriptionProps,
|
|
7301
7358
|
index_FieldErrorMessageProps as FieldErrorMessageProps,
|
|
7302
7359
|
index_FieldVariations as FieldVariations,
|
|
7360
|
+
index_LabelPositions as LabelPositions,
|
|
7303
7361
|
index_FieldGroupOrientation as FieldGroupOrientation,
|
|
7304
7362
|
index_FieldGroupOptions as FieldGroupOptions,
|
|
7305
7363
|
index_FieldGroupIconProps as FieldGroupIconProps,
|
|
@@ -7360,7 +7418,6 @@ declare namespace index {
|
|
|
7360
7418
|
index_ComponentPropToStyleProp as ComponentPropToStyleProp,
|
|
7361
7419
|
index_ComponentPropsToStylePropsMap as ComponentPropsToStylePropsMap,
|
|
7362
7420
|
index_ComponentPropsToStylePropsMapKeys as ComponentPropsToStylePropsMapKeys,
|
|
7363
|
-
index_labelPositions as labelPositions,
|
|
7364
7421
|
index_SwitchFieldProps as SwitchFieldProps,
|
|
7365
7422
|
index_TableSize as TableSize,
|
|
7366
7423
|
index_TableVariation as TableVariation,
|
|
@@ -7378,9 +7435,10 @@ declare namespace index {
|
|
|
7378
7435
|
index_TextProps as TextProps,
|
|
7379
7436
|
index_TextAreaStyleProps as TextAreaStyleProps,
|
|
7380
7437
|
index_TextAreaProps as TextAreaProps,
|
|
7438
|
+
index_TextAreaFieldProps as TextAreaFieldProps,
|
|
7381
7439
|
index_TextFieldOptions as TextFieldOptions,
|
|
7382
7440
|
index_TextInputFieldProps as TextInputFieldProps,
|
|
7383
|
-
|
|
7441
|
+
index_TextAreaFieldMultilineProps as TextAreaFieldMultilineProps,
|
|
7384
7442
|
index_TextFieldProps as TextFieldProps,
|
|
7385
7443
|
index_ToggleButtonProps as ToggleButtonProps,
|
|
7386
7444
|
index_ToggleButtonGroupProps as ToggleButtonGroupProps,
|
|
@@ -7399,4 +7457,4 @@ declare namespace index {
|
|
|
7399
7457
|
};
|
|
7400
7458
|
}
|
|
7401
7459
|
|
|
7402
|
-
export { Alert, AlertProps, AlertVariations, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSizes, BadgeVariations, BaseComponentProps, BaseStyleProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSizes, ButtonTypes, ButtonVariations, CSSLayoutStyleProps, Card, CardProps, CardVariations, CheckboxField, CheckboxFieldProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionWrapperProps, ColorMode, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, Divider, DividerOptions, DividerOrientations, DividerProps, DividerSizes, ElementProps, ElementType, Expander, ExpanderItem, ExpanderItemProps, ExpanderProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldGroupOrientation, FieldProps, FieldVariations, Flex, FlexContainerStyleProps, FlexItemStyleProps, FlexProps, Grid, GridCollectionProps, GridContainerStyleProps, GridItemStyleProps, GridProps, GridSpanType, HTMLElementType, Heading, HeadingLevel, HeadingProps, Icon, Icon360, Icon3dRotation, Icon4k, Icon5g, Icon6FtApart, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLocation, IconAddLocationAlt, IconAddPhotoAlternate, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAddchart, IconAdjust, IconAdminPanelSettings, IconAgriculture, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnnouncement, IconApartment, IconApi, IconAppBlocking, IconAppSettingsAlt, IconApps, IconArchitecture, IconArchive, IconArrowBack, IconArrowBackIos, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttribution, IconAudiotrack, IconAutoDelete, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBallot, IconBarChart, IconBatchPrediction, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlock, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBook, IconBookOnline, IconBookmark, IconBookmarkBorder, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBurstMode, IconBusiness, IconBusinessCenter, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraRear, IconCameraRoll, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCategory, IconCenterFocusStrong, IconCenterFocusWeak, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyright, IconCoronavirus, IconCorporateFare, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconDashboard, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperMode, IconDeviceHub, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBus, IconDirectionsCar, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRun, IconDirectionsSubway, IconDirectionsTransit, IconDirectionsWalk, IconDisabledByDefault, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotStep, IconDoNotTouch, IconDock, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoubleArrow, IconDownload, IconDownloadDone, IconDrafts, IconDragHandle, IconDragIndicator, IconDriveEta, IconDry, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEast, IconEco, IconEdit, IconEditAttributes, IconEditLocation, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconFace, IconFaceUnlock, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeedback, IconFence, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorReset, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFullscreen, IconFullscreenExit, IconFunctions, IconGTranslate, IconGamepad, IconGames, IconGavel, IconGesture, IconGetApp, IconGif, IconGolfCourse, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridOff, IconGridOn, IconGroup, IconGroupAdd, IconGroupWork, IconGroups, IconHandyman, IconHd, IconHdrOff, IconHdrOn, IconHdrStrong, IconHdrWeak, IconHeadset, IconHeadsetMic, IconHealing, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHome, IconHomeRepairService, IconHomeWork, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIndeterminateCheckBox, IconInfo, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInvertColors, IconInvertColorsOff, IconIso, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconLabel, IconLabelImportant, IconLabelOff, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLightbulb, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationSearching, IconLock, IconLockOpen, IconLogin, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLuggage, IconMail, IconMailOutline, IconMap, IconMapsUgc, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediation, IconMedicalServices, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMode, IconModeComment, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNetworkCheck, IconNetworkLocked, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightsStay, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNotes, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenWith, IconOutbond, IconOutdoorGrill, IconOutlet, IconOutlinedFlag, IconPages, IconPageview, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaVertical, IconPanoramaWideAngle, IconPartyMode, IconPause, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPinDrop, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayForWork, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQueryBuilder, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRateReview, IconReadMore, IconReceipt, IconReceiptLong, IconRecentActors, IconRecordVoiceOver, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveFromQueue, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOne, IconReplay, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRule, IconRuleFolder, IconRunCircle, IconRvHookup, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconScanner, IconScatterPlot, IconSchedule, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenShare, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSelectAll, IconSelfImprovement, IconSend, IconSensorDoor, IconSensorWindow, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShop, IconShopTwo, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShowChart, IconShuffle, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_4Bar, IconSignalWifiOff, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSingleBed, IconSize, IconSkipNext, IconSkipPrevious, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSoap, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStraighten, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTagFaces, IconTapAndPlay, IconTapas, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaters, IconThermostat, IconThumbDown, IconThumbDownAlt, IconThumbUp, IconThumbUpAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_3, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransitEnterexit, IconTranslate, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTty, IconTune, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpdate, IconUpgrade, IconUpload, IconUsb, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideocam, IconVideocamOff, IconVideogameAsset, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVpnKey, IconVpnLock, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWaterDamage, IconWaves, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbSunny, IconWc, IconWeb, IconWebAsset, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, InputMode, InputProps, InputSizes, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Loader, LoaderProps, LoaderSizes, LoaderVariations, Menu, MenuButton, MenuItem, MenuItemProps, MenuProps, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberField, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSizes, Primitive, PrimitiveProps, PrimitivePropsWithRef, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSizes, ResponsiveObject, ResponsiveStyle, ScrollView, ScrollViewProps, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, SliderField, SliderFieldProps, StepperField, StepperFieldProps, StyleProp, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellElement, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, TableSize, TableVariation, Tabs, TabsProps, TabsSpacing, Text, TextAreaFieldProps, TextAreaProps, TextAreaStyleProps, TextField, TextFieldOptions, TextFieldProps, TextInputFieldProps, TextProps, TextVariation, Theme, ToggleButton, ToggleButtonGroup, ToggleButtonGroupProps, ToggleButtonProps, UsePaginationProps, UsePaginationResult, UseSearchFieldProps, View, ViewBox, ViewProps, VisuallyHidden, VisuallyHiddenProps, index$1 as components, labelPositions, index as primitives, useAmplify, useAuthenticator, usePagination, useTheme, withAuthenticator };
|
|
7460
|
+
export { Alert, AlertProps, AlertVariations, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSizes, BadgeVariations, BaseComponentProps, BaseStyleProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSizes, ButtonTypes, ButtonVariations, CSSLayoutStyleProps, Card, CardProps, CardVariations, CheckboxField, CheckboxFieldProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionWrapperProps, ColorMode, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, Divider, DividerOptions, DividerOrientations, DividerProps, DividerSizes, ElementProps, ElementType, Expander, ExpanderItem, ExpanderItemProps, ExpanderProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldGroupOrientation, FieldProps, FieldVariations, Flex, FlexContainerStyleProps, FlexItemStyleProps, FlexProps, Grid, GridCollectionProps, GridContainerStyleProps, GridItemStyleProps, GridProps, GridSpanType, HTMLElementType, Heading, HeadingLevel, HeadingProps, Icon, Icon360, Icon3dRotation, Icon4k, Icon5g, Icon6FtApart, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLocation, IconAddLocationAlt, IconAddPhotoAlternate, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAddchart, IconAdjust, IconAdminPanelSettings, IconAgriculture, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnnouncement, IconApartment, IconApi, IconAppBlocking, IconAppSettingsAlt, IconApps, IconArchitecture, IconArchive, IconArrowBack, IconArrowBackIos, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttribution, IconAudiotrack, IconAutoDelete, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBallot, IconBarChart, IconBatchPrediction, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlock, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBook, IconBookOnline, IconBookmark, IconBookmarkBorder, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBurstMode, IconBusiness, IconBusinessCenter, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraRear, IconCameraRoll, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCategory, IconCenterFocusStrong, IconCenterFocusWeak, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyright, IconCoronavirus, IconCorporateFare, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconDashboard, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperMode, IconDeviceHub, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBus, IconDirectionsCar, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRun, IconDirectionsSubway, IconDirectionsTransit, IconDirectionsWalk, IconDisabledByDefault, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotStep, IconDoNotTouch, IconDock, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoubleArrow, IconDownload, IconDownloadDone, IconDrafts, IconDragHandle, IconDragIndicator, IconDriveEta, IconDry, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEast, IconEco, IconEdit, IconEditAttributes, IconEditLocation, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconFace, IconFaceUnlock, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeedback, IconFence, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorReset, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFullscreen, IconFullscreenExit, IconFunctions, IconGTranslate, IconGamepad, IconGames, IconGavel, IconGesture, IconGetApp, IconGif, IconGolfCourse, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridOff, IconGridOn, IconGroup, IconGroupAdd, IconGroupWork, IconGroups, IconHandyman, IconHd, IconHdrOff, IconHdrOn, IconHdrStrong, IconHdrWeak, IconHeadset, IconHeadsetMic, IconHealing, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHome, IconHomeRepairService, IconHomeWork, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIndeterminateCheckBox, IconInfo, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInvertColors, IconInvertColorsOff, IconIso, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconLabel, IconLabelImportant, IconLabelOff, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLightbulb, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationSearching, IconLock, IconLockOpen, IconLogin, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLuggage, IconMail, IconMailOutline, IconMap, IconMapsUgc, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediation, IconMedicalServices, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMode, IconModeComment, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNetworkCheck, IconNetworkLocked, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightsStay, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNotes, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenWith, IconOutbond, IconOutdoorGrill, IconOutlet, IconOutlinedFlag, IconPages, IconPageview, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaVertical, IconPanoramaWideAngle, IconPartyMode, IconPause, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPinDrop, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayForWork, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQueryBuilder, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRateReview, IconReadMore, IconReceipt, IconReceiptLong, IconRecentActors, IconRecordVoiceOver, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveFromQueue, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOne, IconReplay, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRule, IconRuleFolder, IconRunCircle, IconRvHookup, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconScanner, IconScatterPlot, IconSchedule, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenShare, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSelectAll, IconSelfImprovement, IconSend, IconSensorDoor, IconSensorWindow, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShop, IconShopTwo, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShowChart, IconShuffle, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_4Bar, IconSignalWifiOff, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSingleBed, IconSize, IconSkipNext, IconSkipPrevious, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSoap, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStraighten, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTagFaces, IconTapAndPlay, IconTapas, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaters, IconThermostat, IconThumbDown, IconThumbDownAlt, IconThumbUp, IconThumbUpAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_3, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransitEnterexit, IconTranslate, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTty, IconTune, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpdate, IconUpgrade, IconUpload, IconUsb, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideocam, IconVideocamOff, IconVideogameAsset, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVpnKey, IconVpnLock, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWaterDamage, IconWaves, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbSunny, IconWc, IconWeb, IconWebAsset, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, InputMode, InputProps, InputSizes, LabelPositions, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Loader, LoaderProps, LoaderSizes, LoaderVariations, Menu, MenuButton, MenuItem, MenuItemProps, MenuProps, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberField, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSizes, Primitive, PrimitiveProps, PrimitivePropsWithRef, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSizes, ResponsiveObject, ResponsiveStyle, ScrollView, ScrollViewProps, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, SliderField, SliderFieldProps, StepperField, StepperFieldProps, StyleProp, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellElement, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, TableSize, TableVariation, Tabs, TabsProps, TabsSpacing, Text, TextAreaField, TextAreaFieldMultilineProps, TextAreaFieldProps, TextAreaProps, TextAreaStyleProps, TextField, TextFieldOptions, TextFieldProps, TextInputFieldProps, TextProps, TextVariation, Theme, ToggleButton, ToggleButtonGroup, ToggleButtonGroupProps, ToggleButtonProps, UsePaginationProps, UsePaginationResult, UseSearchFieldProps, View, ViewBox, ViewProps, VisuallyHidden, VisuallyHiddenProps, index$1 as components, index as primitives, useAmplify, useAuthenticator, usePagination, useTheme, withAuthenticator };
|