@commercelayer/app-elements 1.9.5 → 1.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{InputDateComponent-3d6ffb0c.js → InputDateComponent-74b53634.js} +1 -1
- package/dist/helpers/unitsOfWeight.d.ts +19 -0
- package/dist/helpers/unitsOfWeight.test.d.ts +1 -0
- package/dist/{main-4a126221.js → main-75a0d091.js} +5921 -5812
- package/dist/main.d.ts +1 -0
- package/dist/main.js +55 -53
- package/dist/style.css +1 -1
- package/dist/ui/atoms/Icon/icons.d.ts +2 -0
- package/dist/ui/composite/Dropdown/DropdownItem.d.ts +292 -3
- package/dist/ui/composite/Dropdown/DropdownItem.test.d.ts +1 -0
- package/dist/ui/forms/InputRadioGroup/InputRadioGroup.d.ts +1 -1
- package/dist/ui/forms/InputReadonly.d.ts +1 -1
- package/dist/ui/resources/ResourceListItem/common.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,299 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
3
|
import { type IconProps } from '../../atoms/Icon/Icon';
|
|
4
|
-
export
|
|
4
|
+
export type DropdownItemProps = React.HTMLAttributes<HTMLElement> & {
|
|
5
5
|
label: string;
|
|
6
6
|
icon?: IconProps['name'] | 'keep-space';
|
|
7
|
-
}
|
|
7
|
+
} & ({
|
|
8
|
+
/**
|
|
9
|
+
* render the component as anchor tag
|
|
10
|
+
*/
|
|
11
|
+
href: string;
|
|
12
|
+
target?: string;
|
|
13
|
+
} | {
|
|
14
|
+
href?: never;
|
|
15
|
+
});
|
|
16
|
+
/**
|
|
17
|
+
* Render a dropdown item to be used inside a `Dropdown` component.
|
|
18
|
+
* By default the component renders as a `button` tag, but you can provide an `href` prop to render it as an `a` tag.
|
|
19
|
+
* When no `href` or `onClick` is provided, the component still renders as `button` tag to prevent the dropdown to be closed when clicked.
|
|
20
|
+
*/
|
|
8
21
|
export declare const DropdownItem: import('../../atoms/SkeletonTemplate').SkeletonTemplateComponent<{
|
|
22
|
+
defaultChecked?: boolean | undefined;
|
|
23
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
24
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
25
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
26
|
+
accessKey?: string | undefined;
|
|
27
|
+
autoFocus?: boolean | undefined;
|
|
28
|
+
className?: string | undefined;
|
|
29
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
30
|
+
contextMenu?: string | undefined;
|
|
31
|
+
dir?: string | undefined;
|
|
32
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
33
|
+
hidden?: boolean | undefined;
|
|
34
|
+
id?: string | undefined;
|
|
35
|
+
lang?: string | undefined;
|
|
36
|
+
nonce?: string | undefined;
|
|
37
|
+
placeholder?: string | undefined;
|
|
38
|
+
slot?: string | undefined;
|
|
39
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
40
|
+
style?: import("react").CSSProperties | undefined;
|
|
41
|
+
tabIndex?: number | undefined;
|
|
42
|
+
title?: string | undefined;
|
|
43
|
+
translate?: "yes" | "no" | undefined;
|
|
44
|
+
radioGroup?: string | undefined;
|
|
45
|
+
role?: import("react").AriaRole | undefined;
|
|
46
|
+
about?: string | undefined;
|
|
47
|
+
content?: string | undefined;
|
|
48
|
+
datatype?: string | undefined;
|
|
49
|
+
inlist?: any;
|
|
50
|
+
prefix?: string | undefined;
|
|
51
|
+
property?: string | undefined;
|
|
52
|
+
rel?: string | undefined;
|
|
53
|
+
resource?: string | undefined;
|
|
54
|
+
rev?: string | undefined;
|
|
55
|
+
typeof?: string | undefined;
|
|
56
|
+
vocab?: string | undefined;
|
|
57
|
+
autoCapitalize?: string | undefined;
|
|
58
|
+
autoCorrect?: string | undefined;
|
|
59
|
+
autoSave?: string | undefined;
|
|
60
|
+
color?: string | undefined;
|
|
61
|
+
itemProp?: string | undefined;
|
|
62
|
+
itemScope?: boolean | undefined;
|
|
63
|
+
itemType?: string | undefined;
|
|
64
|
+
itemID?: string | undefined;
|
|
65
|
+
itemRef?: string | undefined;
|
|
66
|
+
results?: number | undefined;
|
|
67
|
+
security?: string | undefined;
|
|
68
|
+
unselectable?: "on" | "off" | undefined;
|
|
69
|
+
inputMode?: "url" | "search" | "none" | "text" | "tel" | "email" | "numeric" | "decimal" | undefined;
|
|
70
|
+
is?: string | undefined;
|
|
71
|
+
"aria-activedescendant"?: string | undefined;
|
|
72
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
74
|
+
"aria-braillelabel"?: string | undefined;
|
|
75
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
76
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
78
|
+
"aria-colcount"?: number | undefined;
|
|
79
|
+
"aria-colindex"?: number | undefined;
|
|
80
|
+
"aria-colindextext"?: string | undefined;
|
|
81
|
+
"aria-colspan"?: number | undefined;
|
|
82
|
+
"aria-controls"?: string | undefined;
|
|
83
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
84
|
+
"aria-describedby"?: string | undefined;
|
|
85
|
+
"aria-description"?: string | undefined;
|
|
86
|
+
"aria-details"?: string | undefined;
|
|
87
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
88
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
89
|
+
"aria-errormessage"?: string | undefined;
|
|
90
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
91
|
+
"aria-flowto"?: string | undefined;
|
|
92
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
94
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
96
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
97
|
+
"aria-label"?: string | undefined;
|
|
98
|
+
"aria-labelledby"?: string | undefined;
|
|
99
|
+
"aria-level"?: number | undefined;
|
|
100
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
101
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
102
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
103
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
104
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
105
|
+
"aria-owns"?: string | undefined;
|
|
106
|
+
"aria-placeholder"?: string | undefined;
|
|
107
|
+
"aria-posinset"?: number | undefined;
|
|
108
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
109
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
110
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
111
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-roledescription"?: string | undefined;
|
|
113
|
+
"aria-rowcount"?: number | undefined;
|
|
114
|
+
"aria-rowindex"?: number | undefined;
|
|
115
|
+
"aria-rowindextext"?: string | undefined;
|
|
116
|
+
"aria-rowspan"?: number | undefined;
|
|
117
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
118
|
+
"aria-setsize"?: number | undefined;
|
|
119
|
+
"aria-sort"?: "other" | "none" | "ascending" | "descending" | undefined;
|
|
120
|
+
"aria-valuemax"?: number | undefined;
|
|
121
|
+
"aria-valuemin"?: number | undefined;
|
|
122
|
+
"aria-valuenow"?: number | undefined;
|
|
123
|
+
"aria-valuetext"?: string | undefined;
|
|
124
|
+
children?: import("react").ReactNode;
|
|
125
|
+
dangerouslySetInnerHTML?: {
|
|
126
|
+
__html: string | TrustedHTML;
|
|
127
|
+
} | undefined;
|
|
128
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
129
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
130
|
+
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
131
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
132
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
133
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
134
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
135
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
136
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
137
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
138
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
139
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
140
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
141
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
142
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
143
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
144
|
+
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
145
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
146
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
147
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
148
|
+
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
149
|
+
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
150
|
+
onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
151
|
+
onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
152
|
+
onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
153
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
154
|
+
onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
155
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
156
|
+
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
157
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
158
|
+
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
159
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
160
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
161
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
162
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
163
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
164
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
165
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
166
|
+
onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
167
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
168
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
169
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
170
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
171
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
172
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
173
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
174
|
+
onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
175
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
176
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
177
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
178
|
+
onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
179
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
180
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
181
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
182
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
183
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
184
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
185
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
186
|
+
onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
187
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
188
|
+
onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
189
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
190
|
+
onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
191
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
192
|
+
onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
193
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
194
|
+
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
195
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
196
|
+
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
197
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
198
|
+
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
199
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
200
|
+
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
201
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
202
|
+
onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
203
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
204
|
+
onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
205
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
206
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
207
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
208
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
209
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
210
|
+
onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
211
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
212
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
213
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
214
|
+
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
215
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
216
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
217
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
218
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
219
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
220
|
+
onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
221
|
+
onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
222
|
+
onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
223
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
224
|
+
onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
225
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
226
|
+
onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
227
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
228
|
+
onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
229
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
230
|
+
onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
231
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
232
|
+
onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
233
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
234
|
+
onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
235
|
+
onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
236
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
237
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
238
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
239
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
240
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
241
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
242
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
243
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
244
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
245
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
246
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
247
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
248
|
+
onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
249
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
250
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
251
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
252
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
253
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
254
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
255
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
256
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
257
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
258
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
259
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
260
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
261
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
262
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
263
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
264
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
265
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
266
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
267
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
268
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
269
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
270
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
271
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
272
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
273
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
274
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
275
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
276
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
277
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
278
|
+
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
279
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
280
|
+
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
281
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
282
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
283
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
284
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
285
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
286
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
287
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
288
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
289
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
9
290
|
label: string;
|
|
10
|
-
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | "keep-space" | undefined;
|
|
291
|
+
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "bookOpenText" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "treeStructure" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | "keep-space" | undefined;
|
|
292
|
+
href: string;
|
|
293
|
+
target?: string | undefined;
|
|
294
|
+
delayMs?: number | undefined;
|
|
295
|
+
isLoading?: boolean | undefined;
|
|
296
|
+
} | {
|
|
11
297
|
defaultChecked?: boolean | undefined;
|
|
12
298
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
13
299
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -276,6 +562,9 @@ export declare const DropdownItem: import('../../atoms/SkeletonTemplate').Skelet
|
|
|
276
562
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
277
563
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
278
564
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
565
|
+
label: string;
|
|
566
|
+
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "bookOpenText" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "treeStructure" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | "keep-space" | undefined;
|
|
567
|
+
href?: undefined;
|
|
279
568
|
delayMs?: number | undefined;
|
|
280
569
|
isLoading?: boolean | undefined;
|
|
281
570
|
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -18,7 +18,7 @@ export declare const InputRadioGroup: import('../../atoms/SkeletonTemplate').Ske
|
|
|
18
18
|
showInput?: boolean | undefined;
|
|
19
19
|
viewMode?: "grid" | "list" | "inline" | undefined;
|
|
20
20
|
hint?: {
|
|
21
|
-
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | undefined;
|
|
21
|
+
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "bookOpenText" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "treeStructure" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | undefined;
|
|
22
22
|
text: ReactNode;
|
|
23
23
|
} | undefined;
|
|
24
24
|
feedback?: Omit<import("../InputFeedback").InputFeedbackProps, "className"> | undefined;
|
|
@@ -25,7 +25,7 @@ export declare const InputReadonly: import('../atoms/SkeletonTemplate').Skeleton
|
|
|
25
25
|
showCopyAction?: boolean | undefined;
|
|
26
26
|
label?: string | undefined;
|
|
27
27
|
hint?: {
|
|
28
|
-
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | undefined;
|
|
28
|
+
icon?: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "bookOpenText" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "treeStructure" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle" | undefined;
|
|
29
29
|
text: import("react").ReactNode;
|
|
30
30
|
} | undefined;
|
|
31
31
|
feedback?: Omit<import("./InputFeedback").InputFeedbackProps, "className"> | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const ListItemDescription: import('../../atoms/SkeletonTemplate')
|
|
|
8
8
|
}>;
|
|
9
9
|
export declare const ListItemIcon: import('../../atoms/SkeletonTemplate').SkeletonTemplateComponent<{
|
|
10
10
|
color: "none" | "green" | "orange" | "red" | "gray" | "teal" | "white" | "black" | undefined;
|
|
11
|
-
icon: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle";
|
|
11
|
+
icon: "download" | "package" | "settings" | "x" | "apps" | "appWindow" | "arrowBendDownRight" | "arrowCircleDown" | "arrowCircleUp" | "arrowClockwise" | "arrowDown" | "arrowLeft" | "arrowRight" | "arrowsLeftRight" | "arrowUpRight" | "asterisk" | "bookOpenText" | "buildings" | "bulb" | "caretDown" | "caretRight" | "chat" | "chatCircle" | "check" | "cloud" | "credentials" | "creditCard" | "eye" | "flag" | "folderOpen" | "funnel" | "github" | "globe" | "google" | "home" | "hourglass" | "info" | "lifebuoy" | "magnifyingGlass" | "minus" | "minusCircle" | "pencilSimple" | "plus" | "printer" | "pulse" | "puzzle" | "question" | "resources" | "rocketLaunch" | "shield" | "shoppingBag" | "signOut" | "slack" | "team" | "treeStructure" | "truck" | "tShirt" | "upload" | "user" | "userCircle" | "users" | "warning" | "warningCircle" | "xCircle";
|
|
12
12
|
delayMs?: number | undefined;
|
|
13
13
|
isLoading?: boolean | undefined;
|
|
14
14
|
}>;
|