@candidhealth/react-vitals 1.0.0-alpha.8 → 1.0.0-alpha.9
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/index.d.mts +699 -347
- package/dist/index.d.ts +699 -347
- package/dist/index.js +730 -518
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +530 -320
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ComponentPropsWithoutRef, PropsWithChildren, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, RefObject,
|
|
2
|
+
import React__default, { ComponentPropsWithoutRef, PropsWithChildren, ReactNode, InputHTMLAttributes, ForwardRefExoticComponent, RefAttributes, TextareaHTMLAttributes, RefObject, ComponentProps } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { IconDefinition, SizeProp } from '@fortawesome/fontawesome-svg-core';
|
|
5
5
|
import { Placement } from '@floating-ui/react';
|
|
@@ -16,7 +16,8 @@ import { PhoneInputProps } from 'react-international-phone';
|
|
|
16
16
|
export { getCountry } from 'react-international-phone';
|
|
17
17
|
import * as RadixPopover from '@radix-ui/react-popover';
|
|
18
18
|
import * as RadixSwitch from '@radix-ui/react-switch';
|
|
19
|
-
import
|
|
19
|
+
import * as _tanstack_react_table from '@tanstack/react-table';
|
|
20
|
+
import { Table as Table$1, TableOptions, ColumnSort, TableMeta, ColumnSizingState, ColumnSizingInfoState } from '@tanstack/react-table';
|
|
20
21
|
import { TabsContentProps } from '@radix-ui/react-tabs';
|
|
21
22
|
|
|
22
23
|
type AvatarVariant = "active" | "inactive";
|
|
@@ -76,292 +77,7 @@ type ButtonStyleProps = {
|
|
|
76
77
|
declare const buttonStyles: ({ fullWidth, size, intent, variant, soften, loading, roundedness, }: Omit<ButtonStyleProps, "disabled">) => string;
|
|
77
78
|
|
|
78
79
|
type ButtonProps = Simplify<ButtonStyleProps & React$1.ComponentPropsWithoutRef<"button">>;
|
|
79
|
-
declare const Button: React$1.ForwardRefExoticComponent<
|
|
80
|
-
fullWidth?: boolean | undefined;
|
|
81
|
-
size?: ("sm" | "md" | "xs" | "lg") | undefined;
|
|
82
|
-
intent?: ("error" | "primary" | "default" | "danger") | undefined;
|
|
83
|
-
variant?: undefined | undefined;
|
|
84
|
-
disabled?: boolean | undefined;
|
|
85
|
-
loading?: boolean | undefined;
|
|
86
|
-
soften?: undefined | undefined;
|
|
87
|
-
roundedness?: ("default" | "large") | undefined;
|
|
88
|
-
form?: string | undefined | undefined;
|
|
89
|
-
slot?: string | undefined | undefined;
|
|
90
|
-
style?: React$1.CSSProperties | undefined;
|
|
91
|
-
title?: string | undefined | undefined;
|
|
92
|
-
children?: React$1.ReactNode;
|
|
93
|
-
key?: React$1.Key | null | undefined;
|
|
94
|
-
defaultChecked?: boolean | undefined | undefined;
|
|
95
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
96
|
-
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
97
|
-
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
98
|
-
accessKey?: string | undefined | undefined;
|
|
99
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
100
|
-
autoFocus?: boolean | undefined | undefined;
|
|
101
|
-
className?: string | undefined | undefined;
|
|
102
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
103
|
-
contextMenu?: string | undefined | undefined;
|
|
104
|
-
dir?: string | undefined | undefined;
|
|
105
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
106
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
107
|
-
hidden?: boolean | undefined | undefined;
|
|
108
|
-
id?: string | undefined | undefined;
|
|
109
|
-
lang?: string | undefined | undefined;
|
|
110
|
-
nonce?: string | undefined | undefined;
|
|
111
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
112
|
-
tabIndex?: number | undefined | undefined;
|
|
113
|
-
translate?: "yes" | "no" | undefined | undefined;
|
|
114
|
-
radioGroup?: string | undefined | undefined;
|
|
115
|
-
role?: React$1.AriaRole | undefined;
|
|
116
|
-
about?: string | undefined | undefined;
|
|
117
|
-
content?: string | undefined | undefined;
|
|
118
|
-
datatype?: string | undefined | undefined;
|
|
119
|
-
inlist?: any;
|
|
120
|
-
prefix?: string | undefined | undefined;
|
|
121
|
-
property?: string | undefined | undefined;
|
|
122
|
-
rel?: string | undefined | undefined;
|
|
123
|
-
resource?: string | undefined | undefined;
|
|
124
|
-
rev?: string | undefined | undefined;
|
|
125
|
-
typeof?: string | undefined | undefined;
|
|
126
|
-
vocab?: string | undefined | undefined;
|
|
127
|
-
autoCorrect?: string | undefined | undefined;
|
|
128
|
-
autoSave?: string | undefined | undefined;
|
|
129
|
-
color?: string | undefined | undefined;
|
|
130
|
-
itemProp?: string | undefined | undefined;
|
|
131
|
-
itemScope?: boolean | undefined | undefined;
|
|
132
|
-
itemType?: string | undefined | undefined;
|
|
133
|
-
itemID?: string | undefined | undefined;
|
|
134
|
-
itemRef?: string | undefined | undefined;
|
|
135
|
-
results?: number | undefined | undefined;
|
|
136
|
-
security?: string | undefined | undefined;
|
|
137
|
-
unselectable?: "on" | "off" | undefined | undefined;
|
|
138
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
139
|
-
is?: string | undefined | undefined;
|
|
140
|
-
exportparts?: string | undefined | undefined;
|
|
141
|
-
part?: string | undefined | undefined;
|
|
142
|
-
"aria-activedescendant"?: string | undefined | undefined;
|
|
143
|
-
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
144
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
145
|
-
"aria-braillelabel"?: string | undefined | undefined;
|
|
146
|
-
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
147
|
-
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
148
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
149
|
-
"aria-colcount"?: number | undefined | undefined;
|
|
150
|
-
"aria-colindex"?: number | undefined | undefined;
|
|
151
|
-
"aria-colindextext"?: string | undefined | undefined;
|
|
152
|
-
"aria-colspan"?: number | undefined | undefined;
|
|
153
|
-
"aria-controls"?: string | undefined | undefined;
|
|
154
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
155
|
-
"aria-describedby"?: string | undefined | undefined;
|
|
156
|
-
"aria-description"?: string | undefined | undefined;
|
|
157
|
-
"aria-details"?: string | undefined | undefined;
|
|
158
|
-
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
159
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
160
|
-
"aria-errormessage"?: string | undefined | undefined;
|
|
161
|
-
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
162
|
-
"aria-flowto"?: string | undefined | undefined;
|
|
163
|
-
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
164
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
165
|
-
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
166
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
167
|
-
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
168
|
-
"aria-label"?: string | undefined | undefined;
|
|
169
|
-
"aria-labelledby"?: string | undefined | undefined;
|
|
170
|
-
"aria-level"?: number | undefined | undefined;
|
|
171
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
172
|
-
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
173
|
-
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
174
|
-
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
175
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
176
|
-
"aria-owns"?: string | undefined | undefined;
|
|
177
|
-
"aria-placeholder"?: string | undefined | undefined;
|
|
178
|
-
"aria-posinset"?: number | undefined | undefined;
|
|
179
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
180
|
-
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
181
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
182
|
-
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
183
|
-
"aria-roledescription"?: string | undefined | undefined;
|
|
184
|
-
"aria-rowcount"?: number | undefined | undefined;
|
|
185
|
-
"aria-rowindex"?: number | undefined | undefined;
|
|
186
|
-
"aria-rowindextext"?: string | undefined | undefined;
|
|
187
|
-
"aria-rowspan"?: number | undefined | undefined;
|
|
188
|
-
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
189
|
-
"aria-setsize"?: number | undefined | undefined;
|
|
190
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
191
|
-
"aria-valuemax"?: number | undefined | undefined;
|
|
192
|
-
"aria-valuemin"?: number | undefined | undefined;
|
|
193
|
-
"aria-valuenow"?: number | undefined | undefined;
|
|
194
|
-
"aria-valuetext"?: string | undefined | undefined;
|
|
195
|
-
dangerouslySetInnerHTML?: {
|
|
196
|
-
__html: string | TrustedHTML;
|
|
197
|
-
} | undefined | undefined;
|
|
198
|
-
onCopy?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
199
|
-
onCopyCapture?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
200
|
-
onCut?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
201
|
-
onCutCapture?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
202
|
-
onPaste?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
203
|
-
onPasteCapture?: React$1.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
204
|
-
onCompositionEnd?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
205
|
-
onCompositionEndCapture?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
206
|
-
onCompositionStart?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
207
|
-
onCompositionStartCapture?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
208
|
-
onCompositionUpdate?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
209
|
-
onCompositionUpdateCapture?: React$1.CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
210
|
-
onFocus?: React$1.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
211
|
-
onFocusCapture?: React$1.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
212
|
-
onBlur?: React$1.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
213
|
-
onBlurCapture?: React$1.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
214
|
-
onChange?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
215
|
-
onChangeCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
216
|
-
onBeforeInput?: React$1.InputEventHandler<HTMLButtonElement> | undefined;
|
|
217
|
-
onBeforeInputCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
218
|
-
onInput?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
219
|
-
onInputCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
220
|
-
onReset?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
221
|
-
onResetCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
222
|
-
onSubmit?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
223
|
-
onSubmitCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
224
|
-
onInvalid?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
225
|
-
onInvalidCapture?: React$1.FormEventHandler<HTMLButtonElement> | undefined;
|
|
226
|
-
onLoad?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
227
|
-
onLoadCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
228
|
-
onError?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
229
|
-
onErrorCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
230
|
-
onKeyDown?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
231
|
-
onKeyDownCapture?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
232
|
-
onKeyPress?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
233
|
-
onKeyPressCapture?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
234
|
-
onKeyUp?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
235
|
-
onKeyUpCapture?: React$1.KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
236
|
-
onAbort?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
237
|
-
onAbortCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
238
|
-
onCanPlay?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
239
|
-
onCanPlayCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
240
|
-
onCanPlayThrough?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
241
|
-
onCanPlayThroughCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
242
|
-
onDurationChange?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
243
|
-
onDurationChangeCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
244
|
-
onEmptied?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
245
|
-
onEmptiedCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
246
|
-
onEncrypted?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
247
|
-
onEncryptedCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
248
|
-
onEnded?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
249
|
-
onEndedCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
250
|
-
onLoadedData?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
251
|
-
onLoadedDataCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
252
|
-
onLoadedMetadata?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
253
|
-
onLoadedMetadataCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
254
|
-
onLoadStart?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
255
|
-
onLoadStartCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
256
|
-
onPause?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
257
|
-
onPauseCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
258
|
-
onPlay?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
259
|
-
onPlayCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
260
|
-
onPlaying?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
261
|
-
onPlayingCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
262
|
-
onProgress?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
263
|
-
onProgressCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
264
|
-
onRateChange?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
265
|
-
onRateChangeCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
266
|
-
onSeeked?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
267
|
-
onSeekedCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
268
|
-
onSeeking?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
269
|
-
onSeekingCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
270
|
-
onStalled?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
271
|
-
onStalledCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
272
|
-
onSuspend?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
273
|
-
onSuspendCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
274
|
-
onTimeUpdate?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
275
|
-
onTimeUpdateCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
276
|
-
onVolumeChange?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
277
|
-
onVolumeChangeCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
278
|
-
onWaiting?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
279
|
-
onWaitingCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
280
|
-
onAuxClick?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
281
|
-
onAuxClickCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
282
|
-
onClick?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
283
|
-
onClickCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
284
|
-
onContextMenu?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
285
|
-
onContextMenuCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
286
|
-
onDoubleClick?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
287
|
-
onDoubleClickCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
288
|
-
onDrag?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
289
|
-
onDragCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
290
|
-
onDragEnd?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
291
|
-
onDragEndCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
292
|
-
onDragEnter?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
293
|
-
onDragEnterCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
294
|
-
onDragExit?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
295
|
-
onDragExitCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
296
|
-
onDragLeave?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
297
|
-
onDragLeaveCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
298
|
-
onDragOver?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
299
|
-
onDragOverCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
300
|
-
onDragStart?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
301
|
-
onDragStartCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
302
|
-
onDrop?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
303
|
-
onDropCapture?: React$1.DragEventHandler<HTMLButtonElement> | undefined;
|
|
304
|
-
onMouseDown?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
305
|
-
onMouseDownCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
306
|
-
onMouseEnter?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
307
|
-
onMouseLeave?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
308
|
-
onMouseMove?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
309
|
-
onMouseMoveCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
310
|
-
onMouseOut?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
311
|
-
onMouseOutCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
312
|
-
onMouseOver?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
313
|
-
onMouseOverCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
314
|
-
onMouseUp?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
315
|
-
onMouseUpCapture?: React$1.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
316
|
-
onSelect?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
317
|
-
onSelectCapture?: React$1.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
318
|
-
onTouchCancel?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
319
|
-
onTouchCancelCapture?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
320
|
-
onTouchEnd?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
321
|
-
onTouchEndCapture?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
322
|
-
onTouchMove?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
323
|
-
onTouchMoveCapture?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
324
|
-
onTouchStart?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
325
|
-
onTouchStartCapture?: React$1.TouchEventHandler<HTMLButtonElement> | undefined;
|
|
326
|
-
onPointerDown?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
327
|
-
onPointerDownCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
328
|
-
onPointerMove?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
329
|
-
onPointerMoveCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
330
|
-
onPointerUp?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
331
|
-
onPointerUpCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
332
|
-
onPointerCancel?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
333
|
-
onPointerCancelCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
334
|
-
onPointerEnter?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
335
|
-
onPointerLeave?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
336
|
-
onPointerOver?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
337
|
-
onPointerOverCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
338
|
-
onPointerOut?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
339
|
-
onPointerOutCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
340
|
-
onGotPointerCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
341
|
-
onGotPointerCaptureCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
342
|
-
onLostPointerCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
343
|
-
onLostPointerCaptureCapture?: React$1.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
344
|
-
onScroll?: React$1.UIEventHandler<HTMLButtonElement> | undefined;
|
|
345
|
-
onScrollCapture?: React$1.UIEventHandler<HTMLButtonElement> | undefined;
|
|
346
|
-
onWheel?: React$1.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
347
|
-
onWheelCapture?: React$1.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
348
|
-
onAnimationStart?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
349
|
-
onAnimationStartCapture?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
350
|
-
onAnimationEnd?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
351
|
-
onAnimationEndCapture?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
352
|
-
onAnimationIteration?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
353
|
-
onAnimationIterationCapture?: React$1.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
354
|
-
onTransitionEnd?: React$1.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
355
|
-
onTransitionEndCapture?: React$1.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
356
|
-
name?: string | undefined | undefined;
|
|
357
|
-
formAction?: string | undefined;
|
|
358
|
-
formEncType?: string | undefined | undefined;
|
|
359
|
-
formMethod?: string | undefined | undefined;
|
|
360
|
-
formNoValidate?: boolean | undefined | undefined;
|
|
361
|
-
formTarget?: string | undefined | undefined;
|
|
362
|
-
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
363
|
-
value?: string | number | readonly string[] | undefined;
|
|
364
|
-
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
80
|
+
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
365
81
|
|
|
366
82
|
type ButtonGroupProps<TValue extends string | number> = {
|
|
367
83
|
size?: ButtonProps["size"];
|
|
@@ -685,14 +401,11 @@ type DollarInputProps = {
|
|
|
685
401
|
*
|
|
686
402
|
* Exposes `cents` to consuming components, which is the value in cents.
|
|
687
403
|
*/
|
|
688
|
-
declare const DollarInput:
|
|
689
|
-
|
|
690
|
-
name: string;
|
|
691
|
-
layout?: FormItemVariants;
|
|
692
|
-
disabled?: boolean;
|
|
693
|
-
} & SharedFormItemProps & {
|
|
404
|
+
declare const DollarInput: ForwardRefExoticComponent<DollarInputProps & RefAttributes<HTMLInputElement>>;
|
|
405
|
+
type FormDollarInputProps = SharedFormControlProps & SharedFormItemProps & {
|
|
694
406
|
onChange?: (cents: number | null | undefined) => void;
|
|
695
|
-
} & Pick<DollarInputProps, "autoFocus" | "
|
|
407
|
+
} & Pick<DollarInputProps, "autoFocus" | "hasWarning" | "hasSuccess" | "message">;
|
|
408
|
+
declare const FormDollarInput: ForwardRefExoticComponent<FormDollarInputProps & RefAttributes<HTMLInputElement>>;
|
|
696
409
|
|
|
697
410
|
type PercentInputProps = {
|
|
698
411
|
value: number | null | undefined;
|
|
@@ -708,14 +421,11 @@ type PercentInputProps = {
|
|
|
708
421
|
*
|
|
709
422
|
* Exposes `percent` to consuming components, which is the value as a number (0-100).
|
|
710
423
|
*/
|
|
711
|
-
declare const PercentInput:
|
|
712
|
-
|
|
713
|
-
name: string;
|
|
714
|
-
layout?: FormItemVariants;
|
|
715
|
-
disabled?: boolean;
|
|
716
|
-
} & SharedFormItemProps & {
|
|
424
|
+
declare const PercentInput: ForwardRefExoticComponent<PercentInputProps & RefAttributes<HTMLInputElement>>;
|
|
425
|
+
type FormPercentInputProps = SharedFormControlProps & SharedFormItemProps & {
|
|
717
426
|
onChange?: (percent: number | null | undefined) => void;
|
|
718
|
-
} & Pick<PercentInputProps, "
|
|
427
|
+
} & Pick<PercentInputProps, "hasWarning" | "hasSuccess" | "message">;
|
|
428
|
+
declare const FormPercentInput: ForwardRefExoticComponent<FormPercentInputProps & RefAttributes<HTMLInputElement>>;
|
|
719
429
|
|
|
720
430
|
type FormCheckboxProps = Pick<SharedFormControlProps, "name" | "disabled"> & {
|
|
721
431
|
children?: React.ReactNode;
|
|
@@ -1154,12 +864,23 @@ type EmptyStateProps = {
|
|
|
1154
864
|
};
|
|
1155
865
|
declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1156
866
|
|
|
1157
|
-
|
|
867
|
+
type HeaderTileProps = {
|
|
1158
868
|
title: string;
|
|
1159
|
-
content: ReactNode;
|
|
869
|
+
content: string | ReactNode;
|
|
1160
870
|
popover?: ReactNode;
|
|
1161
871
|
className?: string;
|
|
1162
|
-
|
|
872
|
+
grouped?: boolean;
|
|
873
|
+
};
|
|
874
|
+
declare const HeaderTile: (props: HeaderTileProps) => react_jsx_runtime.JSX.Element;
|
|
875
|
+
|
|
876
|
+
type HeaderTileGroupProps = {
|
|
877
|
+
children: ReactNode;
|
|
878
|
+
className?: string;
|
|
879
|
+
};
|
|
880
|
+
declare const HeaderTileGroup: {
|
|
881
|
+
({ children, className }: HeaderTileGroupProps): react_jsx_runtime.JSX.Element;
|
|
882
|
+
Tile(props: ComponentProps<typeof HeaderTile>): react_jsx_runtime.JSX.Element;
|
|
883
|
+
};
|
|
1163
884
|
|
|
1164
885
|
type IconProps = {
|
|
1165
886
|
icon: IconDefinition;
|
|
@@ -1546,6 +1267,660 @@ type CustomTableOptions<T> = Simplify<Omit<TableOptions<T>, "getCoreRowModel"> &
|
|
|
1546
1267
|
}>;
|
|
1547
1268
|
declare const useTable: <T>({ tableRef, ...options }: CustomTableOptions<T>) => Table$1<T>;
|
|
1548
1269
|
|
|
1270
|
+
declare const useColumnResizing: <T>(options: CustomTableOptions<T>) => {
|
|
1271
|
+
columnResizeMode: _tanstack_react_table.ColumnResizeMode;
|
|
1272
|
+
tableElementRef: React$1.RefObject<HTMLTableElement>;
|
|
1273
|
+
tableRef: (table: Table$1<T>) => void;
|
|
1274
|
+
defaultColumn: {
|
|
1275
|
+
size: number;
|
|
1276
|
+
} | {
|
|
1277
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1278
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1279
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1280
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1281
|
+
enableHiding?: boolean | undefined;
|
|
1282
|
+
enablePinning?: boolean | undefined;
|
|
1283
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1284
|
+
enableColumnFilter?: boolean | undefined;
|
|
1285
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1286
|
+
enableMultiSort?: boolean | undefined;
|
|
1287
|
+
enableSorting?: boolean | undefined;
|
|
1288
|
+
invertSorting?: boolean | undefined;
|
|
1289
|
+
sortDescFirst?: boolean | undefined;
|
|
1290
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1291
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1292
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1293
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1294
|
+
enableGrouping?: boolean | undefined;
|
|
1295
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1296
|
+
enableResizing?: boolean | undefined;
|
|
1297
|
+
maxSize?: number | undefined;
|
|
1298
|
+
minSize?: number | undefined;
|
|
1299
|
+
size: number;
|
|
1300
|
+
header?: string | undefined;
|
|
1301
|
+
id?: string | undefined;
|
|
1302
|
+
} | {
|
|
1303
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1304
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1305
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1306
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1307
|
+
enableHiding?: boolean | undefined;
|
|
1308
|
+
enablePinning?: boolean | undefined;
|
|
1309
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1310
|
+
enableColumnFilter?: boolean | undefined;
|
|
1311
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1312
|
+
enableMultiSort?: boolean | undefined;
|
|
1313
|
+
enableSorting?: boolean | undefined;
|
|
1314
|
+
invertSorting?: boolean | undefined;
|
|
1315
|
+
sortDescFirst?: boolean | undefined;
|
|
1316
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1317
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1318
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1319
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1320
|
+
enableGrouping?: boolean | undefined;
|
|
1321
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1322
|
+
enableResizing?: boolean | undefined;
|
|
1323
|
+
maxSize?: number | undefined;
|
|
1324
|
+
minSize?: number | undefined;
|
|
1325
|
+
size: number;
|
|
1326
|
+
id?: string | undefined;
|
|
1327
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1328
|
+
} | {
|
|
1329
|
+
columns?: _tanstack_react_table.ColumnDef<T, any>[] | undefined;
|
|
1330
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1331
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1332
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1333
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1334
|
+
enableHiding?: boolean | undefined;
|
|
1335
|
+
enablePinning?: boolean | undefined;
|
|
1336
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1337
|
+
enableColumnFilter?: boolean | undefined;
|
|
1338
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1339
|
+
enableMultiSort?: boolean | undefined;
|
|
1340
|
+
enableSorting?: boolean | undefined;
|
|
1341
|
+
invertSorting?: boolean | undefined;
|
|
1342
|
+
sortDescFirst?: boolean | undefined;
|
|
1343
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1344
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1345
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1346
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1347
|
+
enableGrouping?: boolean | undefined;
|
|
1348
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1349
|
+
enableResizing?: boolean | undefined;
|
|
1350
|
+
maxSize?: number | undefined;
|
|
1351
|
+
minSize?: number | undefined;
|
|
1352
|
+
size: number;
|
|
1353
|
+
header?: string | undefined;
|
|
1354
|
+
id?: string | undefined;
|
|
1355
|
+
} | {
|
|
1356
|
+
columns?: _tanstack_react_table.ColumnDef<T, any>[] | undefined;
|
|
1357
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1358
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1359
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1360
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1361
|
+
enableHiding?: boolean | undefined;
|
|
1362
|
+
enablePinning?: boolean | undefined;
|
|
1363
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1364
|
+
enableColumnFilter?: boolean | undefined;
|
|
1365
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1366
|
+
enableMultiSort?: boolean | undefined;
|
|
1367
|
+
enableSorting?: boolean | undefined;
|
|
1368
|
+
invertSorting?: boolean | undefined;
|
|
1369
|
+
sortDescFirst?: boolean | undefined;
|
|
1370
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1371
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1372
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1373
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1374
|
+
enableGrouping?: boolean | undefined;
|
|
1375
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1376
|
+
enableResizing?: boolean | undefined;
|
|
1377
|
+
maxSize?: number | undefined;
|
|
1378
|
+
minSize?: number | undefined;
|
|
1379
|
+
size: number;
|
|
1380
|
+
id?: string | undefined;
|
|
1381
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1382
|
+
} | {
|
|
1383
|
+
id?: string | undefined;
|
|
1384
|
+
accessorKey?: (string & {}) | keyof T | undefined;
|
|
1385
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1386
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1387
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1388
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1389
|
+
enableHiding?: boolean | undefined;
|
|
1390
|
+
enablePinning?: boolean | undefined;
|
|
1391
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1392
|
+
enableColumnFilter?: boolean | undefined;
|
|
1393
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1394
|
+
enableMultiSort?: boolean | undefined;
|
|
1395
|
+
enableSorting?: boolean | undefined;
|
|
1396
|
+
invertSorting?: boolean | undefined;
|
|
1397
|
+
sortDescFirst?: boolean | undefined;
|
|
1398
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1399
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1400
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1401
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1402
|
+
enableGrouping?: boolean | undefined;
|
|
1403
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1404
|
+
enableResizing?: boolean | undefined;
|
|
1405
|
+
maxSize?: number | undefined;
|
|
1406
|
+
minSize?: number | undefined;
|
|
1407
|
+
size: number;
|
|
1408
|
+
header?: string | undefined;
|
|
1409
|
+
} | {
|
|
1410
|
+
id?: string | undefined;
|
|
1411
|
+
accessorKey?: (string & {}) | keyof T | undefined;
|
|
1412
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1413
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1414
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1415
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1416
|
+
enableHiding?: boolean | undefined;
|
|
1417
|
+
enablePinning?: boolean | undefined;
|
|
1418
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1419
|
+
enableColumnFilter?: boolean | undefined;
|
|
1420
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1421
|
+
enableMultiSort?: boolean | undefined;
|
|
1422
|
+
enableSorting?: boolean | undefined;
|
|
1423
|
+
invertSorting?: boolean | undefined;
|
|
1424
|
+
sortDescFirst?: boolean | undefined;
|
|
1425
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1426
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1427
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1428
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1429
|
+
enableGrouping?: boolean | undefined;
|
|
1430
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1431
|
+
enableResizing?: boolean | undefined;
|
|
1432
|
+
maxSize?: number | undefined;
|
|
1433
|
+
minSize?: number | undefined;
|
|
1434
|
+
size: number;
|
|
1435
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1436
|
+
} | {
|
|
1437
|
+
accessorFn?: _tanstack_react_table.AccessorFn<T, unknown> | undefined;
|
|
1438
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1439
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1440
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1441
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1442
|
+
enableHiding?: boolean | undefined;
|
|
1443
|
+
enablePinning?: boolean | undefined;
|
|
1444
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1445
|
+
enableColumnFilter?: boolean | undefined;
|
|
1446
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1447
|
+
enableMultiSort?: boolean | undefined;
|
|
1448
|
+
enableSorting?: boolean | undefined;
|
|
1449
|
+
invertSorting?: boolean | undefined;
|
|
1450
|
+
sortDescFirst?: boolean | undefined;
|
|
1451
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1452
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1453
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1454
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1455
|
+
enableGrouping?: boolean | undefined;
|
|
1456
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1457
|
+
enableResizing?: boolean | undefined;
|
|
1458
|
+
maxSize?: number | undefined;
|
|
1459
|
+
minSize?: number | undefined;
|
|
1460
|
+
size: number;
|
|
1461
|
+
header?: string | undefined;
|
|
1462
|
+
id?: string | undefined;
|
|
1463
|
+
} | {
|
|
1464
|
+
accessorFn?: _tanstack_react_table.AccessorFn<T, unknown> | undefined;
|
|
1465
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1466
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1467
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1468
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1469
|
+
enableHiding?: boolean | undefined;
|
|
1470
|
+
enablePinning?: boolean | undefined;
|
|
1471
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1472
|
+
enableColumnFilter?: boolean | undefined;
|
|
1473
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1474
|
+
enableMultiSort?: boolean | undefined;
|
|
1475
|
+
enableSorting?: boolean | undefined;
|
|
1476
|
+
invertSorting?: boolean | undefined;
|
|
1477
|
+
sortDescFirst?: boolean | undefined;
|
|
1478
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1479
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1480
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1481
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1482
|
+
enableGrouping?: boolean | undefined;
|
|
1483
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1484
|
+
enableResizing?: boolean | undefined;
|
|
1485
|
+
maxSize?: number | undefined;
|
|
1486
|
+
minSize?: number | undefined;
|
|
1487
|
+
size: number;
|
|
1488
|
+
id?: string | undefined;
|
|
1489
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1490
|
+
};
|
|
1491
|
+
state: {
|
|
1492
|
+
columnSizing: ColumnSizingState;
|
|
1493
|
+
columnSizingInfo: ColumnSizingInfoState;
|
|
1494
|
+
columnVisibility?: _tanstack_react_table.VisibilityState | undefined;
|
|
1495
|
+
columnOrder?: _tanstack_react_table.ColumnOrderState | undefined;
|
|
1496
|
+
columnPinning?: _tanstack_react_table.ColumnPinningState | undefined;
|
|
1497
|
+
rowPinning?: _tanstack_react_table.RowPinningState | undefined;
|
|
1498
|
+
columnFilters?: _tanstack_react_table.ColumnFiltersState | undefined;
|
|
1499
|
+
globalFilter?: any;
|
|
1500
|
+
sorting?: _tanstack_react_table.SortingState | undefined;
|
|
1501
|
+
expanded?: _tanstack_react_table.ExpandedState | undefined;
|
|
1502
|
+
grouping?: _tanstack_react_table.GroupingState | undefined;
|
|
1503
|
+
pagination?: _tanstack_react_table.PaginationState | undefined;
|
|
1504
|
+
rowSelection?: _tanstack_react_table.RowSelectionState | undefined;
|
|
1505
|
+
};
|
|
1506
|
+
onColumnSizingInfoChange: (updater: Parameters<Exclude<CustomTableOptions<T>["onColumnSizingInfoChange"], undefined>>[0]) => void;
|
|
1507
|
+
onColumnSizingChange: (updater: Parameters<Exclude<CustomTableOptions<T>["onColumnSizingChange"], undefined>>[0]) => void;
|
|
1508
|
+
data: T[];
|
|
1509
|
+
meta?: _tanstack_react_table.TableMeta<T> | undefined;
|
|
1510
|
+
columns: _tanstack_react_table.ColumnDef<T, any>[];
|
|
1511
|
+
autoResetAll?: boolean | undefined;
|
|
1512
|
+
debugAll?: boolean | undefined;
|
|
1513
|
+
debugColumns?: boolean | undefined;
|
|
1514
|
+
debugHeaders?: boolean | undefined;
|
|
1515
|
+
debugRows?: boolean | undefined;
|
|
1516
|
+
debugTable?: boolean | undefined;
|
|
1517
|
+
getRowId?: ((originalRow: T, index: number, parent?: _tanstack_react_table.Row<T> | undefined) => string) | undefined;
|
|
1518
|
+
getSubRows?: ((originalRow: T, index: number) => T[] | undefined) | undefined;
|
|
1519
|
+
initialState?: _tanstack_react_table.InitialTableState | undefined;
|
|
1520
|
+
mergeOptions?: ((defaultOptions: _tanstack_react_table.TableOptions<T>, options: Partial<_tanstack_react_table.TableOptions<T>>) => _tanstack_react_table.TableOptions<T>) | undefined;
|
|
1521
|
+
onStateChange?: ((updater: _tanstack_react_table.Updater<_tanstack_react_table.TableState>) => void) | undefined;
|
|
1522
|
+
renderFallbackValue?: any;
|
|
1523
|
+
enableHiding?: boolean | undefined;
|
|
1524
|
+
onColumnVisibilityChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.VisibilityState> | undefined;
|
|
1525
|
+
onColumnOrderChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnOrderState> | undefined;
|
|
1526
|
+
enableColumnPinning?: boolean | undefined;
|
|
1527
|
+
enablePinning?: boolean | undefined;
|
|
1528
|
+
onColumnPinningChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnPinningState> | undefined;
|
|
1529
|
+
enableRowPinning?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1530
|
+
keepPinnedRows?: boolean | undefined;
|
|
1531
|
+
onRowPinningChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.RowPinningState> | undefined;
|
|
1532
|
+
enableFilters?: boolean | undefined;
|
|
1533
|
+
filterFromLeafRows?: boolean | undefined;
|
|
1534
|
+
getFilteredRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1535
|
+
manualFiltering?: boolean | undefined;
|
|
1536
|
+
maxLeafRowFilterDepth?: number | undefined;
|
|
1537
|
+
enableColumnFilters?: boolean | undefined;
|
|
1538
|
+
onColumnFiltersChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnFiltersState> | undefined;
|
|
1539
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1540
|
+
getColumnCanGlobalFilter?: ((column: _tanstack_react_table.Column<T, unknown>) => boolean) | undefined;
|
|
1541
|
+
globalFilterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1542
|
+
onGlobalFilterChange?: _tanstack_react_table.OnChangeFn<any> | undefined;
|
|
1543
|
+
getFacetedRowModel?: ((table: Table$1<T>, columnId: string) => () => _tanstack_react_table.RowModel<T>) | undefined;
|
|
1544
|
+
getFacetedUniqueValues?: ((table: Table$1<T>, columnId: string) => () => Map<any, number>) | undefined;
|
|
1545
|
+
getFacetedMinMaxValues?: ((table: Table$1<T>, columnId: string) => () => undefined | [number, number]) | undefined;
|
|
1546
|
+
filterFns?: Record<string, _tanstack_react_table.FilterFn<any>> | undefined;
|
|
1547
|
+
enableMultiRemove?: boolean | undefined;
|
|
1548
|
+
enableMultiSort?: boolean | undefined;
|
|
1549
|
+
enableSorting?: boolean | undefined;
|
|
1550
|
+
enableSortingRemoval?: boolean | undefined;
|
|
1551
|
+
getSortedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1552
|
+
isMultiSortEvent?: ((e: unknown) => boolean) | undefined;
|
|
1553
|
+
manualSorting?: boolean | undefined;
|
|
1554
|
+
maxMultiSortColCount?: number | undefined;
|
|
1555
|
+
onSortingChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.SortingState> | undefined;
|
|
1556
|
+
sortDescFirst?: boolean | undefined;
|
|
1557
|
+
sortingFns?: Record<string, _tanstack_react_table.SortingFn<any>> | undefined;
|
|
1558
|
+
enableGrouping?: boolean | undefined;
|
|
1559
|
+
getGroupedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1560
|
+
groupedColumnMode?: false | "reorder" | "remove" | undefined;
|
|
1561
|
+
manualGrouping?: boolean | undefined;
|
|
1562
|
+
onGroupingChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.GroupingState> | undefined;
|
|
1563
|
+
aggregationFns?: Record<string, _tanstack_react_table.AggregationFn<any>> | undefined;
|
|
1564
|
+
autoResetExpanded?: boolean | undefined;
|
|
1565
|
+
enableExpanding?: boolean | undefined;
|
|
1566
|
+
getExpandedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1567
|
+
getIsRowExpanded?: ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1568
|
+
getRowCanExpand?: ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1569
|
+
manualExpanding?: boolean | undefined;
|
|
1570
|
+
onExpandedChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ExpandedState> | undefined;
|
|
1571
|
+
paginateExpandedRows?: boolean | undefined;
|
|
1572
|
+
enableColumnResizing?: boolean | undefined;
|
|
1573
|
+
columnResizeDirection?: _tanstack_react_table.ColumnResizeDirection | undefined;
|
|
1574
|
+
autoResetPageIndex?: boolean | undefined;
|
|
1575
|
+
getPaginationRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1576
|
+
manualPagination?: boolean | undefined;
|
|
1577
|
+
onPaginationChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.PaginationState> | undefined;
|
|
1578
|
+
pageCount?: number | undefined;
|
|
1579
|
+
enableMultiRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1580
|
+
enableRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1581
|
+
enableSubRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1582
|
+
onRowSelectionChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.RowSelectionState> | undefined;
|
|
1583
|
+
sort: string | undefined;
|
|
1584
|
+
onSortColumn?: ((newSort: _tanstack_react_table.ColumnSort | undefined) => void) | undefined;
|
|
1585
|
+
isLoading?: boolean | undefined;
|
|
1586
|
+
isFetching?: boolean | undefined;
|
|
1587
|
+
activeRowId?: string | undefined;
|
|
1588
|
+
onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
|
|
1589
|
+
emptyText?: React$1.ReactNode;
|
|
1590
|
+
staticSubRows?: boolean | undefined;
|
|
1591
|
+
infiniteScroll?: {
|
|
1592
|
+
hasNextPage: boolean | undefined;
|
|
1593
|
+
fetchNextPage: () => void;
|
|
1594
|
+
isFetchingNextPage: boolean;
|
|
1595
|
+
} | undefined;
|
|
1596
|
+
} | {
|
|
1597
|
+
columnResizeMode: _tanstack_react_table.ColumnResizeMode;
|
|
1598
|
+
tableElementRef: React$1.RefObject<HTMLTableElement>;
|
|
1599
|
+
tableRef: (table: Table$1<T>) => void;
|
|
1600
|
+
defaultColumn: {
|
|
1601
|
+
size: number;
|
|
1602
|
+
} | {
|
|
1603
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1604
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1605
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1606
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1607
|
+
enableHiding?: boolean | undefined;
|
|
1608
|
+
enablePinning?: boolean | undefined;
|
|
1609
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1610
|
+
enableColumnFilter?: boolean | undefined;
|
|
1611
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1612
|
+
enableMultiSort?: boolean | undefined;
|
|
1613
|
+
enableSorting?: boolean | undefined;
|
|
1614
|
+
invertSorting?: boolean | undefined;
|
|
1615
|
+
sortDescFirst?: boolean | undefined;
|
|
1616
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1617
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1618
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1619
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1620
|
+
enableGrouping?: boolean | undefined;
|
|
1621
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1622
|
+
enableResizing?: boolean | undefined;
|
|
1623
|
+
maxSize?: number | undefined;
|
|
1624
|
+
minSize?: number | undefined;
|
|
1625
|
+
size: number;
|
|
1626
|
+
header?: string | undefined;
|
|
1627
|
+
id?: string | undefined;
|
|
1628
|
+
} | {
|
|
1629
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1630
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1631
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1632
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1633
|
+
enableHiding?: boolean | undefined;
|
|
1634
|
+
enablePinning?: boolean | undefined;
|
|
1635
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1636
|
+
enableColumnFilter?: boolean | undefined;
|
|
1637
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1638
|
+
enableMultiSort?: boolean | undefined;
|
|
1639
|
+
enableSorting?: boolean | undefined;
|
|
1640
|
+
invertSorting?: boolean | undefined;
|
|
1641
|
+
sortDescFirst?: boolean | undefined;
|
|
1642
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1643
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1644
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1645
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1646
|
+
enableGrouping?: boolean | undefined;
|
|
1647
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1648
|
+
enableResizing?: boolean | undefined;
|
|
1649
|
+
maxSize?: number | undefined;
|
|
1650
|
+
minSize?: number | undefined;
|
|
1651
|
+
size: number;
|
|
1652
|
+
id?: string | undefined;
|
|
1653
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1654
|
+
} | {
|
|
1655
|
+
columns?: _tanstack_react_table.ColumnDef<T, any>[] | undefined;
|
|
1656
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1657
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1658
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1659
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1660
|
+
enableHiding?: boolean | undefined;
|
|
1661
|
+
enablePinning?: boolean | undefined;
|
|
1662
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1663
|
+
enableColumnFilter?: boolean | undefined;
|
|
1664
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1665
|
+
enableMultiSort?: boolean | undefined;
|
|
1666
|
+
enableSorting?: boolean | undefined;
|
|
1667
|
+
invertSorting?: boolean | undefined;
|
|
1668
|
+
sortDescFirst?: boolean | undefined;
|
|
1669
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1670
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1671
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1672
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1673
|
+
enableGrouping?: boolean | undefined;
|
|
1674
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1675
|
+
enableResizing?: boolean | undefined;
|
|
1676
|
+
maxSize?: number | undefined;
|
|
1677
|
+
minSize?: number | undefined;
|
|
1678
|
+
size: number;
|
|
1679
|
+
header?: string | undefined;
|
|
1680
|
+
id?: string | undefined;
|
|
1681
|
+
} | {
|
|
1682
|
+
columns?: _tanstack_react_table.ColumnDef<T, any>[] | undefined;
|
|
1683
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1684
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1685
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1686
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1687
|
+
enableHiding?: boolean | undefined;
|
|
1688
|
+
enablePinning?: boolean | undefined;
|
|
1689
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1690
|
+
enableColumnFilter?: boolean | undefined;
|
|
1691
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1692
|
+
enableMultiSort?: boolean | undefined;
|
|
1693
|
+
enableSorting?: boolean | undefined;
|
|
1694
|
+
invertSorting?: boolean | undefined;
|
|
1695
|
+
sortDescFirst?: boolean | undefined;
|
|
1696
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1697
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1698
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1699
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1700
|
+
enableGrouping?: boolean | undefined;
|
|
1701
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1702
|
+
enableResizing?: boolean | undefined;
|
|
1703
|
+
maxSize?: number | undefined;
|
|
1704
|
+
minSize?: number | undefined;
|
|
1705
|
+
size: number;
|
|
1706
|
+
id?: string | undefined;
|
|
1707
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1708
|
+
} | {
|
|
1709
|
+
id?: string | undefined;
|
|
1710
|
+
accessorKey?: (string & {}) | keyof T | undefined;
|
|
1711
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1712
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1713
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1714
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1715
|
+
enableHiding?: boolean | undefined;
|
|
1716
|
+
enablePinning?: boolean | undefined;
|
|
1717
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1718
|
+
enableColumnFilter?: boolean | undefined;
|
|
1719
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1720
|
+
enableMultiSort?: boolean | undefined;
|
|
1721
|
+
enableSorting?: boolean | undefined;
|
|
1722
|
+
invertSorting?: boolean | undefined;
|
|
1723
|
+
sortDescFirst?: boolean | undefined;
|
|
1724
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1725
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1726
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1727
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1728
|
+
enableGrouping?: boolean | undefined;
|
|
1729
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1730
|
+
enableResizing?: boolean | undefined;
|
|
1731
|
+
maxSize?: number | undefined;
|
|
1732
|
+
minSize?: number | undefined;
|
|
1733
|
+
size: number;
|
|
1734
|
+
header?: string | undefined;
|
|
1735
|
+
} | {
|
|
1736
|
+
id?: string | undefined;
|
|
1737
|
+
accessorKey?: (string & {}) | keyof T | undefined;
|
|
1738
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1739
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1740
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1741
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1742
|
+
enableHiding?: boolean | undefined;
|
|
1743
|
+
enablePinning?: boolean | undefined;
|
|
1744
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1745
|
+
enableColumnFilter?: boolean | undefined;
|
|
1746
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1747
|
+
enableMultiSort?: boolean | undefined;
|
|
1748
|
+
enableSorting?: boolean | undefined;
|
|
1749
|
+
invertSorting?: boolean | undefined;
|
|
1750
|
+
sortDescFirst?: boolean | undefined;
|
|
1751
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1752
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1753
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1754
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1755
|
+
enableGrouping?: boolean | undefined;
|
|
1756
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1757
|
+
enableResizing?: boolean | undefined;
|
|
1758
|
+
maxSize?: number | undefined;
|
|
1759
|
+
minSize?: number | undefined;
|
|
1760
|
+
size: number;
|
|
1761
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1762
|
+
} | {
|
|
1763
|
+
accessorFn?: _tanstack_react_table.AccessorFn<T, unknown> | undefined;
|
|
1764
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1765
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1766
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1767
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1768
|
+
enableHiding?: boolean | undefined;
|
|
1769
|
+
enablePinning?: boolean | undefined;
|
|
1770
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1771
|
+
enableColumnFilter?: boolean | undefined;
|
|
1772
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1773
|
+
enableMultiSort?: boolean | undefined;
|
|
1774
|
+
enableSorting?: boolean | undefined;
|
|
1775
|
+
invertSorting?: boolean | undefined;
|
|
1776
|
+
sortDescFirst?: boolean | undefined;
|
|
1777
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1778
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1779
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1780
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1781
|
+
enableGrouping?: boolean | undefined;
|
|
1782
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1783
|
+
enableResizing?: boolean | undefined;
|
|
1784
|
+
maxSize?: number | undefined;
|
|
1785
|
+
minSize?: number | undefined;
|
|
1786
|
+
size: number;
|
|
1787
|
+
header?: string | undefined;
|
|
1788
|
+
id?: string | undefined;
|
|
1789
|
+
} | {
|
|
1790
|
+
accessorFn?: _tanstack_react_table.AccessorFn<T, unknown> | undefined;
|
|
1791
|
+
getUniqueValues?: _tanstack_react_table.AccessorFn<T, unknown[]> | undefined;
|
|
1792
|
+
footer?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1793
|
+
cell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1794
|
+
meta?: _tanstack_react_table.ColumnMeta<T, unknown> | undefined;
|
|
1795
|
+
enableHiding?: boolean | undefined;
|
|
1796
|
+
enablePinning?: boolean | undefined;
|
|
1797
|
+
filterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1798
|
+
enableColumnFilter?: boolean | undefined;
|
|
1799
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1800
|
+
enableMultiSort?: boolean | undefined;
|
|
1801
|
+
enableSorting?: boolean | undefined;
|
|
1802
|
+
invertSorting?: boolean | undefined;
|
|
1803
|
+
sortDescFirst?: boolean | undefined;
|
|
1804
|
+
sortingFn?: _tanstack_react_table.SortingFnOption<T> | undefined;
|
|
1805
|
+
sortUndefined?: false | -1 | 1 | undefined;
|
|
1806
|
+
aggregatedCell?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.CellContext<T, unknown>> | undefined;
|
|
1807
|
+
aggregationFn?: _tanstack_react_table.AggregationFnOption<T> | undefined;
|
|
1808
|
+
enableGrouping?: boolean | undefined;
|
|
1809
|
+
getGroupingValue?: ((row: T) => any) | undefined;
|
|
1810
|
+
enableResizing?: boolean | undefined;
|
|
1811
|
+
maxSize?: number | undefined;
|
|
1812
|
+
minSize?: number | undefined;
|
|
1813
|
+
size: number;
|
|
1814
|
+
id?: string | undefined;
|
|
1815
|
+
header?: _tanstack_react_table.ColumnDefTemplate<_tanstack_react_table.HeaderContext<T, unknown>> | undefined;
|
|
1816
|
+
};
|
|
1817
|
+
state: {
|
|
1818
|
+
columnSizing: ColumnSizingState;
|
|
1819
|
+
columnSizingInfo: ColumnSizingInfoState;
|
|
1820
|
+
columnVisibility?: _tanstack_react_table.VisibilityState | undefined;
|
|
1821
|
+
columnOrder?: _tanstack_react_table.ColumnOrderState | undefined;
|
|
1822
|
+
columnPinning?: _tanstack_react_table.ColumnPinningState | undefined;
|
|
1823
|
+
rowPinning?: _tanstack_react_table.RowPinningState | undefined;
|
|
1824
|
+
columnFilters?: _tanstack_react_table.ColumnFiltersState | undefined;
|
|
1825
|
+
globalFilter?: any;
|
|
1826
|
+
sorting?: _tanstack_react_table.SortingState | undefined;
|
|
1827
|
+
expanded?: _tanstack_react_table.ExpandedState | undefined;
|
|
1828
|
+
grouping?: _tanstack_react_table.GroupingState | undefined;
|
|
1829
|
+
pagination?: _tanstack_react_table.PaginationState | undefined;
|
|
1830
|
+
rowSelection?: _tanstack_react_table.RowSelectionState | undefined;
|
|
1831
|
+
};
|
|
1832
|
+
onColumnSizingInfoChange: (updater: Parameters<Exclude<CustomTableOptions<T>["onColumnSizingInfoChange"], undefined>>[0]) => void;
|
|
1833
|
+
onColumnSizingChange: (updater: Parameters<Exclude<CustomTableOptions<T>["onColumnSizingChange"], undefined>>[0]) => void;
|
|
1834
|
+
data: T[];
|
|
1835
|
+
meta?: _tanstack_react_table.TableMeta<T> | undefined;
|
|
1836
|
+
columns: _tanstack_react_table.ColumnDef<T, any>[];
|
|
1837
|
+
autoResetAll?: boolean | undefined;
|
|
1838
|
+
debugAll?: boolean | undefined;
|
|
1839
|
+
debugColumns?: boolean | undefined;
|
|
1840
|
+
debugHeaders?: boolean | undefined;
|
|
1841
|
+
debugRows?: boolean | undefined;
|
|
1842
|
+
debugTable?: boolean | undefined;
|
|
1843
|
+
getRowId?: ((originalRow: T, index: number, parent?: _tanstack_react_table.Row<T> | undefined) => string) | undefined;
|
|
1844
|
+
getSubRows?: ((originalRow: T, index: number) => T[] | undefined) | undefined;
|
|
1845
|
+
initialState?: _tanstack_react_table.InitialTableState | undefined;
|
|
1846
|
+
mergeOptions?: ((defaultOptions: _tanstack_react_table.TableOptions<T>, options: Partial<_tanstack_react_table.TableOptions<T>>) => _tanstack_react_table.TableOptions<T>) | undefined;
|
|
1847
|
+
onStateChange?: ((updater: _tanstack_react_table.Updater<_tanstack_react_table.TableState>) => void) | undefined;
|
|
1848
|
+
renderFallbackValue?: any;
|
|
1849
|
+
enableHiding?: boolean | undefined;
|
|
1850
|
+
onColumnVisibilityChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.VisibilityState> | undefined;
|
|
1851
|
+
onColumnOrderChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnOrderState> | undefined;
|
|
1852
|
+
enableColumnPinning?: boolean | undefined;
|
|
1853
|
+
enablePinning?: boolean | undefined;
|
|
1854
|
+
onColumnPinningChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnPinningState> | undefined;
|
|
1855
|
+
enableRowPinning?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1856
|
+
keepPinnedRows?: boolean | undefined;
|
|
1857
|
+
onRowPinningChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.RowPinningState> | undefined;
|
|
1858
|
+
enableFilters?: boolean | undefined;
|
|
1859
|
+
filterFromLeafRows?: boolean | undefined;
|
|
1860
|
+
getFilteredRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1861
|
+
manualFiltering?: boolean | undefined;
|
|
1862
|
+
maxLeafRowFilterDepth?: number | undefined;
|
|
1863
|
+
enableColumnFilters?: boolean | undefined;
|
|
1864
|
+
onColumnFiltersChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ColumnFiltersState> | undefined;
|
|
1865
|
+
enableGlobalFilter?: boolean | undefined;
|
|
1866
|
+
getColumnCanGlobalFilter?: ((column: _tanstack_react_table.Column<T, unknown>) => boolean) | undefined;
|
|
1867
|
+
globalFilterFn?: _tanstack_react_table.FilterFnOption<T> | undefined;
|
|
1868
|
+
onGlobalFilterChange?: _tanstack_react_table.OnChangeFn<any> | undefined;
|
|
1869
|
+
getFacetedRowModel?: ((table: Table$1<T>, columnId: string) => () => _tanstack_react_table.RowModel<T>) | undefined;
|
|
1870
|
+
getFacetedUniqueValues?: ((table: Table$1<T>, columnId: string) => () => Map<any, number>) | undefined;
|
|
1871
|
+
getFacetedMinMaxValues?: ((table: Table$1<T>, columnId: string) => () => undefined | [number, number]) | undefined;
|
|
1872
|
+
filterFns?: Record<string, _tanstack_react_table.FilterFn<any>> | undefined;
|
|
1873
|
+
enableMultiRemove?: boolean | undefined;
|
|
1874
|
+
enableMultiSort?: boolean | undefined;
|
|
1875
|
+
enableSorting?: boolean | undefined;
|
|
1876
|
+
enableSortingRemoval?: boolean | undefined;
|
|
1877
|
+
getSortedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1878
|
+
isMultiSortEvent?: ((e: unknown) => boolean) | undefined;
|
|
1879
|
+
manualSorting?: boolean | undefined;
|
|
1880
|
+
maxMultiSortColCount?: number | undefined;
|
|
1881
|
+
onSortingChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.SortingState> | undefined;
|
|
1882
|
+
sortDescFirst?: boolean | undefined;
|
|
1883
|
+
sortingFns?: Record<string, _tanstack_react_table.SortingFn<any>> | undefined;
|
|
1884
|
+
enableGrouping?: boolean | undefined;
|
|
1885
|
+
getGroupedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1886
|
+
groupedColumnMode?: false | "reorder" | "remove" | undefined;
|
|
1887
|
+
manualGrouping?: boolean | undefined;
|
|
1888
|
+
onGroupingChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.GroupingState> | undefined;
|
|
1889
|
+
aggregationFns?: Record<string, _tanstack_react_table.AggregationFn<any>> | undefined;
|
|
1890
|
+
autoResetExpanded?: boolean | undefined;
|
|
1891
|
+
enableExpanding?: boolean | undefined;
|
|
1892
|
+
getExpandedRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1893
|
+
getIsRowExpanded?: ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1894
|
+
getRowCanExpand?: ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1895
|
+
manualExpanding?: boolean | undefined;
|
|
1896
|
+
onExpandedChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.ExpandedState> | undefined;
|
|
1897
|
+
paginateExpandedRows?: boolean | undefined;
|
|
1898
|
+
enableColumnResizing?: boolean | undefined;
|
|
1899
|
+
columnResizeDirection?: _tanstack_react_table.ColumnResizeDirection | undefined;
|
|
1900
|
+
autoResetPageIndex?: boolean | undefined;
|
|
1901
|
+
getPaginationRowModel?: ((table: Table$1<any>) => () => _tanstack_react_table.RowModel<any>) | undefined;
|
|
1902
|
+
manualPagination?: boolean | undefined;
|
|
1903
|
+
onPaginationChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.PaginationState> | undefined;
|
|
1904
|
+
pageCount?: number | undefined;
|
|
1905
|
+
enableMultiRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1906
|
+
enableRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1907
|
+
enableSubRowSelection?: boolean | ((row: _tanstack_react_table.Row<T>) => boolean) | undefined;
|
|
1908
|
+
onRowSelectionChange?: _tanstack_react_table.OnChangeFn<_tanstack_react_table.RowSelectionState> | undefined;
|
|
1909
|
+
sort?: undefined;
|
|
1910
|
+
onSortColumn?: undefined;
|
|
1911
|
+
isLoading?: boolean | undefined;
|
|
1912
|
+
isFetching?: boolean | undefined;
|
|
1913
|
+
activeRowId?: string | undefined;
|
|
1914
|
+
onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
|
|
1915
|
+
emptyText?: React$1.ReactNode;
|
|
1916
|
+
staticSubRows?: boolean | undefined;
|
|
1917
|
+
infiniteScroll?: {
|
|
1918
|
+
hasNextPage: boolean | undefined;
|
|
1919
|
+
fetchNextPage: () => void;
|
|
1920
|
+
isFetchingNextPage: boolean;
|
|
1921
|
+
} | undefined;
|
|
1922
|
+
};
|
|
1923
|
+
|
|
1549
1924
|
type TabDefinition<TabId extends string> = {
|
|
1550
1925
|
id: TabId;
|
|
1551
1926
|
label: React.ReactNode;
|
|
@@ -1648,7 +2023,18 @@ type TagProps = TagLabelProps & {
|
|
|
1648
2023
|
};
|
|
1649
2024
|
declare const Tag: ({ tooltip, ...rest }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
1650
2025
|
|
|
1651
|
-
type
|
|
2026
|
+
type TextTagElementMap = {
|
|
2027
|
+
h1: HTMLHeadingElement;
|
|
2028
|
+
h2: HTMLHeadingElement;
|
|
2029
|
+
h3: HTMLHeadingElement;
|
|
2030
|
+
h4: HTMLHeadingElement;
|
|
2031
|
+
h5: HTMLHeadingElement;
|
|
2032
|
+
h6: HTMLHeadingElement;
|
|
2033
|
+
p: HTMLParagraphElement;
|
|
2034
|
+
span: HTMLSpanElement;
|
|
2035
|
+
label: HTMLLabelElement;
|
|
2036
|
+
};
|
|
2037
|
+
type TextTag = keyof TextTagElementMap;
|
|
1652
2038
|
declare const VARIANT_STYLES: {
|
|
1653
2039
|
readonly "marketing-headline": "text-marketing-headline";
|
|
1654
2040
|
readonly "headline-1": "text-headline-1";
|
|
@@ -1668,7 +2054,7 @@ type TextVariant = keyof typeof VARIANT_STYLES;
|
|
|
1668
2054
|
/**
|
|
1669
2055
|
* Props specific to Text component (excluding native HTML props)
|
|
1670
2056
|
*/
|
|
1671
|
-
type TextOwnProps<T extends
|
|
2057
|
+
type TextOwnProps<T extends TextTag = "p"> = {
|
|
1672
2058
|
/**
|
|
1673
2059
|
* The HTML tag to render
|
|
1674
2060
|
* @default "p"
|
|
@@ -1678,7 +2064,7 @@ type TextOwnProps<T extends ElementType = "p"> = {
|
|
|
1678
2064
|
* Typography variant to apply
|
|
1679
2065
|
* @default "body-1"
|
|
1680
2066
|
*/
|
|
1681
|
-
variant?:
|
|
2067
|
+
variant?: TextVariant;
|
|
1682
2068
|
/**
|
|
1683
2069
|
* Content to render
|
|
1684
2070
|
*/
|
|
@@ -1687,44 +2073,10 @@ type TextOwnProps<T extends ElementType = "p"> = {
|
|
|
1687
2073
|
/**
|
|
1688
2074
|
* Full component props combining Text-specific props with native HTML element props
|
|
1689
2075
|
*/
|
|
1690
|
-
type TextProps<T extends TextTag = "p"> = TextOwnProps<T> & Omit<
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
* @description This component provides a consistent way to render text with proper semantic HTML
|
|
1695
|
-
* while maintaining design system typography. It is extendable but closed for modification.
|
|
1696
|
-
* The component is fully type-safe and provides proper autocompletion for all native HTML
|
|
1697
|
-
* attributes based on the selected tag.
|
|
1698
|
-
*
|
|
1699
|
-
* @example Basic Usage (defaults to <p> tag)
|
|
1700
|
-
* <Text>Default paragraph text</Text>
|
|
1701
|
-
*
|
|
1702
|
-
* @example With Custom Tags (fully typed)
|
|
1703
|
-
* <Text as="h1">Heading Text</Text>
|
|
1704
|
-
* <Text as="span">Inline Text</Text>
|
|
1705
|
-
*
|
|
1706
|
-
* @example Type Safety - Native Props
|
|
1707
|
-
* // ✓ Valid: span supports onClick
|
|
1708
|
-
* <Text as="span" onClick={() => console.log('clicked')}>
|
|
1709
|
-
* Clickable text
|
|
1710
|
-
* </Text>
|
|
1711
|
-
*
|
|
1712
|
-
* // ✓ Valid: h1 supports id
|
|
1713
|
-
* <Text as="h1" id="page-title">
|
|
1714
|
-
* Page Title
|
|
1715
|
-
* </Text>
|
|
1716
|
-
*
|
|
1717
|
-
* @example Extendable with className
|
|
1718
|
-
* <Text className="text-blue-500 font-bold">
|
|
1719
|
-
* Custom styled text
|
|
1720
|
-
* </Text>
|
|
1721
|
-
*
|
|
1722
|
-
* @example With Variants
|
|
1723
|
-
* <Text variant="headline-1">Large Heading</Text>
|
|
1724
|
-
* <Text variant="body-1">Body text</Text>
|
|
1725
|
-
* <Text variant="footnote">Label text</Text>
|
|
1726
|
-
*/
|
|
1727
|
-
declare const Text: <T extends TextTag = "p">({ as, variant, children, className, ...props }: TextProps<T>) => react_jsx_runtime.JSX.Element;
|
|
2076
|
+
type TextProps<T extends TextTag = "p"> = TextOwnProps<T> & Omit<JSX.IntrinsicElements[T], keyof TextOwnProps>;
|
|
2077
|
+
declare const Text: <T extends TextTag = "p">(props: TextProps<T> & {
|
|
2078
|
+
ref?: React.ForwardedRef<TextTagElementMap[T]>;
|
|
2079
|
+
}) => React.ReactElement;
|
|
1728
2080
|
|
|
1729
2081
|
/**
|
|
1730
2082
|
* @example
|
|
@@ -1818,4 +2170,4 @@ declare const useToggle: (initState?: boolean) => {
|
|
|
1818
2170
|
toggle: () => void;
|
|
1819
2171
|
};
|
|
1820
2172
|
|
|
1821
|
-
export { AlertModal, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps$2 as ChildrenProps, type ClassNameProps, Collapsible, CollapsibleSection, type ComposableTabDefinition, ComposableTabs, type ComposableTabsProps, type ConfigClassNames, ControlledField, ControlledFieldProvider, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerProps, type DisabledProps, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerState, DrawerStateContext, DropdownChevron, EmptyState, type ErrorProps$1 as ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, FormDatePicker, FormDollarInput, type FormFieldNameProps, FormInput, FormMultiSelect, FormPercentInput, FormRadioButtonGroup, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, FormTextArea, FullscreenModalNamespace as FullscreenModal, HeaderTile, Icon, IndeterminateCheckbox, Input, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type Intent, IsEditingProvider, IsVisibleProvider, type Justify, Label, type LabelStyleProps, type LoadProps, LoadingBar, LoadingState, Menu, type MenuProps, MenuRoot, MenuSeparator, Modal, type ModalBodyImplProps$1 as ModalBodyImplProps, MultiSelect, type MultiSelectProps, type NonEmpty, type OnSubmitHandler, OverflowTooltip, PageContainer, PercentInput, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverProps, type PropsWithClassName, RESPONSIVE_PADDING, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, ScreenHeightPageContainer, ScrollTabsLayout, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedModalProps, type Size, Skeleton, type SkeletonProps, type Soften, Spinner, type StylesProps, Switch, type TabDefinition, TabGroup, Table, TableCheckboxSkeleton, type TableProps, TableSkeleton, type TableVariant, Tabs, type TabsProps, TabsSkeleton, TabsTrigger, type TabsTriggerProps, Tag, Text, TextArea, TextAreaComp, type TextAreaProps, type TextProps,
|
|
2173
|
+
export { AlertModal, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps$2 as ChildrenProps, type ClassNameProps, Collapsible, CollapsibleSection, type ComposableTabDefinition, ComposableTabs, type ComposableTabsProps, type ConfigClassNames, ControlledField, ControlledFieldProvider, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerProps, type DisabledProps, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerState, DrawerStateContext, DropdownChevron, EmptyState, type ErrorProps$1 as ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, FormDatePicker, FormDollarInput, type FormDollarInputProps, type FormFieldNameProps, FormInput, FormMultiSelect, FormPercentInput, type FormPercentInputProps, FormRadioButtonGroup, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, FormTextArea, FullscreenModalNamespace as FullscreenModal, HeaderTile, HeaderTileGroup, Icon, IndeterminateCheckbox, Input, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type Intent, IsEditingProvider, IsVisibleProvider, type Justify, Label, type LabelStyleProps, type LoadProps, LoadingBar, LoadingState, Menu, type MenuProps, MenuRoot, MenuSeparator, Modal, type ModalBodyImplProps$1 as ModalBodyImplProps, MultiSelect, type MultiSelectProps, type NonEmpty, type OnSubmitHandler, OverflowTooltip, PageContainer, PercentInput, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverProps, type PropsWithClassName, RESPONSIVE_PADDING, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, ScreenHeightPageContainer, ScrollTabsLayout, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedModalProps, type Size, Skeleton, type SkeletonProps, type Soften, Spinner, type StylesProps, Switch, type TabDefinition, TabGroup, Table, TableCheckboxSkeleton, type TableProps, TableSkeleton, type TableVariant, Tabs, type TabsProps, TabsSkeleton, TabsTrigger, type TabsTriggerProps, Tag, Text, TextArea, TextAreaComp, type TextAreaProps, type TextProps, Tooltip, TooltipContent, type TooltipProps, TwoCirclesSpinner, UncontrolledField, UncontrolledFieldProvider, type UncontrolledFormFieldProps, type UseAsyncMultiSelectArgs, type UseAsyncSelectArgs, type UseDrawerResizeParams, type Variant, VirtualizedTable, type VirtualizedTableProps, bodyClassNames, buttonStyles, copyToClipboard, createContextHelper, createToggleContextHelper, doesSelectItemMatch, formatPhoneNumber, formatPhoneNumberForDisplay, getFieldError, getInitials, headerClassNames, inputBoxStyles, inputStyles, isValidPhoneNumber, labelStyles, linkStyles, localStoragePersist, tableVariants, useAsyncMultiSelect, useAsyncSelect, useColumnResizing, useControlledField, useControlledFormField, useCopyable, useDebounce, useDrawer, useDrawerResize, useForm, useIntersectionObserver, useIsEditing, useIsHovered, useIsVisible, useOverflowObserver, useSwitchId, useSyncState, useTable, useToggle, useUncontrolledField, useUncontrolledFormField };
|