@splunk/react-ui 4.37.0 → 4.38.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/Button.js +139 -132
- package/CHANGELOG.md +22 -1
- package/Color.js +1145 -977
- package/ComboBox.js +1 -2
- package/Menu.js +161 -153
- package/Multiselect.js +17 -27
- package/ScreenReaderContent.js +138 -94
- package/Search.js +45 -42
- package/Select.js +89 -99
- package/Slider.js +128 -145
- package/Switch.js +122 -118
- package/Text.js +202 -199
- package/package.json +4 -4
- package/types/src/Button/Button.d.ts +15 -5
- package/types/src/Color/Color.d.ts +3 -0
- package/types/src/Color/Palette.d.ts +4 -2
- package/types/src/Date/Date.d.ts +0 -1
- package/types/src/Link/Link.d.ts +3 -4
- package/types/src/Menu/Item.d.ts +6 -3
- package/types/src/Search/Option.d.ts +7 -0
- package/types/src/Select/Select.d.ts +1 -1
- package/types/src/Select/SelectBase.d.ts +0 -1
- package/types/src/Slider/Slider.d.ts +0 -1
- package/types/src/Slider/docs/examples/Error.d.ts +2 -0
- package/types/src/Switch/Switch.d.ts +1 -0
- package/types/src/Text/Text.d.ts +6 -4
- package/types/src/Text/docs/examples/Dimmed.d.ts +2 -0
- package/types/src/TextArea/TextArea.d.ts +2 -2
- package/types/src/Button/docs/examples/Selected.d.ts +0 -2
- package/types/src/Slider/docs/examples/prisma/Error.d.ts +0 -2
- /package/types/src/Date/docs/examples/{prisma/WithoutCalendar.d.ts → WithoutCalendar.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.38.0",
|
|
4
4
|
"description": "Library of React components that implement the Splunk design language",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Splunk Inc.",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
45
45
|
"@dnd-kit/sortable": "^8.0.0",
|
|
46
46
|
"@dnd-kit/utilities": "^3.2.2",
|
|
47
|
-
"@splunk/react-icons": "^4.
|
|
48
|
-
"@splunk/themes": "^0.
|
|
47
|
+
"@splunk/react-icons": "^4.8.0",
|
|
48
|
+
"@splunk/themes": "^0.22.0",
|
|
49
49
|
"@splunk/ui-utils": "^1.7.1",
|
|
50
50
|
"commonmark": "^0.30.0",
|
|
51
51
|
"commonmark-react-renderer": "^4.3.2",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@splunk/babel-preset": "^4.0.0",
|
|
65
65
|
"@splunk/docs-gen": "1.0.0-beta.13",
|
|
66
66
|
"@splunk/eslint-config": "^4.0.0",
|
|
67
|
-
"@splunk/react-docs": "1.0.0-beta.
|
|
67
|
+
"@splunk/react-docs": "1.0.0-beta.19",
|
|
68
68
|
"@splunk/stylelint-config": "^5.0.0",
|
|
69
69
|
"@splunk/test-runner-utils": "^0.4.1",
|
|
70
70
|
"@splunk/webpack-configs": "^7.0.2",
|
|
@@ -34,7 +34,6 @@ interface ButtonPropsBase {
|
|
|
34
34
|
* Turns the button red. If you use this prop, apply other error
|
|
35
35
|
* indicators, such as an error message, to meet accessibility
|
|
36
36
|
* requirements.
|
|
37
|
-
*
|
|
38
37
|
* */
|
|
39
38
|
error?: boolean;
|
|
40
39
|
/** Applies the text that displays on the button. */
|
|
@@ -47,13 +46,24 @@ interface ButtonPropsBase {
|
|
|
47
46
|
* remove the right margin and stretch the button to the full width of
|
|
48
47
|
* its container. */
|
|
49
48
|
inline?: boolean;
|
|
50
|
-
/**
|
|
51
|
-
* as a menu.
|
|
49
|
+
/**
|
|
50
|
+
* Displays the chevron-down icon to indicate that the button behaves as a menu.
|
|
51
|
+
*
|
|
52
|
+
* To meet accessibility requirements, this prop should be used together with the `Dropdown` component.
|
|
53
|
+
*
|
|
54
|
+
* If `Dropdown` is not used, this prop should be used together with `aria-controls` and `aria-expanded`.
|
|
55
|
+
*/
|
|
52
56
|
isMenu?: boolean;
|
|
53
57
|
/** Prevents callback when the button is disabled. */
|
|
54
58
|
onClick?: ButtonClickHandler;
|
|
55
|
-
/**
|
|
56
|
-
|
|
59
|
+
/**
|
|
60
|
+
* Open the "to" link in a new context, which is usually a new tab or window based on browser settings.
|
|
61
|
+
*
|
|
62
|
+
* An icon and a screen reader message is added to indicate this behavior to users.
|
|
63
|
+
* The default message is "(Opens new window)"; this can be customized by passing
|
|
64
|
+
* a string instead of boolean to `openInNewContext`.
|
|
65
|
+
*/
|
|
66
|
+
openInNewContext?: boolean | string;
|
|
57
67
|
/** Removes the left border and border-radius of the button so you can
|
|
58
68
|
* prepend elements to it. */
|
|
59
69
|
prepend?: boolean;
|
|
@@ -27,6 +27,7 @@ interface ColorPropsBase {
|
|
|
27
27
|
error?: boolean;
|
|
28
28
|
/**
|
|
29
29
|
* Set this property to hide the hex value text input in the initial appearance.
|
|
30
|
+
* The input will still appear inside the dropdown when opened.
|
|
30
31
|
* @themeNotes Defaults to `false` in Prisma and `true` in Enterprise themes.
|
|
31
32
|
*/
|
|
32
33
|
hideInput?: boolean;
|
|
@@ -81,6 +82,8 @@ declare class Color extends Component<ColorProps, ColorState> {
|
|
|
81
82
|
private focusExpandButton;
|
|
82
83
|
private controlledExternally;
|
|
83
84
|
private dropdown;
|
|
85
|
+
private swatchToggleReaderContentId;
|
|
86
|
+
private hexInputReaderContentId;
|
|
84
87
|
static propTypes: React.WeakValidationMap<ColorProps>;
|
|
85
88
|
static defaultProps: Required<Pick<ColorPropsBase, "disabled" | "error" | "append" | "prepend" | "palette">>;
|
|
86
89
|
static hasNull(palette: (string | null)[]): boolean;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import Clickable from '@splunk/react-ui/Clickable';
|
|
3
|
-
|
|
3
|
+
import { ComponentProps } from '../utils/types';
|
|
4
|
+
interface PalettePropsBase {
|
|
4
5
|
/**
|
|
5
6
|
* In the prisma theme, controls if the palette is expanded
|
|
6
7
|
*/
|
|
@@ -42,5 +43,6 @@ interface PaletteProps {
|
|
|
42
43
|
*/
|
|
43
44
|
onSystemColorPickerChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
44
45
|
}
|
|
45
|
-
|
|
46
|
+
type PaletteProps = ComponentProps<PalettePropsBase, 'div'>;
|
|
47
|
+
declare function Palette({ expanded, palette, value, swatchToFocusRef, onSwatchClick, expandButtonRef, onPaletteExpand, onSystemColorPickerChange, renderInput, ...otherProps }: PaletteProps): JSX.Element;
|
|
46
48
|
export default Palette;
|
package/types/src/Date/Date.d.ts
CHANGED
package/types/src/Link/Link.d.ts
CHANGED
|
@@ -17,11 +17,10 @@ interface LinkPropsBase {
|
|
|
17
17
|
*/
|
|
18
18
|
elementRef?: React.Ref<HTMLButtonElement | HTMLAnchorElement>;
|
|
19
19
|
/**
|
|
20
|
-
* Open the link in a new context
|
|
21
|
-
* but may open in a new window depending on the user's browser and settings.
|
|
20
|
+
* Open the "to" link in a new context, which is usually a new tab or window based on browser settings.
|
|
22
21
|
*
|
|
23
|
-
* An icon and a message is added to indicate this behavior to users.
|
|
24
|
-
* "(Opens new window)"
|
|
22
|
+
* An icon and a screen reader message is added to indicate this behavior to users.
|
|
23
|
+
* The default message is "(Opens new window)"; this can be customized by passing
|
|
25
24
|
* a string instead of boolean to `openInNewContext`.
|
|
26
25
|
*/
|
|
27
26
|
openInNewContext?: boolean | string;
|
package/types/src/Menu/Item.d.ts
CHANGED
|
@@ -57,10 +57,13 @@ interface ItemPropsBase {
|
|
|
57
57
|
onClick?: React.MouseEventHandler<HTMLAnchorElement | HTMLButtonElement>;
|
|
58
58
|
onFocus?: ItemFocusHandler;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
61
|
-
*
|
|
60
|
+
* Open the "to" link in a new context, which is usually a new tab or window based on browser settings.
|
|
61
|
+
*
|
|
62
|
+
* An icon and a screen reader message is added to indicate this behavior to users.
|
|
63
|
+
* The default message is "(Opens new window)"; this can be customized by passing
|
|
64
|
+
* a string instead of boolean to `openInNewContext`.
|
|
62
65
|
*/
|
|
63
|
-
openInNewContext?: boolean;
|
|
66
|
+
openInNewContext?: boolean | string;
|
|
64
67
|
/**
|
|
65
68
|
* @private
|
|
66
69
|
* Prevents the element from becoming focused. Used to keep the focus inside the filter box
|
|
@@ -32,6 +32,13 @@ interface OptionPropsBase {
|
|
|
32
32
|
* Caution: The element(s) passed here must be pure. All icons in the react-icons package are pure.
|
|
33
33
|
*/
|
|
34
34
|
icon?: React.ReactNode;
|
|
35
|
+
/**
|
|
36
|
+
* Sections of the label string to highlight as a match.
|
|
37
|
+
*/
|
|
38
|
+
matchRanges?: {
|
|
39
|
+
start: number;
|
|
40
|
+
end: number;
|
|
41
|
+
}[];
|
|
35
42
|
/**
|
|
36
43
|
* Callback for click events.
|
|
37
44
|
* Returning "false" from the callback will prevent the parent Search component from updating its value,
|
|
@@ -12,7 +12,7 @@ type SelectFilterChangeHandler = (event: React.ChangeEvent<HTMLInputElement | HT
|
|
|
12
12
|
keyword: string;
|
|
13
13
|
}) => void;
|
|
14
14
|
/** @public */
|
|
15
|
-
type SelectScrollBottomHandler = (event: React.UIEvent<HTMLDivElement> | React.KeyboardEvent<HTMLInputElement> | null) => void;
|
|
15
|
+
type SelectScrollBottomHandler = (event: React.UIEvent<HTMLDivElement> | React.KeyboardEvent<HTMLInputElement> | React.KeyboardEvent<HTMLButtonElement> | null) => void;
|
|
16
16
|
interface SelectPropsBase {
|
|
17
17
|
/**
|
|
18
18
|
* Whether or not to allow entered keyboard printable characters to match options.
|
|
@@ -228,7 +228,6 @@ declare class SelectBase extends Component<SelectBaseProps, SelectBaseState> {
|
|
|
228
228
|
private dropdown;
|
|
229
229
|
private firstSelectedEnabledOption;
|
|
230
230
|
private firstSelectedOptionIndex?;
|
|
231
|
-
private menuId;
|
|
232
231
|
private menuListboxId;
|
|
233
232
|
private previousActiveIndex;
|
|
234
233
|
private selectedOptionCount;
|
|
@@ -25,7 +25,6 @@ interface SliderPropsBase {
|
|
|
25
25
|
elementRef?: React.Ref<HTMLDivElement>;
|
|
26
26
|
/**
|
|
27
27
|
* Highlight the Slider as having an error. The thumb and bar background-color turn to accent negative.
|
|
28
|
-
* @excludeTheme enterprise
|
|
29
28
|
*/
|
|
30
29
|
error: boolean;
|
|
31
30
|
/** When false, display as inline-block with the default width. */
|
|
@@ -29,6 +29,7 @@ interface SwitchPropsBase {
|
|
|
29
29
|
id?: string;
|
|
30
30
|
/** Make the control an inline block with variable width. */
|
|
31
31
|
inline?: boolean;
|
|
32
|
+
inputClassName?: string;
|
|
32
33
|
/**
|
|
33
34
|
* In a couple of cases, the switch is to show state, but is not interactive in itself.
|
|
34
35
|
* The parent takes focus and handles click. Set interactive to false to prevent focus and
|
package/types/src/Text/Text.d.ts
CHANGED
|
@@ -56,8 +56,10 @@ interface TextPropsBase {
|
|
|
56
56
|
* ControlGroup's help component.
|
|
57
57
|
*/
|
|
58
58
|
describedBy?: string;
|
|
59
|
-
/** Determines whether or not the input is editable.
|
|
60
|
-
|
|
59
|
+
/** Determines whether or not the input is editable.
|
|
60
|
+
* If set to `"dimmed"`, the menu item does not respond to events but can still receive focus, and `aria-disabled` is set to `true`.
|
|
61
|
+
*/
|
|
62
|
+
disabled?: boolean | 'dimmed';
|
|
61
63
|
/**
|
|
62
64
|
* A React ref which is set to the DOM element when the component mounts, and null when it unmounts.
|
|
63
65
|
*/
|
|
@@ -226,9 +228,9 @@ declare class Text extends Component<TextProps, TextState> {
|
|
|
226
228
|
select(): void;
|
|
227
229
|
render(): JSX.Element;
|
|
228
230
|
}
|
|
229
|
-
declare const TextWithTheme: React.ForwardRefExoticComponent<Omit<Pick<Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseControlled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "required" | "elementRef" | "splunkTheme" | "inputId" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "inputClassName" | "onInputClick" | "useSyntheticPlaceholder"> & Partial<Pick<Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseControlled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Partial<Pick<Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">>, never>> & {
|
|
231
|
+
declare const TextWithTheme: React.ForwardRefExoticComponent<Omit<Pick<Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseControlled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "required" | "elementRef" | "splunkTheme" | "inputId" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "onInputClick" | "useSyntheticPlaceholder"> & Partial<Pick<Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseControlled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseControlled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Partial<Pick<Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">>, never>> & {
|
|
230
232
|
ref?: React.Ref<Text> | undefined;
|
|
231
|
-
}, "splunkTheme"> | Omit<Pick<Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseUncontrolled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "required" | "elementRef" | "splunkTheme" | "inputId" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "inputClassName" | "onInputClick" | "useSyntheticPlaceholder"> & Partial<Pick<Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseUncontrolled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "inputClassName" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Partial<Pick<Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">>, never>> & {
|
|
233
|
+
}, "splunkTheme"> | Omit<Pick<Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseUncontrolled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoComplete" | "maxLength" | "required" | "elementRef" | "splunkTheme" | "inputId" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "onInputClick" | "useSyntheticPlaceholder"> & Partial<Pick<Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, "slot" | "style" | "title" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "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" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | keyof TextPropsBaseUncontrolled> & Pick<PropTypes.InferProps<React.WeakValidationMap<TextProps>>, "inlist"> & Pick<TextPropsBaseUncontrolled & Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "children" | "value" | "onChange" | "name" | "type" | "tabIndex" | "onFocus" | "onBlur" | "onKeyDown" | "onSelect" | "defaultValue" | "placeholder" | "spellCheck" | "autoCapitalize" | "autoCorrect" | "autoFocus" | "disabled" | "autoComplete" | "maxLength" | "required" | "appearance" | "inline" | "css" | "elementRef" | "error" | "splunkTheme" | "inputId" | "append" | "prepend" | "classNamePrivate" | "inputRef" | "inputClassName" | "labelledBy" | "endAdornment" | "startAdornment" | "describedBy" | "rowsMax" | "rowsMin" | "canClear" | "onInputClick" | "multiline" | "passwordVisibilityToggle" | "useSyntheticPlaceholder">, never>, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">> & Partial<Pick<Required<Pick<TextPropsBase, "type" | "tabIndex" | "placeholder" | "autoFocus" | "disabled" | "appearance" | "inline" | "error" | "append" | "prepend" | "rowsMax" | "rowsMin" | "canClear" | "multiline" | "passwordVisibilityToggle">>, never>> & {
|
|
232
234
|
ref?: React.Ref<Text> | undefined;
|
|
233
235
|
}, "splunkTheme">> & {
|
|
234
236
|
componentType: string;
|