@nurix/ui-component-library 1.1.4-stage.120 → 1.1.4-stage.122
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 +345 -14
- package/dist/index.d.ts +345 -14
- package/dist/index.js +1451 -1059
- package/dist/index.mjs +1469 -1079
- package/dist/styles.css +69 -23
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -30,6 +30,11 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
30
30
|
*/
|
|
31
31
|
button_border_radius?: ButtonBorderRadius;
|
|
32
32
|
asChild?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Optional `data-testid` for Playwright. Defaults to `"btn"` if omitted.
|
|
35
|
+
* By convention pass a descriptive name like `"btn-create-agent"`.
|
|
36
|
+
*/
|
|
37
|
+
"data-testid"?: string;
|
|
33
38
|
}
|
|
34
39
|
|
|
35
40
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -117,6 +122,11 @@ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>,
|
|
|
117
122
|
* Note: `supportingTextType="error"` will also style the field as invalid.
|
|
118
123
|
*/
|
|
119
124
|
invalid?: boolean;
|
|
125
|
+
/**
|
|
126
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
127
|
+
* By convention pass a descriptive name like `"input-agent-name"`.
|
|
128
|
+
*/
|
|
129
|
+
"data-testid"?: string;
|
|
120
130
|
}
|
|
121
131
|
interface FileInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "onChange"> {
|
|
122
132
|
label?: string;
|
|
@@ -127,6 +137,10 @@ interface FileInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
127
137
|
input_border_radius?: InputBorderRadius;
|
|
128
138
|
inputVariant?: InputVariant;
|
|
129
139
|
onFileChange?: (file: File | null) => void;
|
|
140
|
+
/**
|
|
141
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
142
|
+
*/
|
|
143
|
+
"data-testid"?: string;
|
|
130
144
|
}
|
|
131
145
|
|
|
132
146
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -179,6 +193,10 @@ interface InputGroupProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElem
|
|
|
179
193
|
* @default "grey"
|
|
180
194
|
*/
|
|
181
195
|
inputVariant?: InputVariant;
|
|
196
|
+
/**
|
|
197
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
198
|
+
*/
|
|
199
|
+
"data-testid"?: string;
|
|
182
200
|
}
|
|
183
201
|
|
|
184
202
|
declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -231,6 +249,11 @@ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
231
249
|
*/
|
|
232
250
|
resize?: "none" | "vertical" | "horizontal" | "both";
|
|
233
251
|
style?: React$1.CSSProperties;
|
|
252
|
+
/**
|
|
253
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
254
|
+
* By convention pass a descriptive name like `"input-description"`.
|
|
255
|
+
*/
|
|
256
|
+
"data-testid"?: string;
|
|
234
257
|
}
|
|
235
258
|
|
|
236
259
|
/**
|
|
@@ -274,23 +297,169 @@ interface SwitchProps {
|
|
|
274
297
|
id?: string;
|
|
275
298
|
className?: string;
|
|
276
299
|
style?: React$1.CSSProperties;
|
|
300
|
+
/**
|
|
301
|
+
* Optional `data-testid` for Playwright. Defaults to `"toggle"` if omitted
|
|
302
|
+
* (Switch uses the same prefix as Toggle since they're the same control family).
|
|
303
|
+
* By convention pass a descriptive name like `"toggle-streaming"`.
|
|
304
|
+
*/
|
|
305
|
+
"data-testid"?: string;
|
|
277
306
|
}
|
|
278
307
|
|
|
279
308
|
declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
280
309
|
|
|
281
|
-
|
|
310
|
+
/**
|
|
311
|
+
* Toggle (segmented pill / card) — Figma references:
|
|
312
|
+
* - 4960:33812 — IconToggleSetRegular (size = "regular", 36×36 pills)
|
|
313
|
+
* - 4960:33890 — ToggleIconSmall (size = "small", 24×24 pills + card)
|
|
314
|
+
*
|
|
315
|
+
* A segmented control rendered inside a grey rounded container. The
|
|
316
|
+
* selected option is filled white with a 1px xlight border and a
|
|
317
|
+
* shadow-xs drop.
|
|
318
|
+
*
|
|
319
|
+
* Two shapes:
|
|
320
|
+
* - `pill` — single-line option (icon, icon + text, or text only)
|
|
321
|
+
* - `card` — square option with title row + subtext below (only valid
|
|
322
|
+
* for `size="small"`).
|
|
323
|
+
*/
|
|
324
|
+
type ToggleType = "iconText" | "iconOnly" | "textOnly";
|
|
325
|
+
type ToggleShape = "pill" | "card";
|
|
326
|
+
type ToggleSize = "regular" | "small";
|
|
327
|
+
interface ToggleProps {
|
|
328
|
+
/**
|
|
329
|
+
* Controlled selected value. When set, the parent owns state.
|
|
330
|
+
*/
|
|
331
|
+
value?: string;
|
|
332
|
+
/**
|
|
333
|
+
* Initial selected value when uncontrolled.
|
|
334
|
+
*/
|
|
335
|
+
defaultValue?: string;
|
|
336
|
+
/**
|
|
337
|
+
* Called when the user picks a different option.
|
|
338
|
+
*/
|
|
339
|
+
onValueChange?: (value: string) => void;
|
|
340
|
+
/**
|
|
341
|
+
* Layout for items inside the pill. Ignored when `shape="card"`.
|
|
342
|
+
* @default "iconText"
|
|
343
|
+
*/
|
|
344
|
+
type?: ToggleType;
|
|
345
|
+
/**
|
|
346
|
+
* Item shape.
|
|
347
|
+
* - "pill" — single-line rounded-full option
|
|
348
|
+
* - "card" — square option with stacked title + subtext (small size)
|
|
349
|
+
* @default "pill"
|
|
350
|
+
*/
|
|
351
|
+
shape?: ToggleShape;
|
|
352
|
+
/**
|
|
353
|
+
* Size of items.
|
|
354
|
+
* - "regular" — 36×36 pills, 16×16 icons, 14px semibold label
|
|
355
|
+
* - "small" — 24h pills, 12×12 icons, 12px medium label; required
|
|
356
|
+
* for `shape="card"`
|
|
357
|
+
* @default "regular"
|
|
358
|
+
*/
|
|
359
|
+
size?: ToggleSize;
|
|
360
|
+
/**
|
|
361
|
+
* Disable the entire toggle.
|
|
362
|
+
*/
|
|
363
|
+
disabled?: boolean;
|
|
364
|
+
/**
|
|
365
|
+
* Toggle items — one or more `<ToggleItem>` children.
|
|
366
|
+
*/
|
|
367
|
+
children?: React$1.ReactNode;
|
|
368
|
+
className?: string;
|
|
369
|
+
style?: React$1.CSSProperties;
|
|
370
|
+
/**
|
|
371
|
+
* Optional `data-testid` for Playwright. Defaults to `"toggle"` if omitted.
|
|
372
|
+
*/
|
|
373
|
+
"data-testid"?: string;
|
|
374
|
+
}
|
|
375
|
+
interface ToggleItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value" | "onClick" | "type" | "role" | "aria-checked" | "children"> {
|
|
376
|
+
/**
|
|
377
|
+
* Stable value for this item. Compared against the parent's `value`.
|
|
378
|
+
*/
|
|
379
|
+
value: string;
|
|
380
|
+
/**
|
|
381
|
+
* Optional leading icon. Rendered when the parent type is `iconText`
|
|
382
|
+
* or `iconOnly` (or for `shape="card"`).
|
|
383
|
+
*/
|
|
384
|
+
icon?: React$1.ReactNode;
|
|
385
|
+
/**
|
|
386
|
+
* Optional secondary line below the title — only rendered when the
|
|
387
|
+
* parent's `shape="card"`.
|
|
388
|
+
*/
|
|
389
|
+
subtext?: React$1.ReactNode;
|
|
390
|
+
/**
|
|
391
|
+
* Label content. Rendered when the parent type is `iconText` or `textOnly`,
|
|
392
|
+
* and always for `shape="card"`.
|
|
393
|
+
*/
|
|
394
|
+
children?: React$1.ReactNode;
|
|
395
|
+
/**
|
|
396
|
+
* Optional `data-testid` for Playwright. Defaults to `"toggle"` if omitted.
|
|
397
|
+
*/
|
|
398
|
+
"data-testid"?: string;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* Toggle — segmented pill / card control.
|
|
403
|
+
* Figma: 4960:33812 (regular) and 4960:33890 (small + card).
|
|
404
|
+
*
|
|
405
|
+
* @example
|
|
406
|
+
* // Pill (default)
|
|
407
|
+
* <Toggle value={direction} onValueChange={setDirection}>
|
|
408
|
+
* <ToggleItem value="inbound" icon={<PhoneIncoming />}>Inbound</ToggleItem>
|
|
409
|
+
* <ToggleItem value="outbound" icon={<PhoneOutgoing />}>Outbound</ToggleItem>
|
|
410
|
+
* </Toggle>
|
|
411
|
+
*
|
|
412
|
+
* // Square card with subtext
|
|
413
|
+
* <Toggle value={mode} onValueChange={setMode} shape="card" size="small">
|
|
414
|
+
* <ToggleItem value="single" icon={<File />} subtext="Natural-language prompt only.">
|
|
415
|
+
* Single Prompt
|
|
416
|
+
* </ToggleItem>
|
|
417
|
+
* <ToggleItem value="flow" icon={<Workflow />} subtext="Structured map of nodes.">
|
|
418
|
+
* Conversation Flow
|
|
419
|
+
* </ToggleItem>
|
|
420
|
+
* </Toggle>
|
|
421
|
+
*/
|
|
422
|
+
declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
423
|
+
/**
|
|
424
|
+
* ToggleItem — single segment inside a `<Toggle>`. Pulls active value
|
|
425
|
+
* from context and signals selection back via `setValue`.
|
|
426
|
+
*/
|
|
427
|
+
declare const ToggleItem: React$1.ForwardRefExoticComponent<ToggleItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
428
|
+
|
|
429
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
430
|
+
"data-testid"?: string;
|
|
431
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
282
432
|
|
|
283
433
|
/**
|
|
284
434
|
* shadcn-style Checkbox props (Radix primitive props).
|
|
285
435
|
* Note: Radix supports `checked: boolean | "indeterminate"`. Figma uses boolean.
|
|
286
436
|
*/
|
|
287
|
-
type CheckboxProps = React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root
|
|
437
|
+
type CheckboxProps = React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> & {
|
|
438
|
+
/**
|
|
439
|
+
* Optional `data-testid` for Playwright. Defaults to `"checkbox"` if omitted.
|
|
440
|
+
*/
|
|
441
|
+
"data-testid"?: string;
|
|
442
|
+
};
|
|
288
443
|
|
|
289
|
-
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> &
|
|
290
|
-
|
|
444
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
445
|
+
"data-testid"?: string;
|
|
446
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
447
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
448
|
+
"data-testid"?: string;
|
|
449
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
291
450
|
|
|
292
|
-
type RadioGroupProps = React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root
|
|
293
|
-
|
|
451
|
+
type RadioGroupProps = React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root> & {
|
|
452
|
+
/**
|
|
453
|
+
* Optional `data-testid` for Playwright. Defaults to `"radio-group"` if omitted.
|
|
454
|
+
*/
|
|
455
|
+
"data-testid"?: string;
|
|
456
|
+
};
|
|
457
|
+
type RadioGroupItemProps = React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> & {
|
|
458
|
+
/**
|
|
459
|
+
* Optional `data-testid` for Playwright. Defaults to `"radio"` if omitted.
|
|
460
|
+
*/
|
|
461
|
+
"data-testid"?: string;
|
|
462
|
+
};
|
|
294
463
|
|
|
295
464
|
type DialogHeaderNavigationVariant = "primary" | "inner";
|
|
296
465
|
type BackButtonPosition = "left" | "right";
|
|
@@ -306,6 +475,10 @@ interface DialogHeaderNavigationProps extends React$1.HTMLAttributes<HTMLDivElem
|
|
|
306
475
|
backButtonAriaLabel?: string;
|
|
307
476
|
backButtonPosition?: BackButtonPosition;
|
|
308
477
|
disabled?: boolean;
|
|
478
|
+
/**
|
|
479
|
+
* Optional `data-testid` for Playwright. Defaults to `"dialog-header"` if omitted.
|
|
480
|
+
*/
|
|
481
|
+
"data-testid"?: string;
|
|
309
482
|
}
|
|
310
483
|
type TabVariant = "top" | "side" | "section";
|
|
311
484
|
interface ListNavItemProps {
|
|
@@ -325,6 +498,10 @@ interface ListNavigationProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
|
|
|
325
498
|
selectedId?: string | null;
|
|
326
499
|
/** Callback when an item is clicked */
|
|
327
500
|
onSelect?: (id: string) => void;
|
|
501
|
+
/**
|
|
502
|
+
* Optional `data-testid` for Playwright. Defaults to `"nav"` if omitted.
|
|
503
|
+
*/
|
|
504
|
+
"data-testid"?: string;
|
|
328
505
|
}
|
|
329
506
|
interface TabsProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
330
507
|
value?: string;
|
|
@@ -339,6 +516,11 @@ interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
|
|
|
339
516
|
value: string;
|
|
340
517
|
variant?: TabVariant;
|
|
341
518
|
iconLeft?: React$1.ReactNode;
|
|
519
|
+
/**
|
|
520
|
+
* Optional `data-testid` for Playwright. Defaults to `"tab"` if omitted.
|
|
521
|
+
* By convention pass a descriptive name like `"tab-configure"`.
|
|
522
|
+
*/
|
|
523
|
+
"data-testid"?: string;
|
|
342
524
|
}
|
|
343
525
|
interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
344
526
|
value: string;
|
|
@@ -385,6 +567,10 @@ interface AccordionTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonE
|
|
|
385
567
|
* Note: click events are stopped from toggling the accordion.
|
|
386
568
|
*/
|
|
387
569
|
action?: React$1.ReactNode;
|
|
570
|
+
/**
|
|
571
|
+
* Optional `data-testid` for Playwright. Defaults to `"accordion"` if omitted.
|
|
572
|
+
*/
|
|
573
|
+
"data-testid"?: string;
|
|
388
574
|
}
|
|
389
575
|
interface AccordionContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
390
576
|
}
|
|
@@ -393,6 +579,10 @@ interface AccordionSectionTriggerProps extends React$1.ButtonHTMLAttributes<HTML
|
|
|
393
579
|
* Label shown inside the pill (Figma: "Summary"). Children override.
|
|
394
580
|
*/
|
|
395
581
|
label?: React$1.ReactNode;
|
|
582
|
+
/**
|
|
583
|
+
* Optional `data-testid` for Playwright. Defaults to `"accordion"` if omitted.
|
|
584
|
+
*/
|
|
585
|
+
"data-testid"?: string;
|
|
396
586
|
}
|
|
397
587
|
|
|
398
588
|
declare function Accordion<TType extends AccordionType = "single">({ className, type, collapsible, value, defaultValue, onValueChange, disabled, ...props }: AccordionProps<TType>): react_jsx_runtime.JSX.Element;
|
|
@@ -438,6 +628,10 @@ interface AvatarProps {
|
|
|
438
628
|
shape?: AvatarShape;
|
|
439
629
|
className?: string;
|
|
440
630
|
style?: React$1.CSSProperties;
|
|
631
|
+
/**
|
|
632
|
+
* Optional `data-testid` for Playwright. Defaults to `"avatar"` if omitted.
|
|
633
|
+
*/
|
|
634
|
+
"data-testid"?: string;
|
|
441
635
|
}
|
|
442
636
|
interface AvatarGroupProps {
|
|
443
637
|
/**
|
|
@@ -461,6 +655,10 @@ interface AvatarGroupProps {
|
|
|
461
655
|
children: React$1.ReactNode;
|
|
462
656
|
className?: string;
|
|
463
657
|
style?: React$1.CSSProperties;
|
|
658
|
+
/**
|
|
659
|
+
* Optional `data-testid` for Playwright. Defaults to `"avatar-group"` if omitted.
|
|
660
|
+
*/
|
|
661
|
+
"data-testid"?: string;
|
|
464
662
|
}
|
|
465
663
|
|
|
466
664
|
/**
|
|
@@ -531,6 +729,10 @@ interface BadgeProps {
|
|
|
531
729
|
interactive?: boolean;
|
|
532
730
|
className?: string;
|
|
533
731
|
style?: React$1.CSSProperties;
|
|
732
|
+
/**
|
|
733
|
+
* Optional `data-testid` for Playwright. Defaults to `"badge"` if omitted.
|
|
734
|
+
*/
|
|
735
|
+
"data-testid"?: string;
|
|
534
736
|
}
|
|
535
737
|
/**
|
|
536
738
|
* Props for TagBadge - an interactive badge that opens a dropdown to select a tag.
|
|
@@ -551,6 +753,10 @@ interface TagBadgeProps {
|
|
|
551
753
|
defaultVariant?: BadgeVariant;
|
|
552
754
|
className?: string;
|
|
553
755
|
style?: React$1.CSSProperties;
|
|
756
|
+
/**
|
|
757
|
+
* Optional `data-testid` for Playwright. Defaults to `"badge"` if omitted.
|
|
758
|
+
*/
|
|
759
|
+
"data-testid"?: string;
|
|
554
760
|
}
|
|
555
761
|
type NumberBadgeVariant = "default" | "destructive" | "secondary";
|
|
556
762
|
interface NumberBadgeProps {
|
|
@@ -575,6 +781,10 @@ interface NumberBadgeProps {
|
|
|
575
781
|
showZero?: boolean;
|
|
576
782
|
className?: string;
|
|
577
783
|
style?: React$1.CSSProperties;
|
|
784
|
+
/**
|
|
785
|
+
* Optional `data-testid` for Playwright. Defaults to `"badge"` if omitted.
|
|
786
|
+
*/
|
|
787
|
+
"data-testid"?: string;
|
|
578
788
|
}
|
|
579
789
|
|
|
580
790
|
/**
|
|
@@ -652,6 +862,11 @@ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
|
|
|
652
862
|
size?: "small" | "regular" | "large";
|
|
653
863
|
/** Background variant. "default" = input grey, "white" = card white */
|
|
654
864
|
bg?: "default" | "white";
|
|
865
|
+
/**
|
|
866
|
+
* Optional `data-testid` for Playwright. Defaults to `"select"` if omitted.
|
|
867
|
+
* By convention pass a descriptive name like `"select-timezone"`.
|
|
868
|
+
*/
|
|
869
|
+
"data-testid"?: string;
|
|
655
870
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
656
871
|
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
657
872
|
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -668,6 +883,10 @@ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive
|
|
|
668
883
|
leadIcon?: React$1.ReactNode;
|
|
669
884
|
/** Size of leadIcon area. "xs" = 16px, "sm" = 24px, "md" = 36px (for playback controls) */
|
|
670
885
|
leadIconSize?: "xs" | "sm" | "md";
|
|
886
|
+
/**
|
|
887
|
+
* Optional `data-testid` for Playwright. Defaults to `"select-item"` if omitted.
|
|
888
|
+
*/
|
|
889
|
+
"data-testid"?: string;
|
|
671
890
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
672
891
|
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
673
892
|
declare function SelectFormLabel({ className, label, mandatory, }: SelectLabelProps): react_jsx_runtime.JSX.Element;
|
|
@@ -782,6 +1001,11 @@ interface EmptyStateProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
|
|
|
782
1001
|
description?: string | React$1.ReactNode;
|
|
783
1002
|
/** Action element(s) displayed below the text. Single button or array of buttons. */
|
|
784
1003
|
action?: React$1.ReactNode | React$1.ReactNode[];
|
|
1004
|
+
/**
|
|
1005
|
+
* Optional `data-testid` for Playwright. Defaults to `"empty-state"` if omitted.
|
|
1006
|
+
* By convention pass a descriptive name like `"empty-state-no-agents"`.
|
|
1007
|
+
*/
|
|
1008
|
+
"data-testid"?: string;
|
|
785
1009
|
}
|
|
786
1010
|
|
|
787
1011
|
/**
|
|
@@ -815,6 +1039,11 @@ interface ListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
815
1039
|
*/
|
|
816
1040
|
list_border_radius?: ListBorderRadius;
|
|
817
1041
|
children?: React$1.ReactNode;
|
|
1042
|
+
/**
|
|
1043
|
+
* Optional `data-testid` for Playwright. Defaults to `"card"` if omitted.
|
|
1044
|
+
* By convention pass a descriptive name like `"card-agent-${id}"`.
|
|
1045
|
+
*/
|
|
1046
|
+
"data-testid"?: string;
|
|
818
1047
|
}
|
|
819
1048
|
|
|
820
1049
|
/**
|
|
@@ -881,11 +1110,12 @@ declare const SurfaceFooter: React$1.ForwardRefExoticComponent<SurfaceFooterProp
|
|
|
881
1110
|
* Figma 6249:35100 — Side Panel.
|
|
882
1111
|
* - sm: 420px wide
|
|
883
1112
|
* - md: 620px wide
|
|
1113
|
+
* - lg: 900px wide (Figma 6553:165)
|
|
884
1114
|
*/
|
|
885
|
-
type SidePanelSize = "sm" | "md";
|
|
1115
|
+
type SidePanelSize = "sm" | "md" | "lg";
|
|
886
1116
|
interface SidePanelProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
887
1117
|
/**
|
|
888
|
-
* Width preset. `sm` = 420px, `md` = 620px.
|
|
1118
|
+
* Width preset. `sm` = 420px, `md` = 620px, `lg` = 900px.
|
|
889
1119
|
* @default "sm"
|
|
890
1120
|
*/
|
|
891
1121
|
size?: SidePanelSize;
|
|
@@ -898,6 +1128,11 @@ interface SidePanelProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
898
1128
|
side?: "left" | "right";
|
|
899
1129
|
/** Panel content */
|
|
900
1130
|
children?: React$1.ReactNode;
|
|
1131
|
+
/**
|
|
1132
|
+
* Optional `data-testid` for Playwright. Defaults to `"side-panel"` if omitted.
|
|
1133
|
+
* By convention pass a descriptive name like `"side-panel-create-campaign"`.
|
|
1134
|
+
*/
|
|
1135
|
+
"data-testid"?: string;
|
|
901
1136
|
}
|
|
902
1137
|
|
|
903
1138
|
/**
|
|
@@ -905,8 +1140,9 @@ interface SidePanelProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
905
1140
|
*
|
|
906
1141
|
* The panel is a plain shell — the consumer is responsible for positioning
|
|
907
1142
|
* (e.g., `fixed right-0 top-0`), slide-in animation, and the overlay. This
|
|
908
|
-
* matches the Figma spec at 6249:35100, which shows just the
|
|
909
|
-
* 420px / 620px wide white surface with 16px radius on
|
|
1143
|
+
* matches the Figma spec at 6249:35100 / 6553:165, which shows just the
|
|
1144
|
+
* geometry: a 420px / 620px / 900px wide white surface with 16px radius on
|
|
1145
|
+
* its inner edge.
|
|
910
1146
|
*/
|
|
911
1147
|
declare const SidePanel: React$1.ForwardRefExoticComponent<SidePanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
912
1148
|
|
|
@@ -1605,6 +1841,12 @@ interface DialogProps {
|
|
|
1605
1841
|
confirmVariant?: ButtonVariant;
|
|
1606
1842
|
/** Disable the confirm button. */
|
|
1607
1843
|
confirmDisabled?: boolean;
|
|
1844
|
+
/**
|
|
1845
|
+
* Base data-testid. Forwarded to the dialog container, with
|
|
1846
|
+
* `${value}-close`, `${value}-cancel`, and `${value}-confirm` auto-derived
|
|
1847
|
+
* onto the close (×), cancel, and confirm buttons.
|
|
1848
|
+
*/
|
|
1849
|
+
"data-testid"?: string;
|
|
1608
1850
|
className?: string;
|
|
1609
1851
|
}
|
|
1610
1852
|
interface DialogIconProps {
|
|
@@ -1615,6 +1857,11 @@ interface DialogHeaderProps {
|
|
|
1615
1857
|
title: string;
|
|
1616
1858
|
showClose?: boolean;
|
|
1617
1859
|
showDivider?: boolean;
|
|
1860
|
+
/**
|
|
1861
|
+
* Base data-testid. Forwarded to the header container, with
|
|
1862
|
+
* `${value}-close` auto-derived onto the close (×) button.
|
|
1863
|
+
*/
|
|
1864
|
+
"data-testid"?: string;
|
|
1618
1865
|
className?: string;
|
|
1619
1866
|
}
|
|
1620
1867
|
interface DialogBodyProps {
|
|
@@ -1636,6 +1883,12 @@ interface DialogFooterProps {
|
|
|
1636
1883
|
confirmVariant?: ButtonVariant;
|
|
1637
1884
|
/** Disable the confirm button. */
|
|
1638
1885
|
confirmDisabled?: boolean;
|
|
1886
|
+
/**
|
|
1887
|
+
* Base data-testid. Forwarded to the footer container, with
|
|
1888
|
+
* `${value}-cancel` and `${value}-confirm` auto-derived onto the cancel
|
|
1889
|
+
* and confirm buttons.
|
|
1890
|
+
*/
|
|
1891
|
+
"data-testid"?: string;
|
|
1639
1892
|
showDivider?: boolean;
|
|
1640
1893
|
className?: string;
|
|
1641
1894
|
}
|
|
@@ -1706,6 +1959,11 @@ interface ToastProps {
|
|
|
1706
1959
|
progress?: number;
|
|
1707
1960
|
className?: string;
|
|
1708
1961
|
style?: React$1.CSSProperties;
|
|
1962
|
+
/**
|
|
1963
|
+
* Optional `data-testid` for Playwright. Defaults to `"toast"` if omitted.
|
|
1964
|
+
* By convention pass a descriptive name like `"toast-success"`.
|
|
1965
|
+
*/
|
|
1966
|
+
"data-testid"?: string;
|
|
1709
1967
|
}
|
|
1710
1968
|
/** Options passed to `showToast()`. */
|
|
1711
1969
|
interface ShowToastOptions extends Omit<ToastProps, "onCancel"> {
|
|
@@ -1762,6 +2020,11 @@ interface StepperProps {
|
|
|
1762
2020
|
steps: StepItem[];
|
|
1763
2021
|
className?: string;
|
|
1764
2022
|
style?: React$1.CSSProperties;
|
|
2023
|
+
/**
|
|
2024
|
+
* Optional `data-testid` for Playwright. Defaults to `"stepper"` if omitted.
|
|
2025
|
+
* By convention pass a descriptive name like `"stepper-onboarding"`.
|
|
2026
|
+
*/
|
|
2027
|
+
"data-testid"?: string;
|
|
1765
2028
|
}
|
|
1766
2029
|
interface StepperBarProps {
|
|
1767
2030
|
/**
|
|
@@ -1775,6 +2038,11 @@ interface StepperBarProps {
|
|
|
1775
2038
|
currentStep: number;
|
|
1776
2039
|
className?: string;
|
|
1777
2040
|
style?: React$1.CSSProperties;
|
|
2041
|
+
/**
|
|
2042
|
+
* Optional `data-testid` for Playwright. Defaults to `"stepper-bar"` if omitted.
|
|
2043
|
+
* By convention pass a descriptive name like `"stepper-bar-create-agent"`.
|
|
2044
|
+
*/
|
|
2045
|
+
"data-testid"?: string;
|
|
1778
2046
|
}
|
|
1779
2047
|
interface ProgressBarProps {
|
|
1780
2048
|
/**
|
|
@@ -1788,6 +2056,11 @@ interface ProgressBarProps {
|
|
|
1788
2056
|
max?: number;
|
|
1789
2057
|
className?: string;
|
|
1790
2058
|
style?: React$1.CSSProperties;
|
|
2059
|
+
/**
|
|
2060
|
+
* Optional `data-testid` for Playwright. Defaults to `"progress-bar"` if omitted.
|
|
2061
|
+
* By convention pass a descriptive name like `"progress-bar-upload"`.
|
|
2062
|
+
*/
|
|
2063
|
+
"data-testid"?: string;
|
|
1791
2064
|
}
|
|
1792
2065
|
|
|
1793
2066
|
/**
|
|
@@ -1896,6 +2169,11 @@ interface IconPickerProps {
|
|
|
1896
2169
|
placeholder?: string;
|
|
1897
2170
|
className?: string;
|
|
1898
2171
|
style?: React$1.CSSProperties;
|
|
2172
|
+
/**
|
|
2173
|
+
* Optional `data-testid` for Playwright. Defaults to `"btn"` (the trigger
|
|
2174
|
+
* is a button) if omitted.
|
|
2175
|
+
*/
|
|
2176
|
+
"data-testid"?: string;
|
|
1899
2177
|
}
|
|
1900
2178
|
|
|
1901
2179
|
/**
|
|
@@ -2024,6 +2302,12 @@ interface TableAction<TRow> {
|
|
|
2024
2302
|
* Called when the action button is clicked.
|
|
2025
2303
|
*/
|
|
2026
2304
|
onClick: (row: TRow) => void;
|
|
2305
|
+
/**
|
|
2306
|
+
* data-testid for the action button. Static string, or a function that
|
|
2307
|
+
* receives the row so consumers can build per-row testids
|
|
2308
|
+
* (e.g. `(row) => `btn-delete-${row.id}``).
|
|
2309
|
+
*/
|
|
2310
|
+
"data-testid"?: string | ((row: TRow) => string);
|
|
2027
2311
|
}
|
|
2028
2312
|
interface PaginationProps {
|
|
2029
2313
|
handlePageChange: (page: number) => void;
|
|
@@ -2032,6 +2316,10 @@ interface PaginationProps {
|
|
|
2032
2316
|
currentPage: number;
|
|
2033
2317
|
total: number;
|
|
2034
2318
|
entityName?: string;
|
|
2319
|
+
/**
|
|
2320
|
+
* Optional `data-testid` for Playwright. Defaults to `"pagination"` if omitted.
|
|
2321
|
+
*/
|
|
2322
|
+
"data-testid"?: string;
|
|
2035
2323
|
}
|
|
2036
2324
|
interface DataTableProps<TRow> {
|
|
2037
2325
|
/**
|
|
@@ -2106,6 +2394,11 @@ interface DataTableProps<TRow> {
|
|
|
2106
2394
|
* Called when a data row is clicked. Receives the row data.
|
|
2107
2395
|
*/
|
|
2108
2396
|
onRowClick?: (row: TRow) => void;
|
|
2397
|
+
/**
|
|
2398
|
+
* Optional `data-testid` for Playwright. Defaults to `"table"` if omitted.
|
|
2399
|
+
* Each data row also gets `data-testid={`row-${id}`}` automatically.
|
|
2400
|
+
*/
|
|
2401
|
+
"data-testid"?: string;
|
|
2109
2402
|
}
|
|
2110
2403
|
|
|
2111
2404
|
/**
|
|
@@ -2114,7 +2407,7 @@ interface DataTableProps<TRow> {
|
|
|
2114
2407
|
*
|
|
2115
2408
|
* Figma reference node: 3338:6396
|
|
2116
2409
|
*/
|
|
2117
|
-
declare function Pagination({ handlePageChange, rowsPerPage, setRowsPerPage, currentPage, total, entityName, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
2410
|
+
declare function Pagination({ handlePageChange, rowsPerPage, setRowsPerPage, currentPage, total, entityName, "data-testid": dataTestId, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
2118
2411
|
declare namespace Pagination {
|
|
2119
2412
|
var displayName: string;
|
|
2120
2413
|
}
|
|
@@ -2130,7 +2423,7 @@ declare namespace Pagination {
|
|
|
2130
2423
|
*
|
|
2131
2424
|
* Figma reference node: 3338:6396
|
|
2132
2425
|
*/
|
|
2133
|
-
declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, showPagination, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, showBorder, stickyHeader, headerAction, className, loading, onRowClick, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
|
|
2426
|
+
declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, showPagination, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, showBorder, stickyHeader, headerAction, className, loading, onRowClick, "data-testid": dataTestId, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
|
|
2134
2427
|
declare namespace DataTable {
|
|
2135
2428
|
var displayName: string;
|
|
2136
2429
|
}
|
|
@@ -2290,6 +2583,11 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
|
|
|
2290
2583
|
* etc.). Enable for use cases like scheduling.
|
|
2291
2584
|
*/
|
|
2292
2585
|
allowFutureDates?: boolean;
|
|
2586
|
+
/**
|
|
2587
|
+
* Disable selecting dates before today. Useful for scheduling flows where
|
|
2588
|
+
* the start date must be today or later. Combines with `allowFutureDates`.
|
|
2589
|
+
*/
|
|
2590
|
+
disablePastDates?: boolean;
|
|
2293
2591
|
/** Empty state label when no items available */
|
|
2294
2592
|
emptyStateLabel?: string;
|
|
2295
2593
|
/** Additional className for the trigger button */
|
|
@@ -2302,6 +2600,11 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
|
|
|
2302
2600
|
* paints the label in `text-fg-brand` (Subtext/xs) — see Figma 5427:32334.
|
|
2303
2601
|
*/
|
|
2304
2602
|
labelClassName?: string;
|
|
2603
|
+
/**
|
|
2604
|
+
* Optional `data-testid` for Playwright. Defaults to `"select"` if omitted.
|
|
2605
|
+
* By convention pass a descriptive name like `"select-language"`.
|
|
2606
|
+
*/
|
|
2607
|
+
"data-testid"?: string;
|
|
2305
2608
|
}
|
|
2306
2609
|
/** Date preset: label and function to compute the range */
|
|
2307
2610
|
interface DatePreset {
|
|
@@ -2424,6 +2727,11 @@ interface ButtonListProps {
|
|
|
2424
2727
|
onOpenChange?: (open: boolean) => void;
|
|
2425
2728
|
className?: string;
|
|
2426
2729
|
dropdownClassName?: string;
|
|
2730
|
+
/**
|
|
2731
|
+
* Optional `data-testid` for Playwright. Defaults to `"btn"` if omitted.
|
|
2732
|
+
* By convention pass a descriptive name like `"btn-actions"`.
|
|
2733
|
+
*/
|
|
2734
|
+
"data-testid"?: string;
|
|
2427
2735
|
}
|
|
2428
2736
|
|
|
2429
2737
|
declare const ButtonList: React$1.ForwardRefExoticComponent<ButtonListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -2464,9 +2772,13 @@ interface JsonEditorProps {
|
|
|
2464
2772
|
showExpandButton?: boolean;
|
|
2465
2773
|
/** When true, hide the header/toolbar (for embedding in KeyValueJsonEditor). */
|
|
2466
2774
|
hideHeader?: boolean;
|
|
2775
|
+
/**
|
|
2776
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
2777
|
+
*/
|
|
2778
|
+
"data-testid"?: string;
|
|
2467
2779
|
}
|
|
2468
2780
|
|
|
2469
|
-
declare function JsonEditor({ value, onChange, onParsedObject, height, label, schema, nodeId, language, showExpandButton, hideHeader, }: JsonEditorProps): react_jsx_runtime.JSX.Element;
|
|
2781
|
+
declare function JsonEditor({ value, onChange, onParsedObject, height, label, schema, nodeId, language, showExpandButton, hideHeader, "data-testid": dataTestId, }: JsonEditorProps): react_jsx_runtime.JSX.Element;
|
|
2470
2782
|
|
|
2471
2783
|
interface UseJsonEditorParams {
|
|
2472
2784
|
value: string;
|
|
@@ -2615,6 +2927,10 @@ interface KeyValueEditorProps {
|
|
|
2615
2927
|
valueLeadingIcon?: React$1.ReactNode;
|
|
2616
2928
|
className?: string;
|
|
2617
2929
|
style?: React$1.CSSProperties;
|
|
2930
|
+
/**
|
|
2931
|
+
* Optional `data-testid` for Playwright. Defaults to `"input"` if omitted.
|
|
2932
|
+
*/
|
|
2933
|
+
"data-testid"?: string;
|
|
2618
2934
|
}
|
|
2619
2935
|
|
|
2620
2936
|
/**
|
|
@@ -2654,6 +2970,11 @@ interface AudioPlayerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2654
2970
|
onRateChange?: (rate: number) => void;
|
|
2655
2971
|
/** Custom formatter for times. Defaults to `m:ss`. */
|
|
2656
2972
|
formatTime?: (seconds: number) => string;
|
|
2973
|
+
/**
|
|
2974
|
+
* Optional `data-testid` for Playwright. Defaults to `"player"` if omitted.
|
|
2975
|
+
* By convention pass a descriptive name like `"player-call-recording"`.
|
|
2976
|
+
*/
|
|
2977
|
+
"data-testid"?: string;
|
|
2657
2978
|
}
|
|
2658
2979
|
|
|
2659
2980
|
/**
|
|
@@ -2676,6 +2997,11 @@ interface ChatBubbleBaseProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
|
|
|
2676
2997
|
alwaysShowTimestamp?: boolean;
|
|
2677
2998
|
/** Override for the 16px avatar slot. */
|
|
2678
2999
|
avatar?: React$1.ReactNode;
|
|
3000
|
+
/**
|
|
3001
|
+
* Optional `data-testid` for Playwright. Defaults to `"chat-bubble"` if omitted.
|
|
3002
|
+
* By convention pass a descriptive name like `"chat-bubble-agent-greeting"`.
|
|
3003
|
+
*/
|
|
3004
|
+
"data-testid"?: string;
|
|
2679
3005
|
}
|
|
2680
3006
|
interface ChatBubbleAgentProps extends ChatBubbleBaseProps {
|
|
2681
3007
|
/** Shown below the bubble (e.g. a "Tool Call" tag). */
|
|
@@ -2769,6 +3095,11 @@ interface PopoverProps {
|
|
|
2769
3095
|
closeOnOutsideClick?: boolean;
|
|
2770
3096
|
/** Close popover on Escape key. @default true */
|
|
2771
3097
|
closeOnEscape?: boolean;
|
|
3098
|
+
/**
|
|
3099
|
+
* Optional `data-testid` for Playwright. Defaults to `"popover"` if omitted.
|
|
3100
|
+
* Applied to the floating popover content container (the `role="dialog"` element).
|
|
3101
|
+
*/
|
|
3102
|
+
"data-testid"?: string;
|
|
2772
3103
|
}
|
|
2773
3104
|
|
|
2774
3105
|
/**
|
|
@@ -2799,4 +3130,4 @@ interface PopoverProps {
|
|
|
2799
3130
|
*/
|
|
2800
3131
|
declare const Popover: React$1.ForwardRefExoticComponent<PopoverProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2801
3132
|
|
|
2802
|
-
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionSectionTrigger, type AccordionSectionTriggerProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, AudioPlayer, type AudioPlayerProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, ChatBubbleAgent, type ChatBubbleAgentProps, ChatBubbleUser, type ChatBubbleUserProps, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, CompoundFilterSelect, type CompoundFilterSelectProps, type CompoundFilterToggleOption, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, type FilterItemWithSection, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, type IconColor, IconPicker, type IconPickerProps, type IconSize, IconWrapper, type IconWrapperProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, type InputVariant, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListNavItemProps, ListNavigation, type ListNavigationProps, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NestedButtonGroup, type NestedButtonGroupProps, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, Popover, type PopoverAlign, type PopoverProps, type PopoverShadow, type PopoverSide, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, SidePanel, type SidePanelProps, type SidePanelSize, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Surface, type SurfaceBackground, SurfaceBody, type SurfaceBodyProps, SurfaceFooter, type SurfaceFooterProps, SurfaceHeader, type SurfaceHeaderProps, type SurfaceProps, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagBadge, type TagBadgeProps, type TagOption, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographySize, type TypographyTone, type TypographyVariant, type TypographyWeight, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|
|
3133
|
+
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionSectionTrigger, type AccordionSectionTriggerProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, AudioPlayer, type AudioPlayerProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, ChatBubbleAgent, type ChatBubbleAgentProps, ChatBubbleUser, type ChatBubbleUserProps, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, CompoundFilterSelect, type CompoundFilterSelectProps, type CompoundFilterToggleOption, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, type FilterItemWithSection, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, type IconColor, IconPicker, type IconPickerProps, type IconSize, IconWrapper, type IconWrapperProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, type InputVariant, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListNavItemProps, ListNavigation, type ListNavigationProps, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NestedButtonGroup, type NestedButtonGroupProps, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, Popover, type PopoverAlign, type PopoverProps, type PopoverShadow, type PopoverSide, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, SidePanel, type SidePanelProps, type SidePanelSize, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Surface, type SurfaceBackground, SurfaceBody, type SurfaceBodyProps, SurfaceFooter, type SurfaceFooterProps, SurfaceHeader, type SurfaceHeaderProps, type SurfaceProps, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagBadge, type TagBadgeProps, type TagOption, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Toggle, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleType, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographySize, type TypographyTone, type TypographyVariant, type TypographyWeight, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|