@particle-network/ui-react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/dist/components/ProgressWrapper/index.d.ts +34 -0
- package/dist/components/ProgressWrapper/index.js +102 -0
- package/dist/components/UXButton/button-group-context.d.ts +2 -0
- package/dist/components/UXButton/button-group-context.js +6 -0
- package/dist/components/UXButton/button-group.d.ts +4 -0
- package/dist/components/UXButton/button-group.js +22 -0
- package/dist/components/UXButton/button-theme.d.ts +236 -0
- package/dist/components/UXButton/button-theme.js +626 -0
- package/dist/components/UXButton/button.d.ts +4 -0
- package/dist/components/UXButton/button.js +31 -0
- package/dist/components/UXButton/index.d.ts +8 -0
- package/dist/components/UXButton/index.js +6 -0
- package/dist/components/UXButton/use-button-group.d.ts +37 -0
- package/dist/components/UXButton/use-button-group.js +55 -0
- package/dist/components/UXButton/use-button.d.ts +65 -0
- package/dist/components/UXButton/use-button.js +136 -0
- package/dist/components/UXCheckbox/checkbox.extend.d.ts +7 -0
- package/dist/components/UXCheckbox/checkbox.extend.js +151 -0
- package/dist/components/UXCheckbox/checkbox.icon.d.ts +6 -0
- package/dist/components/UXCheckbox/checkbox.icon.js +46 -0
- package/dist/components/UXCheckbox/index.d.ts +10 -0
- package/dist/components/UXCheckbox/index.js +17 -0
- package/dist/components/UXChip/chip.extend.d.ts +299 -0
- package/dist/components/UXChip/chip.extend.js +236 -0
- package/dist/components/UXChip/index.d.ts +302 -0
- package/dist/components/UXChip/index.js +10 -0
- package/dist/components/UXDivider/divider.extend.d.ts +286 -0
- package/dist/components/UXDivider/divider.extend.js +15 -0
- package/dist/components/UXDivider/index.d.ts +4 -0
- package/dist/components/UXDivider/index.js +10 -0
- package/dist/components/UXDropdown/dropdown-item.d.ts +3 -0
- package/dist/components/UXDropdown/dropdown-item.js +306 -0
- package/dist/components/UXDropdown/dropdown-menu.d.ts +3 -0
- package/dist/components/UXDropdown/dropdown-menu.js +25 -0
- package/dist/components/UXDropdown/dropdown-section.d.ts +1 -0
- package/dist/components/UXDropdown/dropdown-section.js +2 -0
- package/dist/components/UXDropdown/dropdown.d.ts +4 -0
- package/dist/components/UXDropdown/dropdown.js +21 -0
- package/dist/components/UXDropdown/index.d.ts +6 -0
- package/dist/components/UXDropdown/index.js +6 -0
- package/dist/components/UXHint/index.d.ts +8 -0
- package/dist/components/UXHint/index.js +22 -0
- package/dist/components/UXInput/index.d.ts +346 -0
- package/dist/components/UXInput/index.js +10 -0
- package/dist/components/UXInput/input.extend.d.ts +343 -0
- package/dist/components/UXInput/input.extend.js +6 -0
- package/dist/components/UXModal/index.d.ts +10 -0
- package/dist/components/UXModal/index.js +89 -0
- package/dist/components/UXNumberInput/index.d.ts +5 -0
- package/dist/components/UXNumberInput/index.js +10 -0
- package/dist/components/UXNumberInput/number-input.extend.d.ts +8 -0
- package/dist/components/UXNumberInput/number-input.extend.js +6 -0
- package/dist/components/UXPopover/index.d.ts +6 -0
- package/dist/components/UXPopover/index.js +10 -0
- package/dist/components/UXPopover/popover.extend.d.ts +7 -0
- package/dist/components/UXPopover/popover.extend.js +26 -0
- package/dist/components/UXRadio/index.d.ts +10 -0
- package/dist/components/UXRadio/index.js +12 -0
- package/dist/components/UXRadio/radio.extend.d.ts +7 -0
- package/dist/components/UXRadio/radio.extend.js +97 -0
- package/dist/components/UXSelect/index.d.ts +6 -0
- package/dist/components/UXSelect/index.js +51 -0
- package/dist/components/UXSwitch/index.d.ts +331 -0
- package/dist/components/UXSwitch/index.js +10 -0
- package/dist/components/UXSwitch/switch.extend.d.ts +328 -0
- package/dist/components/UXSwitch/switch.extend.js +117 -0
- package/dist/components/UXTabs/index.d.ts +9 -0
- package/dist/components/UXTabs/index.js +11 -0
- package/dist/components/UXTabs/tabs.classes.d.ts +210 -0
- package/dist/components/UXTabs/tabs.classes.js +530 -0
- package/dist/components/UXTabs/tabs.extend.d.ts +8 -0
- package/dist/components/UXTabs/tabs.extend.js +6 -0
- package/dist/components/UXTooltip/index.d.ts +5 -0
- package/dist/components/UXTooltip/index.js +23 -0
- package/dist/components/UXTooltip/tooltip.extend.d.ts +314 -0
- package/dist/components/UXTooltip/tooltip.extend.js +27 -0
- package/dist/components/index.d.ts +44 -0
- package/dist/components/index.js +31 -0
- package/dist/components/layout/Center.d.ts +4 -0
- package/dist/components/layout/Center.js +11 -0
- package/dist/components/layout/Circle.d.ts +6 -0
- package/dist/components/layout/Circle.js +12 -0
- package/dist/components/layout/Flex.d.ts +29 -0
- package/dist/components/layout/Flex.js +24 -0
- package/dist/components/layout/HStack.d.ts +4 -0
- package/dist/components/layout/HStack.js +12 -0
- package/dist/components/layout/Square.d.ts +8 -0
- package/dist/components/layout/Square.js +13 -0
- package/dist/components/layout/VStack.d.ts +4 -0
- package/dist/components/layout/VStack.js +12 -0
- package/dist/components/typography/Text.d.ts +3 -0
- package/dist/components/typography/Text.js +12 -0
- package/dist/components/typography/Text.type.d.ts +103 -0
- package/dist/components/typography/Text.type.js +47 -0
- package/dist/icons/index.d.ts +6 -0
- package/dist/icons/index.js +58 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/utils/classes.d.ts +35 -0
- package/dist/utils/classes.js +87 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/input-classes.d.ts +427 -0
- package/dist/utils/input-classes.js +568 -0
- package/dist/utils/variants.d.ts +91 -0
- package/dist/utils/variants.js +100 -0
- package/package.json +42 -0
- package/tailwind-preset.js +298 -0
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import ExtendedInput from './input.extend';
|
|
3
|
+
export type UXInputProps = React.ComponentPropsWithRef<typeof ExtendedInput>;
|
|
4
|
+
declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
5
|
+
fullWidth?: boolean | undefined;
|
|
6
|
+
ref?: React.Ref<HTMLInputElement> | undefined;
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
defaultChecked?: any;
|
|
9
|
+
defaultValue?: string | undefined;
|
|
10
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
11
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
12
|
+
accessKey?: string | undefined;
|
|
13
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
14
|
+
autoFocus?: boolean | undefined;
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
17
|
+
contextMenu?: string | undefined;
|
|
18
|
+
dir?: string | undefined;
|
|
19
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
20
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
21
|
+
hidden?: boolean | undefined;
|
|
22
|
+
id?: string | undefined;
|
|
23
|
+
lang?: string | undefined;
|
|
24
|
+
nonce?: string | undefined;
|
|
25
|
+
slot?: any;
|
|
26
|
+
spellCheck?: "true" | "false" | undefined;
|
|
27
|
+
style?: React.CSSProperties | undefined;
|
|
28
|
+
tabIndex?: number | undefined;
|
|
29
|
+
title?: string | undefined;
|
|
30
|
+
translate?: "yes" | "no" | undefined;
|
|
31
|
+
radioGroup?: string | undefined;
|
|
32
|
+
role?: React.AriaRole | undefined;
|
|
33
|
+
about?: string | undefined;
|
|
34
|
+
content?: string | undefined;
|
|
35
|
+
datatype?: string | undefined;
|
|
36
|
+
inlist?: any;
|
|
37
|
+
prefix?: string | undefined;
|
|
38
|
+
property?: string | undefined;
|
|
39
|
+
rel?: string | undefined;
|
|
40
|
+
resource?: string | undefined;
|
|
41
|
+
rev?: string | undefined;
|
|
42
|
+
typeof?: string | undefined;
|
|
43
|
+
vocab?: string | undefined;
|
|
44
|
+
autoCorrect?: string | undefined;
|
|
45
|
+
autoSave?: string | undefined;
|
|
46
|
+
color?: "default" | "secondary" | "primary" | "success" | "danger" | "warning" | "bullish" | "bearish" | undefined;
|
|
47
|
+
itemProp?: string | undefined;
|
|
48
|
+
itemScope?: boolean | undefined;
|
|
49
|
+
itemType?: string | undefined;
|
|
50
|
+
itemID?: string | undefined;
|
|
51
|
+
itemRef?: string | undefined;
|
|
52
|
+
results?: number | undefined;
|
|
53
|
+
security?: string | undefined;
|
|
54
|
+
unselectable?: "off" | "on" | undefined;
|
|
55
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
56
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
57
|
+
popoverTarget?: string | undefined;
|
|
58
|
+
inert?: boolean | undefined;
|
|
59
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
60
|
+
is?: string | undefined;
|
|
61
|
+
exportparts?: string | undefined;
|
|
62
|
+
part?: string | undefined;
|
|
63
|
+
"aria-activedescendant"?: string | undefined;
|
|
64
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
65
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
66
|
+
"aria-braillelabel"?: string | undefined;
|
|
67
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
68
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
69
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
70
|
+
"aria-colcount"?: number | undefined;
|
|
71
|
+
"aria-colindex"?: number | undefined;
|
|
72
|
+
"aria-colindextext"?: string | undefined;
|
|
73
|
+
"aria-colspan"?: number | undefined;
|
|
74
|
+
"aria-controls"?: string | undefined;
|
|
75
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
76
|
+
"aria-describedby"?: string | undefined;
|
|
77
|
+
"aria-description"?: string | undefined;
|
|
78
|
+
"aria-details"?: string | undefined;
|
|
79
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
80
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
81
|
+
"aria-errormessage"?: string | undefined;
|
|
82
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
"aria-flowto"?: string | undefined;
|
|
84
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
86
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
88
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
89
|
+
"aria-label"?: string | undefined;
|
|
90
|
+
"aria-labelledby"?: string | undefined;
|
|
91
|
+
"aria-level"?: number | undefined;
|
|
92
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
93
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
94
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
96
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
97
|
+
"aria-owns"?: string | undefined;
|
|
98
|
+
"aria-placeholder"?: string | undefined;
|
|
99
|
+
"aria-posinset"?: number | undefined;
|
|
100
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
101
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
102
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
103
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
104
|
+
"aria-roledescription"?: string | undefined;
|
|
105
|
+
"aria-rowcount"?: number | undefined;
|
|
106
|
+
"aria-rowindex"?: number | undefined;
|
|
107
|
+
"aria-rowindextext"?: string | undefined;
|
|
108
|
+
"aria-rowspan"?: number | undefined;
|
|
109
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
110
|
+
"aria-setsize"?: number | undefined;
|
|
111
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
112
|
+
"aria-valuemax"?: number | undefined;
|
|
113
|
+
"aria-valuemin"?: number | undefined;
|
|
114
|
+
"aria-valuenow"?: number | undefined;
|
|
115
|
+
"aria-valuetext"?: string | undefined;
|
|
116
|
+
dangerouslySetInnerHTML?: {
|
|
117
|
+
__html: string | TrustedHTML;
|
|
118
|
+
} | undefined;
|
|
119
|
+
onCopy?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
120
|
+
onCopyCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
121
|
+
onCut?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
122
|
+
onCutCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
123
|
+
onPaste?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
124
|
+
onPasteCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
125
|
+
onCompositionEnd?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
126
|
+
onCompositionEndCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
127
|
+
onCompositionStart?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
128
|
+
onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
129
|
+
onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
130
|
+
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
131
|
+
onFocus?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<HTMLInputElement, Element>) => void)) | undefined;
|
|
132
|
+
onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
133
|
+
onBlur?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<HTMLInputElement, Element>) => void)) | undefined;
|
|
134
|
+
onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
135
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
136
|
+
onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
137
|
+
onBeforeInput?: (React.InputEventHandler<HTMLInputElement> & React.FormEventHandler<HTMLInputElement>) | undefined;
|
|
138
|
+
onBeforeInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
139
|
+
onInput?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
140
|
+
onInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
141
|
+
onReset?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
142
|
+
onResetCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
143
|
+
onSubmit?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
144
|
+
onSubmitCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
145
|
+
onInvalid?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
146
|
+
onInvalidCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
147
|
+
onLoad?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
148
|
+
onLoadCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
149
|
+
onError?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
150
|
+
onErrorCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
151
|
+
onKeyDown?: (React.KeyboardEventHandler<HTMLInputElement> & ((e: import("@react-types/shared").KeyboardEvent) => void)) | undefined;
|
|
152
|
+
onKeyDownCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
153
|
+
onKeyPress?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
154
|
+
onKeyPressCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
155
|
+
onKeyUp?: (React.KeyboardEventHandler<HTMLInputElement> & ((e: import("@react-types/shared").KeyboardEvent) => void)) | undefined;
|
|
156
|
+
onKeyUpCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
157
|
+
onAbort?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
158
|
+
onAbortCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
159
|
+
onCanPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
160
|
+
onCanPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
161
|
+
onCanPlayThrough?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
162
|
+
onCanPlayThroughCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
163
|
+
onDurationChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
164
|
+
onDurationChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
165
|
+
onEmptied?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
166
|
+
onEmptiedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
167
|
+
onEncrypted?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
168
|
+
onEncryptedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
169
|
+
onEnded?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
170
|
+
onEndedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
171
|
+
onLoadedData?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
172
|
+
onLoadedDataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
173
|
+
onLoadedMetadata?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
174
|
+
onLoadedMetadataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
175
|
+
onLoadStart?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
176
|
+
onLoadStartCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
177
|
+
onPause?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
178
|
+
onPauseCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
179
|
+
onPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
180
|
+
onPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
181
|
+
onPlaying?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
182
|
+
onPlayingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
183
|
+
onProgress?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
184
|
+
onProgressCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
185
|
+
onRateChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
186
|
+
onRateChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
187
|
+
onSeeked?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
188
|
+
onSeekedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
189
|
+
onSeeking?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
190
|
+
onSeekingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
191
|
+
onStalled?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
192
|
+
onStalledCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
193
|
+
onSuspend?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
194
|
+
onSuspendCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
195
|
+
onTimeUpdate?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
196
|
+
onTimeUpdateCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
197
|
+
onVolumeChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
198
|
+
onVolumeChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
199
|
+
onWaiting?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
200
|
+
onWaitingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
201
|
+
onAuxClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
202
|
+
onAuxClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
203
|
+
onClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
204
|
+
onClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
205
|
+
onContextMenu?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
206
|
+
onContextMenuCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
207
|
+
onDoubleClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
208
|
+
onDoubleClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
209
|
+
onDrag?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
210
|
+
onDragCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
211
|
+
onDragEnd?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
212
|
+
onDragEndCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
213
|
+
onDragEnter?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
214
|
+
onDragEnterCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
215
|
+
onDragExit?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
216
|
+
onDragExitCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
217
|
+
onDragLeave?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
218
|
+
onDragLeaveCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
219
|
+
onDragOver?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
220
|
+
onDragOverCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
221
|
+
onDragStart?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
222
|
+
onDragStartCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
223
|
+
onDrop?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
224
|
+
onDropCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
225
|
+
onMouseDown?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
226
|
+
onMouseDownCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
227
|
+
onMouseEnter?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
228
|
+
onMouseLeave?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
229
|
+
onMouseMove?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
230
|
+
onMouseMoveCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
231
|
+
onMouseOut?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
232
|
+
onMouseOutCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
233
|
+
onMouseOver?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
234
|
+
onMouseOverCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
235
|
+
onMouseUp?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
236
|
+
onMouseUpCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
237
|
+
onSelect?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
238
|
+
onSelectCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
239
|
+
onTouchCancel?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
240
|
+
onTouchCancelCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
241
|
+
onTouchEnd?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
242
|
+
onTouchEndCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
243
|
+
onTouchMove?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
244
|
+
onTouchMoveCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
245
|
+
onTouchStart?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
246
|
+
onTouchStartCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
247
|
+
onPointerDown?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
248
|
+
onPointerDownCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
249
|
+
onPointerMove?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
250
|
+
onPointerMoveCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
251
|
+
onPointerUp?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
252
|
+
onPointerUpCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
253
|
+
onPointerCancel?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
254
|
+
onPointerCancelCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
255
|
+
onPointerEnter?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
256
|
+
onPointerLeave?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
257
|
+
onPointerOver?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
258
|
+
onPointerOverCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
259
|
+
onPointerOut?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
260
|
+
onPointerOutCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
261
|
+
onGotPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
262
|
+
onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
263
|
+
onLostPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
264
|
+
onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
265
|
+
onScroll?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
266
|
+
onScrollCapture?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
267
|
+
onScrollEnd?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
268
|
+
onScrollEndCapture?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
269
|
+
onWheel?: React.WheelEventHandler<HTMLInputElement> | undefined;
|
|
270
|
+
onWheelCapture?: React.WheelEventHandler<HTMLInputElement> | undefined;
|
|
271
|
+
onAnimationStart?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
272
|
+
onAnimationStartCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
273
|
+
onAnimationEnd?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
274
|
+
onAnimationEndCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
275
|
+
onAnimationIteration?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
276
|
+
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
277
|
+
onToggle?: React.ToggleEventHandler<HTMLInputElement> | undefined;
|
|
278
|
+
onBeforeToggle?: React.ToggleEventHandler<HTMLInputElement> | undefined;
|
|
279
|
+
onTransitionCancel?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
280
|
+
onTransitionCancelCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
281
|
+
onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
282
|
+
onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
283
|
+
onTransitionRun?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
284
|
+
onTransitionRunCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
285
|
+
onTransitionStart?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
286
|
+
onTransitionStartCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
287
|
+
form?: string | undefined;
|
|
288
|
+
list?: string | undefined;
|
|
289
|
+
step?: string | number | undefined;
|
|
290
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
291
|
+
value?: string | (readonly string[] & string) | undefined;
|
|
292
|
+
width?: string | number | undefined;
|
|
293
|
+
height?: string | number | undefined;
|
|
294
|
+
radius?: "sm" | "md" | "lg" | "none" | "full" | undefined;
|
|
295
|
+
multiple?: boolean | undefined;
|
|
296
|
+
disabled?: boolean | undefined;
|
|
297
|
+
variant?: "flat" | "bordered" | "faded" | "underlined" | undefined;
|
|
298
|
+
labelPlacement?: "inside" | "outside" | "outside-left" | "outside-top" | undefined;
|
|
299
|
+
label?: React.ReactNode;
|
|
300
|
+
isInvalid?: boolean | undefined;
|
|
301
|
+
disableAnimation?: boolean | undefined;
|
|
302
|
+
isDisabled?: boolean | undefined;
|
|
303
|
+
pattern?: string | undefined;
|
|
304
|
+
as?: import("@heroui/system-rsc").As<any> | undefined;
|
|
305
|
+
key?: React.Key | null | undefined;
|
|
306
|
+
onFocusChange?: ((isFocused: boolean) => void) | undefined;
|
|
307
|
+
type?: string | undefined;
|
|
308
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
309
|
+
formEncType?: string | undefined;
|
|
310
|
+
formMethod?: string | undefined;
|
|
311
|
+
formNoValidate?: boolean | undefined;
|
|
312
|
+
formTarget?: string | undefined;
|
|
313
|
+
name?: string | undefined;
|
|
314
|
+
excludeFromTabOrder?: boolean | undefined;
|
|
315
|
+
startContent?: React.ReactNode;
|
|
316
|
+
endContent?: React.ReactNode;
|
|
317
|
+
onClear?: (() => void) | undefined;
|
|
318
|
+
autoComplete?: string | undefined;
|
|
319
|
+
alt?: string | undefined;
|
|
320
|
+
maxLength?: number | undefined;
|
|
321
|
+
minLength?: number | undefined;
|
|
322
|
+
accept?: string | undefined;
|
|
323
|
+
capture?: boolean | "user" | "environment" | undefined;
|
|
324
|
+
checked?: boolean | undefined;
|
|
325
|
+
src?: string | undefined;
|
|
326
|
+
classNames?: import("@heroui/theme").SlotsToClasses<"label" | "inputWrapper" | "base" | "input" | "description" | "errorMessage" | "mainWrapper" | "innerWrapper" | "clearButton" | "helperWrapper"> | undefined;
|
|
327
|
+
max?: string | number | undefined;
|
|
328
|
+
min?: string | number | undefined;
|
|
329
|
+
placeholder?: string | undefined;
|
|
330
|
+
readOnly?: boolean | undefined;
|
|
331
|
+
required?: boolean | undefined;
|
|
332
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
333
|
+
isReadOnly?: boolean | undefined;
|
|
334
|
+
isRequired?: boolean | undefined;
|
|
335
|
+
validationState?: import("@react-types/shared").ValidationState | undefined;
|
|
336
|
+
validationBehavior?: "aria" | "native" | undefined;
|
|
337
|
+
validate?: ((value: string) => import("@react-types/shared").ValidationError | true | null | undefined) | undefined;
|
|
338
|
+
description?: React.ReactNode;
|
|
339
|
+
errorMessage?: React.ReactNode | ((v: import("@react-types/shared").ValidationResult) => React.ReactNode);
|
|
340
|
+
isClearable?: boolean | undefined;
|
|
341
|
+
baseRef?: React.Ref<HTMLDivElement> | undefined;
|
|
342
|
+
wrapperRef?: React.Ref<HTMLDivElement> | undefined;
|
|
343
|
+
innerWrapperRef?: React.Ref<HTMLDivElement> | undefined;
|
|
344
|
+
textAlign?: "center" | "left" | "right" | undefined;
|
|
345
|
+
}, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
346
|
+
export default UXInput;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import input_extend from "./input.extend.js";
|
|
4
|
+
const UXInput_UXInput = /*#__PURE__*/ forwardRef((props, ref)=>/*#__PURE__*/ jsx(input_extend, {
|
|
5
|
+
...props,
|
|
6
|
+
ref: ref
|
|
7
|
+
}));
|
|
8
|
+
UXInput_UXInput.displayName = 'UX.Input';
|
|
9
|
+
const UXInput = UXInput_UXInput;
|
|
10
|
+
export { UXInput as default };
|