@aws-amplify/ui-react 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/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.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 +40 -30
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/primitives.json +7 -4
- 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';
|
|
@@ -463,6 +463,25 @@ interface InputProps extends ViewProps {
|
|
|
463
463
|
variation?: FieldVariations;
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
+
declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
|
|
467
|
+
interface TextProps extends ViewProps {
|
|
468
|
+
/**
|
|
469
|
+
* HTML allowed tags
|
|
470
|
+
*/
|
|
471
|
+
as?: 'p' | 'span' | 'strong' | 'em';
|
|
472
|
+
/**
|
|
473
|
+
* This should be the primary way to handle different styles of text. Lower-level
|
|
474
|
+
* text styling attributes like color can be set directly, that should be more of an
|
|
475
|
+
* escape hatch.
|
|
476
|
+
*/
|
|
477
|
+
variation?: TextVariation;
|
|
478
|
+
/**
|
|
479
|
+
* This attribute will be used to indicate if the text component should truncate text
|
|
480
|
+
* that exceeds the width of the text element. Truncated text will render an ellipsis.
|
|
481
|
+
*/
|
|
482
|
+
isTruncated?: boolean;
|
|
483
|
+
}
|
|
484
|
+
|
|
466
485
|
/**
|
|
467
486
|
* Shared type across all field types
|
|
468
487
|
*/
|
|
@@ -488,11 +507,12 @@ interface FieldProps {
|
|
|
488
507
|
}
|
|
489
508
|
interface FieldClearButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
490
509
|
}
|
|
491
|
-
interface FieldDescriptionProps extends Pick<FieldProps, 'descriptiveText' | 'labelHidden'> {
|
|
510
|
+
interface FieldDescriptionProps extends TextProps, Pick<FieldProps, 'descriptiveText' | 'labelHidden'> {
|
|
492
511
|
}
|
|
493
|
-
interface FieldErrorMessageProps extends Pick<FieldProps, 'errorMessage'>, Pick<InputProps, 'hasError'> {
|
|
512
|
+
interface FieldErrorMessageProps extends TextProps, Pick<FieldProps, 'errorMessage'>, Pick<InputProps, 'hasError'> {
|
|
494
513
|
}
|
|
495
514
|
declare type FieldVariations = 'quiet';
|
|
515
|
+
declare type LabelPositions = 'start' | 'end' | 'top' | 'bottom';
|
|
496
516
|
|
|
497
517
|
interface TextAreaStyleProps {
|
|
498
518
|
resize?: Property.Resize;
|
|
@@ -763,6 +783,11 @@ interface CheckboxProps extends FlexProps, InputProps {
|
|
|
763
783
|
* Shows on form submission as key pair `name:value`
|
|
764
784
|
*/
|
|
765
785
|
value: string;
|
|
786
|
+
/**
|
|
787
|
+
* Position of label in relation to the checkbox,
|
|
788
|
+
* default is 'start'
|
|
789
|
+
*/
|
|
790
|
+
labelPosition?: LabelPositions;
|
|
766
791
|
}
|
|
767
792
|
|
|
768
793
|
interface CheckboxFieldProps extends CheckboxProps, FieldProps {
|
|
@@ -869,25 +894,6 @@ interface FieldGroupOptions extends FlexProps {
|
|
|
869
894
|
innerEndComponent?: React.ReactNode;
|
|
870
895
|
}
|
|
871
896
|
|
|
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
897
|
declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
892
898
|
interface HeadingProps extends TextProps {
|
|
893
899
|
level?: HeadingLevel;
|
|
@@ -1145,6 +1151,10 @@ interface SelectProps extends ViewProps {
|
|
|
1145
1151
|
}
|
|
1146
1152
|
|
|
1147
1153
|
interface SelectFieldProps extends FieldProps, FlexContainerStyleProps, SelectProps {
|
|
1154
|
+
/**
|
|
1155
|
+
* List of option values for select dropdown
|
|
1156
|
+
*/
|
|
1157
|
+
options?: string[];
|
|
1148
1158
|
}
|
|
1149
1159
|
|
|
1150
1160
|
interface PhoneNumberFieldProps extends TextInputFieldProps {
|
|
@@ -1297,7 +1307,6 @@ interface StepperFieldProps extends TextInputFieldProps {
|
|
|
1297
1307
|
onDecrease?: () => void;
|
|
1298
1308
|
}
|
|
1299
1309
|
|
|
1300
|
-
declare type labelPositions = 'start' | 'end' | 'top' | 'bottom';
|
|
1301
1310
|
interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
|
|
1302
1311
|
/**
|
|
1303
1312
|
* Use this to provide a default checked value for an uncontrolled SwitchField
|
|
@@ -1323,7 +1332,7 @@ interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
|
|
|
1323
1332
|
/**
|
|
1324
1333
|
* Position of label in relation to the switchfield
|
|
1325
1334
|
*/
|
|
1326
|
-
labelPosition?:
|
|
1335
|
+
labelPosition?: LabelPositions;
|
|
1327
1336
|
/**
|
|
1328
1337
|
* This prop adds a name attribute to the input element
|
|
1329
1338
|
*/
|
|
@@ -1459,7 +1468,7 @@ declare const ButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitiveProps
|
|
|
1459
1468
|
|
|
1460
1469
|
declare const Card: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CardProps, "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" | "variation" | "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>>;
|
|
1461
1470
|
|
|
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" | "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"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1471
|
+
declare const CheckboxField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<CheckboxFieldProps, "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" | "labelPosition"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1463
1472
|
|
|
1464
1473
|
declare const Collection: {
|
|
1465
1474
|
<Item>({ className, isSearchable, isPaginated, items, itemsPerPage, searchFilter, searchPlaceholder, type, testId, ...rest }: CollectionProps<Item>): JSX.Element;
|
|
@@ -4175,13 +4184,13 @@ declare const ScrollView: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsW
|
|
|
4175
4184
|
|
|
4176
4185
|
declare const SearchField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SearchFieldProps, "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" | "onClear" | "searchButtonRef"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
4177
4186
|
|
|
4178
|
-
declare const SelectField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SelectFieldProps, "select">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "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" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "defaultChecked" | "inputMode" | "isRequired" | "placeholder" | "translate" | "multiple" | "onChange" | "autoFocus" | "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" | "icon" | "iconColor"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
4187
|
+
declare const SelectField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<SelectFieldProps, "select">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "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" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "defaultChecked" | "inputMode" | "isRequired" | "placeholder" | "translate" | "multiple" | "onChange" | "autoFocus" | "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" | "icon" | "iconColor" | "options"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
4179
4188
|
|
|
4180
4189
|
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" | "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" | "max" | "min" | "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" | "orientation" | "outerStartComponent" | "outerEndComponent" | "innerStartComponent" | "innerEndComponent" | "asChild" | "onValueChange" | "isValueHidden" | "trackSize" | "emptyTrackColor" | "filledTrackColor" | "thumbColor" | "minStepsBetweenThumbs"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
4181
4190
|
|
|
4182
4191
|
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>>;
|
|
4183
4192
|
|
|
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>>;
|
|
4193
|
+
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" | "labelPosition" | "thumbColor" | "isChecked" | "isLabelHidden" | "trackColor" | "trackCheckedColor"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4185
4194
|
|
|
4186
4195
|
declare const Table: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TableProps, "table">, "children" | "border" | "color" | "area" | "caption" | "slot" | "style" | "summary" | "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" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "cellPadding" | "cellSpacing" | "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" | "highlightOnHover"> & React$1.RefAttributes<HTMLTableElement>>;
|
|
4187
4196
|
|
|
@@ -4229,6 +4238,7 @@ declare enum ComponentClassNames {
|
|
|
4229
4238
|
Badge = "amplify-badge",
|
|
4230
4239
|
Button = "amplify-button",
|
|
4231
4240
|
ButtonGroup = "amplify-buttongroup",
|
|
4241
|
+
ButtonLoaderWrapper = "amplify-button__loader-wrapper",
|
|
4232
4242
|
Card = "amplify-card",
|
|
4233
4243
|
Checkbox = "amplify-checkbox",
|
|
4234
4244
|
CheckboxButton = "amplify-checkbox__button",
|
|
@@ -5783,6 +5793,7 @@ type index_FieldClearButtonProps = FieldClearButtonProps;
|
|
|
5783
5793
|
type index_FieldDescriptionProps = FieldDescriptionProps;
|
|
5784
5794
|
type index_FieldErrorMessageProps = FieldErrorMessageProps;
|
|
5785
5795
|
type index_FieldVariations = FieldVariations;
|
|
5796
|
+
type index_LabelPositions = LabelPositions;
|
|
5786
5797
|
type index_FieldGroupOrientation = FieldGroupOrientation;
|
|
5787
5798
|
type index_FieldGroupOptions = FieldGroupOptions;
|
|
5788
5799
|
type index_FieldGroupIconProps = FieldGroupIconProps;
|
|
@@ -5843,7 +5854,6 @@ type index_AllStyleProps = AllStyleProps;
|
|
|
5843
5854
|
type index_ComponentPropToStyleProp = ComponentPropToStyleProp;
|
|
5844
5855
|
declare const index_ComponentPropsToStylePropsMap: typeof ComponentPropsToStylePropsMap;
|
|
5845
5856
|
declare const index_ComponentPropsToStylePropsMapKeys: typeof ComponentPropsToStylePropsMapKeys;
|
|
5846
|
-
type index_labelPositions = labelPositions;
|
|
5847
5857
|
type index_SwitchFieldProps = SwitchFieldProps;
|
|
5848
5858
|
type index_TableSize = TableSize;
|
|
5849
5859
|
type index_TableVariation = TableVariation;
|
|
@@ -7300,6 +7310,7 @@ declare namespace index {
|
|
|
7300
7310
|
index_FieldDescriptionProps as FieldDescriptionProps,
|
|
7301
7311
|
index_FieldErrorMessageProps as FieldErrorMessageProps,
|
|
7302
7312
|
index_FieldVariations as FieldVariations,
|
|
7313
|
+
index_LabelPositions as LabelPositions,
|
|
7303
7314
|
index_FieldGroupOrientation as FieldGroupOrientation,
|
|
7304
7315
|
index_FieldGroupOptions as FieldGroupOptions,
|
|
7305
7316
|
index_FieldGroupIconProps as FieldGroupIconProps,
|
|
@@ -7360,7 +7371,6 @@ declare namespace index {
|
|
|
7360
7371
|
index_ComponentPropToStyleProp as ComponentPropToStyleProp,
|
|
7361
7372
|
index_ComponentPropsToStylePropsMap as ComponentPropsToStylePropsMap,
|
|
7362
7373
|
index_ComponentPropsToStylePropsMapKeys as ComponentPropsToStylePropsMapKeys,
|
|
7363
|
-
index_labelPositions as labelPositions,
|
|
7364
7374
|
index_SwitchFieldProps as SwitchFieldProps,
|
|
7365
7375
|
index_TableSize as TableSize,
|
|
7366
7376
|
index_TableVariation as TableVariation,
|
|
@@ -7399,4 +7409,4 @@ declare namespace index {
|
|
|
7399
7409
|
};
|
|
7400
7410
|
}
|
|
7401
7411
|
|
|
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 };
|
|
7412
|
+
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, 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 };
|