@reopt-ai/opt-ui 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COMPONENT_CATALOG.md +95 -12
- package/dist/app.css +24 -0
- package/dist/core/index.cjs +3 -3
- package/dist/core/index.d.cts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +2 -2
- package/dist/docs/02-components/03-shells.md +104 -11
- package/dist/docs/02-components/index.md +3 -3
- package/dist/docs/05-migration/01-breaking-changes.md +18 -1
- package/dist/field-sidebar-BTZCBviA.d.cts +1031 -0
- package/dist/field-sidebar-BTZCBviA.d.cts.map +1 -0
- package/dist/field-sidebar-CB8vjvUM.d.ts +1031 -0
- package/dist/field-sidebar-CB8vjvUM.d.ts.map +1 -0
- package/dist/{workflow-canvas-BGBAcjf-.js → field-sidebar-Cs-J-5VE.js} +1882 -52
- package/dist/field-sidebar-Cs-J-5VE.js.map +1 -0
- package/dist/{workflow-canvas-3Jeevkgy.cjs → field-sidebar-CzIQX70-.cjs} +2010 -48
- package/dist/id-registry.cjs +41 -1
- package/dist/id-registry.d.cts +1 -1
- package/dist/id-registry.d.cts.map +1 -1
- package/dist/id-registry.d.ts +1 -1
- package/dist/id-registry.d.ts.map +1 -1
- package/dist/id-registry.js +41 -1
- package/dist/id-registry.js.map +1 -1
- package/dist/id-registry.json +85 -0
- package/dist/index.cjs +142 -56
- package/dist/index.d.cts +149 -80
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +149 -80
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +73 -11
- package/dist/index.js.map +1 -1
- package/dist/meta.cjs +292 -0
- package/dist/meta.d.cts.map +1 -1
- package/dist/meta.d.ts.map +1 -1
- package/dist/meta.js +292 -0
- package/dist/meta.js.map +1 -1
- package/dist/{pagination-By7Ozv3U.js → pagination-DWbvACuN.js} +93 -31
- package/dist/pagination-DWbvACuN.js.map +1 -0
- package/dist/{pagination-Uv3CnGJz.cjs → pagination-DjfxBcjX.cjs} +98 -36
- package/dist/query.cjs +386 -0
- package/dist/query.d.cts +141 -0
- package/dist/query.d.cts.map +1 -0
- package/dist/query.d.ts +141 -0
- package/dist/query.d.ts.map +1 -0
- package/dist/query.js +371 -0
- package/dist/query.js.map +1 -0
- package/dist/{shader-surface-BWhO2xkk.js → shader-surface-BUPZ0P-n.js} +22 -83
- package/dist/shader-surface-BUPZ0P-n.js.map +1 -0
- package/dist/{shader-surface-DIVWtpFl.d.ts → shader-surface-BfTP9c1Q.d.ts} +139 -139
- package/dist/shader-surface-BfTP9c1Q.d.ts.map +1 -0
- package/dist/{shader-surface-BK1GMt5_.d.cts → shader-surface-DRrcLrWf.d.cts} +139 -139
- package/dist/shader-surface-DRrcLrWf.d.cts.map +1 -0
- package/dist/{shader-surface-DxLLfrE6.cjs → shader-surface-Fav5K9UC.cjs} +20 -87
- package/dist/shells/index.cjs +31 -24
- package/dist/shells/index.d.cts +2 -2
- package/dist/shells/index.d.ts +2 -2
- package/dist/shells/index.js +3 -2
- package/dist/theme/presets/default.css +2 -2
- package/dist/theme/presets/minimal.css +2 -2
- package/dist/theme/presets/mono-dark.css +2 -2
- package/dist/theme/presets/natural.css +1 -1
- package/dist/theme/presets/pro.css +2 -2
- package/package.json +17 -6
- package/dist/pagination-By7Ozv3U.js.map +0 -1
- package/dist/shader-surface-BK1GMt5_.d.cts.map +0 -1
- package/dist/shader-surface-BWhO2xkk.js.map +0 -1
- package/dist/shader-surface-DIVWtpFl.d.ts.map +0 -1
- package/dist/workflow-canvas-BGBAcjf-.js.map +0 -1
- package/dist/workflow-canvas-Bar_O2SQ.d.ts +0 -494
- package/dist/workflow-canvas-Bar_O2SQ.d.ts.map +0 -1
- package/dist/workflow-canvas-DghDRtHn.d.cts +0 -494
- package/dist/workflow-canvas-DghDRtHn.d.cts.map +0 -1
|
@@ -19,7 +19,7 @@ interface KbdProps {
|
|
|
19
19
|
className?: string;
|
|
20
20
|
}
|
|
21
21
|
/** Renders the kbd component. */
|
|
22
|
-
declare function Kbd({ children, hint, className }: KbdProps): import("react
|
|
22
|
+
declare function Kbd({ children, hint, className }: KbdProps): import("react").JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
//#region src/core/text.d.ts
|
|
25
25
|
/** Semantic body-text roles backed by typography foundation tokens. */
|
|
@@ -354,7 +354,7 @@ interface SeparatorProps$1 {
|
|
|
354
354
|
* Visual divider between content. Wraps the headless primitive with design
|
|
355
355
|
* tokens. With `children`, renders a centered label flanked by rules.
|
|
356
356
|
*/
|
|
357
|
-
declare function Separator$2({ orientation, decorative, children, className }: SeparatorProps$1): import("react
|
|
357
|
+
declare function Separator$2({ orientation, decorative, children, className }: SeparatorProps$1): import("react").JSX.Element;
|
|
358
358
|
declare namespace Separator$2 {
|
|
359
359
|
var displayName: string;
|
|
360
360
|
}
|
|
@@ -393,7 +393,7 @@ interface OtpFieldProps {
|
|
|
393
393
|
* One-time-code / PIN entry split into per-character cells, with paste
|
|
394
394
|
* distribution, auto-advancing focus, and arrow/backspace navigation.
|
|
395
395
|
*/
|
|
396
|
-
declare function OtpField({ length, value: controlledValue, defaultValue, onChange, onComplete, type, mask, disabled, autoFocus, name, label, required, error, hint, className, id, "aria-label": ariaLabel }: OtpFieldProps):
|
|
396
|
+
declare function OtpField({ length, value: controlledValue, defaultValue, onChange, onComplete, type, mask, disabled, autoFocus, name, label, required, error, hint, className, id, "aria-label": ariaLabel }: OtpFieldProps): React$1.JSX.Element;
|
|
397
397
|
declare namespace OtpField {
|
|
398
398
|
var displayName: string;
|
|
399
399
|
}
|
|
@@ -409,14 +409,14 @@ interface ToggleProps$1 extends ToggleProps {
|
|
|
409
409
|
children?: ReactNode;
|
|
410
410
|
}
|
|
411
411
|
/** A two-state (pressed) button. Use standalone or inside `ToggleGroup`. */
|
|
412
|
-
declare function Toggle$1({ size, className, children, ...props }: ToggleProps$1): import("react
|
|
412
|
+
declare function Toggle$1({ size, className, children, ...props }: ToggleProps$1): import("react").JSX.Element;
|
|
413
413
|
declare namespace Toggle$1 {
|
|
414
414
|
var displayName: string;
|
|
415
415
|
}
|
|
416
416
|
/** Props for the toggle group component. */
|
|
417
417
|
type ToggleGroupProps$1 = ToggleGroupProps;
|
|
418
418
|
/** A set of related toggles with shared selection and keyboard navigation. */
|
|
419
|
-
declare function ToggleGroup$1({ className, children, orientation, ...props }: ToggleGroupProps$1): import("react
|
|
419
|
+
declare function ToggleGroup$1({ className, children, orientation, ...props }: ToggleGroupProps$1): import("react").JSX.Element;
|
|
420
420
|
declare namespace ToggleGroup$1 {
|
|
421
421
|
var displayName: string;
|
|
422
422
|
}
|
|
@@ -425,22 +425,22 @@ declare namespace ToggleGroup$1 {
|
|
|
425
425
|
/** A vertically stacked set of expandable panels (single or multiple open). */
|
|
426
426
|
declare function AccordionRoot$1({ className, ...props }: AccordionRootProps & {
|
|
427
427
|
className?: string;
|
|
428
|
-
}): import("react
|
|
428
|
+
}): import("react").JSX.Element;
|
|
429
429
|
declare namespace AccordionRoot$1 {
|
|
430
430
|
var displayName: string;
|
|
431
431
|
}
|
|
432
432
|
/** A single accordion entry, identified by its `value`. */
|
|
433
|
-
declare function AccordionItem$1({ className, ...props }: PrimAccordionItemProps): import("react
|
|
433
|
+
declare function AccordionItem$1({ className, ...props }: PrimAccordionItemProps): import("react").JSX.Element;
|
|
434
434
|
declare namespace AccordionItem$1 {
|
|
435
435
|
var displayName: string;
|
|
436
436
|
}
|
|
437
437
|
/** The clickable header that expands/collapses its panel. */
|
|
438
|
-
declare function AccordionTrigger$1({ className, children, ...props }: PrimAccordionTriggerProps): import("react
|
|
438
|
+
declare function AccordionTrigger$1({ className, children, ...props }: PrimAccordionTriggerProps): import("react").JSX.Element;
|
|
439
439
|
declare namespace AccordionTrigger$1 {
|
|
440
440
|
var displayName: string;
|
|
441
441
|
}
|
|
442
442
|
/** The collapsible panel body associated with a trigger. */
|
|
443
|
-
declare function AccordionContent$1({ className, children, ...props }: PrimAccordionContentProps): import("react
|
|
443
|
+
declare function AccordionContent$1({ className, children, ...props }: PrimAccordionContentProps): import("react").JSX.Element;
|
|
444
444
|
declare namespace AccordionContent$1 {
|
|
445
445
|
var displayName: string;
|
|
446
446
|
}
|
|
@@ -452,7 +452,7 @@ interface StatCardProps extends StatCard$1 {
|
|
|
452
452
|
className?: string;
|
|
453
453
|
}
|
|
454
454
|
/** Renders the stat card component. */
|
|
455
|
-
declare function StatCard({ title, value, change, trend, sparklineData, className }: StatCardProps):
|
|
455
|
+
declare function StatCard({ title, value, change, trend, sparklineData, className }: StatCardProps): React$1.JSX.Element;
|
|
456
456
|
declare namespace StatCard {
|
|
457
457
|
var displayName: string;
|
|
458
458
|
}
|
|
@@ -476,7 +476,7 @@ interface BreadcrumbProps {
|
|
|
476
476
|
"aria-label"?: string;
|
|
477
477
|
}
|
|
478
478
|
/** Renders the breadcrumb component. */
|
|
479
|
-
declare function Breadcrumb({ items, separator, className, onNavigate, "aria-label": ariaLabel }: BreadcrumbProps): import("react
|
|
479
|
+
declare function Breadcrumb({ items, separator, className, onNavigate, "aria-label": ariaLabel }: BreadcrumbProps): import("react").JSX.Element;
|
|
480
480
|
//#endregion
|
|
481
481
|
//#region src/core/empty-state.d.ts
|
|
482
482
|
/** Defines the empty state action shape. */
|
|
@@ -500,7 +500,7 @@ interface EmptyStateProps {
|
|
|
500
500
|
headingLevel?: "h2" | "h3" | "h4";
|
|
501
501
|
}
|
|
502
502
|
/** Renders the empty state component. */
|
|
503
|
-
declare function EmptyState({ icon, title, description, actions, className, iconSize, headingLevel }: EmptyStateProps): import("react
|
|
503
|
+
declare function EmptyState({ icon, title, description, actions, className, iconSize, headingLevel }: EmptyStateProps): import("react").JSX.Element;
|
|
504
504
|
//#endregion
|
|
505
505
|
//#region src/core/card.d.ts
|
|
506
506
|
/** Props for the card component. */
|
|
@@ -517,39 +517,39 @@ interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
517
517
|
onSelectedChange?: (selected: boolean) => void;
|
|
518
518
|
}
|
|
519
519
|
/** Renders the card component. */
|
|
520
|
-
declare function Card({ variant, padding, shadow, selectable, selected, onSelectedChange, className, children, onClick, onKeyDown, role, tabIndex, ...props }: CardProps): import("react
|
|
520
|
+
declare function Card({ variant, padding, shadow, selectable, selected, onSelectedChange, className, children, onClick, onKeyDown, role, tabIndex, ...props }: CardProps): import("react").JSX.Element;
|
|
521
521
|
/** Props for the card header component. */
|
|
522
522
|
interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
523
523
|
/** Gap between title and description */
|
|
524
524
|
gap?: "sm" | "md" | "lg";
|
|
525
525
|
}
|
|
526
526
|
/** Renders the card header component. */
|
|
527
|
-
declare function CardHeader({ gap, className, children, ...props }: CardHeaderProps): import("react
|
|
527
|
+
declare function CardHeader({ gap, className, children, ...props }: CardHeaderProps): import("react").JSX.Element;
|
|
528
528
|
/** Props for the card title component. */
|
|
529
529
|
interface CardTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
530
530
|
/** Heading level */
|
|
531
531
|
as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
532
532
|
}
|
|
533
533
|
/** Renders the card title component. */
|
|
534
|
-
declare function CardTitle({ as: Tag, className, children, ...props }: CardTitleProps): import("react
|
|
534
|
+
declare function CardTitle({ as: Tag, className, children, ...props }: CardTitleProps): import("react").JSX.Element;
|
|
535
535
|
/** Props for the card description component. */
|
|
536
536
|
type CardDescriptionProps = React.HTMLAttributes<HTMLParagraphElement>;
|
|
537
537
|
/** Renders the card description component. */
|
|
538
|
-
declare function CardDescription({ className, children, ...props }: CardDescriptionProps): import("react
|
|
538
|
+
declare function CardDescription({ className, children, ...props }: CardDescriptionProps): import("react").JSX.Element;
|
|
539
539
|
/** Props for the card content component. */
|
|
540
540
|
interface CardContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
541
541
|
/** Spacing from header */
|
|
542
542
|
spacing?: "none" | "sm" | "md" | "lg";
|
|
543
543
|
}
|
|
544
544
|
/** Renders the card content component. */
|
|
545
|
-
declare function CardContent({ spacing, className, children, ...props }: CardContentProps): import("react
|
|
545
|
+
declare function CardContent({ spacing, className, children, ...props }: CardContentProps): import("react").JSX.Element;
|
|
546
546
|
/** Props for the card footer component. */
|
|
547
547
|
interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
548
548
|
/** Show top divider */
|
|
549
549
|
divider?: boolean;
|
|
550
550
|
}
|
|
551
551
|
/** Renders the card footer component. */
|
|
552
|
-
declare function CardFooter({ divider, className, children, ...props }: CardFooterProps): import("react
|
|
552
|
+
declare function CardFooter({ divider, className, children, ...props }: CardFooterProps): import("react").JSX.Element;
|
|
553
553
|
//#endregion
|
|
554
554
|
//#region src/core/button.d.ts
|
|
555
555
|
/** Props for the button component. */
|
|
@@ -561,7 +561,7 @@ interface ButtonProps extends ComponentPropsWithoutRef<"button"> {
|
|
|
561
561
|
rightIcon?: ReactNode;
|
|
562
562
|
}
|
|
563
563
|
/** Renders the button component. */
|
|
564
|
-
declare function Button({ variant, size, loading, leftIcon, rightIcon, className, disabled, children, "aria-busy": ariaBusy, ...props }: ButtonProps): import("react
|
|
564
|
+
declare function Button({ variant, size, loading, leftIcon, rightIcon, className, disabled, children, "aria-busy": ariaBusy, ...props }: ButtonProps): import("react").JSX.Element;
|
|
565
565
|
//#endregion
|
|
566
566
|
//#region src/core/badge.d.ts
|
|
567
567
|
/** Props for the badge component. */
|
|
@@ -575,7 +575,7 @@ interface BadgeProps extends ComponentPropsWithoutRef<"span"> {
|
|
|
575
575
|
progressSize?: number;
|
|
576
576
|
}
|
|
577
577
|
/** Renders the badge component. */
|
|
578
|
-
declare function Badge({ variant, size, dot, progress, progressSize, className, children, ...props }: BadgeProps): import("react
|
|
578
|
+
declare function Badge({ variant, size, dot, progress, progressSize, className, children, ...props }: BadgeProps): import("react").JSX.Element;
|
|
579
579
|
//#endregion
|
|
580
580
|
//#region src/core/spinner.d.ts
|
|
581
581
|
/** Props for the spinner component. */
|
|
@@ -583,7 +583,7 @@ interface SpinnerProps extends ComponentPropsWithoutRef<"svg"> {
|
|
|
583
583
|
size?: "sm" | "md" | "lg";
|
|
584
584
|
}
|
|
585
585
|
/** Renders the spinner component. */
|
|
586
|
-
declare function Spinner({ size, className, role, "aria-hidden": ariaHidden, "aria-label": ariaLabel, ...props }: SpinnerProps): import("react
|
|
586
|
+
declare function Spinner({ size, className, role, "aria-hidden": ariaHidden, "aria-label": ariaLabel, ...props }: SpinnerProps): import("react").JSX.Element;
|
|
587
587
|
//#endregion
|
|
588
588
|
//#region src/core/alert.d.ts
|
|
589
589
|
/** Props for the alert component. */
|
|
@@ -595,7 +595,7 @@ interface AlertProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
595
595
|
onDismiss?: () => void;
|
|
596
596
|
}
|
|
597
597
|
/** Renders the alert component. */
|
|
598
|
-
declare function Alert({ variant, title, icon, dismissible, onDismiss, className, children, ...props }: AlertProps): import("react
|
|
598
|
+
declare function Alert({ variant, title, icon, dismissible, onDismiss, className, children, ...props }: AlertProps): import("react").JSX.Element;
|
|
599
599
|
//#endregion
|
|
600
600
|
//#region src/core/input.d.ts
|
|
601
601
|
/** Props for the input component. */
|
|
@@ -636,23 +636,23 @@ interface SkeletonProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
636
636
|
animated?: boolean;
|
|
637
637
|
}
|
|
638
638
|
/** Renders the skeleton component. */
|
|
639
|
-
declare function Skeleton({ variant, width, height, lines, animated, className, style, ...props }: SkeletonProps): import("react
|
|
639
|
+
declare function Skeleton({ variant, width, height, lines, animated, className, style, ...props }: SkeletonProps): import("react").JSX.Element;
|
|
640
640
|
/** Renders the skeleton text component. */
|
|
641
641
|
declare function SkeletonText({ lines, className, ...props }: Omit<SkeletonProps, "variant"> & {
|
|
642
642
|
lines?: number;
|
|
643
|
-
}): import("react
|
|
643
|
+
}): import("react").JSX.Element;
|
|
644
644
|
/** Renders the skeleton avatar component. */
|
|
645
645
|
declare function SkeletonAvatar({ size, className, ...props }: Omit<SkeletonProps, "variant" | "width" | "height"> & {
|
|
646
646
|
size?: number;
|
|
647
|
-
}): import("react
|
|
647
|
+
}): import("react").JSX.Element;
|
|
648
648
|
/** Renders the skeleton card component. */
|
|
649
|
-
declare function SkeletonCard({ className, ...props }: Omit<SkeletonProps, "variant">): import("react
|
|
649
|
+
declare function SkeletonCard({ className, ...props }: Omit<SkeletonProps, "variant">): import("react").JSX.Element;
|
|
650
650
|
/** Renders the skeleton table component. */
|
|
651
651
|
declare function SkeletonTable({ rows, columns, className }: {
|
|
652
652
|
rows?: number;
|
|
653
653
|
columns?: number;
|
|
654
654
|
className?: string;
|
|
655
|
-
}): import("react
|
|
655
|
+
}): import("react").JSX.Element;
|
|
656
656
|
//#endregion
|
|
657
657
|
//#region src/core/textarea.d.ts
|
|
658
658
|
/** Props for the textarea component. */
|
|
@@ -687,7 +687,7 @@ interface AvatarProps extends ComponentPropsWithoutRef<"span"> {
|
|
|
687
687
|
onLoadingStatusChange?: (status: AvatarImageLoadingStatus) => void;
|
|
688
688
|
}
|
|
689
689
|
/** Renders the avatar component. */
|
|
690
|
-
declare function Avatar({ src, srcSet, sizes, crossOrigin, referrerPolicy, alt, name, size, fallback, status, className, onLoadingStatusChange, ...props }: AvatarProps): import("react
|
|
690
|
+
declare function Avatar({ src, srcSet, sizes, crossOrigin, referrerPolicy, alt, name, size, fallback, status, className, onLoadingStatusChange, ...props }: AvatarProps): import("react").JSX.Element;
|
|
691
691
|
/** Props for the avatar group component. */
|
|
692
692
|
interface AvatarGroupProps extends ComponentPropsWithoutRef<"div"> {
|
|
693
693
|
max?: number;
|
|
@@ -695,7 +695,7 @@ interface AvatarGroupProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
695
695
|
children: ReactNode;
|
|
696
696
|
}
|
|
697
697
|
/** Renders the avatar group component. */
|
|
698
|
-
declare function AvatarGroup({ max, size, children, className, ...props }: AvatarGroupProps): import("react
|
|
698
|
+
declare function AvatarGroup({ max, size, children, className, ...props }: AvatarGroupProps): import("react").JSX.Element;
|
|
699
699
|
//#endregion
|
|
700
700
|
//#region src/core/progress.d.ts
|
|
701
701
|
/** Props for the progress component. */
|
|
@@ -710,7 +710,7 @@ interface ProgressProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
710
710
|
indeterminate?: boolean;
|
|
711
711
|
}
|
|
712
712
|
/** Renders the progress component. */
|
|
713
|
-
declare function Progress({ value, max, size, variant, showLabel, label, animated, indeterminate, className, ...props }: ProgressProps): import("react
|
|
713
|
+
declare function Progress({ value, max, size, variant, showLabel, label, animated, indeterminate, className, ...props }: ProgressProps): import("react").JSX.Element;
|
|
714
714
|
/** Props for the circular progress component. */
|
|
715
715
|
interface CircularProgressProps extends ComponentPropsWithoutRef<"svg"> {
|
|
716
716
|
value?: number;
|
|
@@ -723,7 +723,7 @@ interface CircularProgressProps extends ComponentPropsWithoutRef<"svg"> {
|
|
|
723
723
|
indeterminate?: boolean;
|
|
724
724
|
}
|
|
725
725
|
/** Renders the circular progress component. */
|
|
726
|
-
declare function CircularProgress({ value, max, size, strokeWidth, variant, showLabel, label, indeterminate, className, ...props }: CircularProgressProps): import("react
|
|
726
|
+
declare function CircularProgress({ value, max, size, strokeWidth, variant, showLabel, label, indeterminate, className, ...props }: CircularProgressProps): import("react").JSX.Element;
|
|
727
727
|
//#endregion
|
|
728
728
|
//#region src/core/meter.d.ts
|
|
729
729
|
/** Props for the meter component. */
|
|
@@ -745,7 +745,7 @@ interface MeterProps extends Omit<ComponentPropsWithoutRef<"div">, "children"> {
|
|
|
745
745
|
* `role="meter"`, distinct from Progress (task completion). Built on the
|
|
746
746
|
* opt-ui-primitives Meter primitive, which owns the role/aria/valuetext.
|
|
747
747
|
*/
|
|
748
|
-
declare function Meter$1({ value, min, max, size, variant, showValue, label, getValueLabel, className, ...props }: MeterProps): import("react
|
|
748
|
+
declare function Meter$1({ value, min, max, size, variant, showValue, label, getValueLabel, className, ...props }: MeterProps): import("react").JSX.Element;
|
|
749
749
|
//#endregion
|
|
750
750
|
//#region src/core/composite-zone.d.ts
|
|
751
751
|
interface CompositeZoneProps {
|
|
@@ -756,15 +756,15 @@ interface CompositeZoneProps {
|
|
|
756
756
|
className?: string;
|
|
757
757
|
}
|
|
758
758
|
/** Renders the composite zone component. */
|
|
759
|
-
declare function CompositeZone({ children, label, focusLoop, focusWrap, className }: CompositeZoneProps): import("react
|
|
759
|
+
declare function CompositeZone({ children, label, focusLoop, focusWrap, className }: CompositeZoneProps): import("react").JSX.Element;
|
|
760
760
|
//#endregion
|
|
761
761
|
//#region src/core/disclosure.d.ts
|
|
762
762
|
/** Renders the disclosure root component. */
|
|
763
|
-
declare function DisclosureRoot$1(props: DisclosureRootProps): import("react
|
|
763
|
+
declare function DisclosureRoot$1(props: DisclosureRootProps): import("react").JSX.Element;
|
|
764
764
|
/** Renders the disclosure trigger component. */
|
|
765
|
-
declare function DisclosureTrigger$1({ className, ...props }: PrimDisclosureTriggerProps): import("react
|
|
765
|
+
declare function DisclosureTrigger$1({ className, ...props }: PrimDisclosureTriggerProps): import("react").JSX.Element;
|
|
766
766
|
/** Renders the disclosure content component. */
|
|
767
|
-
declare function DisclosureContent$1({ className, ...props }: PrimDisclosureContentProps): import("react
|
|
767
|
+
declare function DisclosureContent$1({ className, ...props }: PrimDisclosureContentProps): import("react").JSX.Element;
|
|
768
768
|
//#endregion
|
|
769
769
|
//#region src/core/tabs.d.ts
|
|
770
770
|
/**
|
|
@@ -783,7 +783,7 @@ interface TabsRootProps$1 extends TabsRootProps {
|
|
|
783
783
|
variant?: TabsVariant;
|
|
784
784
|
}
|
|
785
785
|
/** Renders the tabs root component. */
|
|
786
|
-
declare function TabsRoot$1({ variant, ...props }: TabsRootProps$1):
|
|
786
|
+
declare function TabsRoot$1({ variant, ...props }: TabsRootProps$1): React$1.JSX.Element;
|
|
787
787
|
/** Props for the tab list component. */
|
|
788
788
|
interface TabListProps$1 extends TabListProps {
|
|
789
789
|
/**
|
|
@@ -793,7 +793,7 @@ interface TabListProps$1 extends TabListProps {
|
|
|
793
793
|
actions?: React$1.ReactNode;
|
|
794
794
|
}
|
|
795
795
|
/** Renders the tab list component. */
|
|
796
|
-
declare function TabList$1({ className, actions, ...props }: TabListProps$1):
|
|
796
|
+
declare function TabList$1({ className, actions, ...props }: TabListProps$1): React$1.JSX.Element;
|
|
797
797
|
/** Props for the tab component. */
|
|
798
798
|
interface TabProps$1 extends TabProps {
|
|
799
799
|
/** 탭 이름 앞에 놓이는 아이콘. 활성 탭에서 accent 색으로 전환된다. */
|
|
@@ -804,26 +804,26 @@ interface TabProps$1 extends TabProps {
|
|
|
804
804
|
statusLabel?: string;
|
|
805
805
|
}
|
|
806
806
|
/** Renders the tab component. */
|
|
807
|
-
declare function Tab$1({ className, icon, status, statusLabel, children, ...props }: TabProps$1):
|
|
807
|
+
declare function Tab$1({ className, icon, status, statusLabel, children, ...props }: TabProps$1): React$1.JSX.Element;
|
|
808
808
|
/** Props for the tab panel component. */
|
|
809
809
|
type TabPanelProps$1 = TabPanelProps;
|
|
810
810
|
/** Renders the tab panel component. */
|
|
811
|
-
declare function TabPanel$1({ className, ...props }: TabPanelProps$1):
|
|
811
|
+
declare function TabPanel$1({ className, ...props }: TabPanelProps$1): React$1.JSX.Element;
|
|
812
812
|
//#endregion
|
|
813
813
|
//#region src/core/select.d.ts
|
|
814
814
|
/** Renders the select root component. */
|
|
815
|
-
declare function SelectRoot$1(props: SelectRootProps): import("react
|
|
815
|
+
declare function SelectRoot$1(props: SelectRootProps): import("react").JSX.Element;
|
|
816
816
|
/** Renders the select label component. */
|
|
817
|
-
declare function SelectLabel$1(props: SelectLabelProps): import("react
|
|
817
|
+
declare function SelectLabel$1(props: SelectLabelProps): import("react").JSX.Element;
|
|
818
818
|
type SelectTriggerProps$1 = SelectTriggerProps & {
|
|
819
819
|
minWidth?: number | string;
|
|
820
820
|
};
|
|
821
821
|
/** Renders the select trigger component. */
|
|
822
|
-
declare function SelectTrigger$1({ className, minWidth, style, ...props }: SelectTriggerProps$1): import("react
|
|
822
|
+
declare function SelectTrigger$1({ className, minWidth, style, ...props }: SelectTriggerProps$1): import("react").JSX.Element;
|
|
823
823
|
/** Renders the select popover component. */
|
|
824
|
-
declare function SelectPopover$1({ className, ...props }: SelectPopoverProps): import("react
|
|
824
|
+
declare function SelectPopover$1({ className, ...props }: SelectPopoverProps): import("react").JSX.Element;
|
|
825
825
|
/** Renders the select item component. */
|
|
826
|
-
declare function SelectItem$1({ className, ...props }: SelectItemProps): import("react
|
|
826
|
+
declare function SelectItem$1({ className, ...props }: SelectItemProps): import("react").JSX.Element;
|
|
827
827
|
//#endregion
|
|
828
828
|
//#region src/core/dialog.d.ts
|
|
829
829
|
declare const sizeClasses: {
|
|
@@ -837,15 +837,15 @@ declare const sizeClasses: {
|
|
|
837
837
|
/** Type definition for dialog size. */
|
|
838
838
|
type DialogSize = keyof typeof sizeClasses;
|
|
839
839
|
/** Renders the dialog root component. */
|
|
840
|
-
declare function DialogRoot$1(props: DialogRootProps): import("react
|
|
840
|
+
declare function DialogRoot$1(props: DialogRootProps): import("react").JSX.Element;
|
|
841
841
|
type DialogDisclosureProps = ComponentPropsWithoutRef<"button">;
|
|
842
842
|
/** Renders the dialog disclosure component. */
|
|
843
|
-
declare function DialogDisclosure$1({ className, ...props }: DialogDisclosureProps): import("react
|
|
843
|
+
declare function DialogDisclosure$1({ className, ...props }: DialogDisclosureProps): import("react").JSX.Element;
|
|
844
844
|
type DialogPanelProps$1 = DialogPanelProps & {
|
|
845
845
|
size?: DialogSize;
|
|
846
846
|
};
|
|
847
847
|
/** Renders the dialog panel component. */
|
|
848
|
-
declare function DialogPanel$1({ className, size, ...props }: DialogPanelProps$1): import("react
|
|
848
|
+
declare function DialogPanel$1({ className, size, ...props }: DialogPanelProps$1): import("react").JSX.Element;
|
|
849
849
|
/** Props for the alert dialog panel component. */
|
|
850
850
|
type AlertDialogPanelProps$1 = AlertDialogPanelProps & {
|
|
851
851
|
size?: DialogSize;
|
|
@@ -855,94 +855,94 @@ type AlertDialogPanelProps$1 = AlertDialogPanelProps & {
|
|
|
855
855
|
* backdrop/Escape dismissal. Use for destructive confirmations. Compose with
|
|
856
856
|
* the other Dialog parts (DialogRoot/Heading/Description/Dismiss/…).
|
|
857
857
|
*/
|
|
858
|
-
declare function AlertDialogPanel$1({ className, size, ...props }: AlertDialogPanelProps$1): import("react
|
|
858
|
+
declare function AlertDialogPanel$1({ className, size, ...props }: AlertDialogPanelProps$1): import("react").JSX.Element;
|
|
859
859
|
type DialogHeadingProps = ComponentPropsWithoutRef<"h2">;
|
|
860
860
|
/** Renders the dialog heading component. */
|
|
861
|
-
declare function DialogHeading$1({ className, ...props }: DialogHeadingProps): import("react
|
|
861
|
+
declare function DialogHeading$1({ className, ...props }: DialogHeadingProps): import("react").JSX.Element;
|
|
862
862
|
type DialogDescriptionProps = ComponentPropsWithoutRef<"p">;
|
|
863
863
|
/** Renders the dialog description component. */
|
|
864
|
-
declare function DialogDescription$1({ className, ...props }: DialogDescriptionProps): import("react
|
|
864
|
+
declare function DialogDescription$1({ className, ...props }: DialogDescriptionProps): import("react").JSX.Element;
|
|
865
865
|
type DialogDismissProps = ComponentPropsWithoutRef<"button">;
|
|
866
866
|
/** Renders the dialog dismiss component. */
|
|
867
|
-
declare function DialogDismiss$1({ className, ...props }: DialogDismissProps): import("react
|
|
867
|
+
declare function DialogDismiss$1({ className, ...props }: DialogDismissProps): import("react").JSX.Element;
|
|
868
868
|
/** Props for the dialog header component. */
|
|
869
869
|
interface DialogHeaderProps {
|
|
870
870
|
children: ReactNode;
|
|
871
871
|
className?: string;
|
|
872
872
|
}
|
|
873
873
|
/** Renders the dialog header component. */
|
|
874
|
-
declare function DialogHeader({ children, className }: DialogHeaderProps): import("react
|
|
874
|
+
declare function DialogHeader({ children, className }: DialogHeaderProps): import("react").JSX.Element;
|
|
875
875
|
/** Props for the dialog body component. */
|
|
876
876
|
interface DialogBodyProps {
|
|
877
877
|
children: ReactNode;
|
|
878
878
|
className?: string;
|
|
879
879
|
}
|
|
880
880
|
/** Renders the dialog body component. */
|
|
881
|
-
declare function DialogBody({ children, className }: DialogBodyProps): import("react
|
|
881
|
+
declare function DialogBody({ children, className }: DialogBodyProps): import("react").JSX.Element;
|
|
882
882
|
/** Props for the dialog footer component. */
|
|
883
883
|
interface DialogFooterProps {
|
|
884
884
|
children: ReactNode;
|
|
885
885
|
className?: string;
|
|
886
886
|
}
|
|
887
887
|
/** Renders the dialog footer component. */
|
|
888
|
-
declare function DialogFooter({ children, className }: DialogFooterProps): import("react
|
|
888
|
+
declare function DialogFooter({ children, className }: DialogFooterProps): import("react").JSX.Element;
|
|
889
889
|
//#endregion
|
|
890
890
|
//#region src/core/combobox.d.ts
|
|
891
891
|
/** Renders the combobox root component. */
|
|
892
|
-
declare function ComboboxRoot$1(props: ComboboxRootProps): import("react
|
|
892
|
+
declare function ComboboxRoot$1(props: ComboboxRootProps): import("react").JSX.Element;
|
|
893
893
|
/** Renders the combobox input component. */
|
|
894
|
-
declare function ComboboxInput$1({ className, ...props }: ComboboxInputProps): import("react
|
|
894
|
+
declare function ComboboxInput$1({ className, ...props }: ComboboxInputProps): import("react").JSX.Element;
|
|
895
895
|
/** Renders the combobox popover component. */
|
|
896
|
-
declare function ComboboxPopover$1({ className, ...props }: ComboboxPopoverProps): import("react
|
|
896
|
+
declare function ComboboxPopover$1({ className, ...props }: ComboboxPopoverProps): import("react").JSX.Element;
|
|
897
897
|
/** Renders the combobox item component. */
|
|
898
|
-
declare function ComboboxItem$1({ className, ...props }: ComboboxItemProps): import("react
|
|
898
|
+
declare function ComboboxItem$1({ className, ...props }: ComboboxItemProps): import("react").JSX.Element;
|
|
899
899
|
/** Renders the combobox group component. */
|
|
900
|
-
declare function ComboboxGroup$1(props: ComboboxGroupProps): import("react
|
|
900
|
+
declare function ComboboxGroup$1(props: ComboboxGroupProps): import("react").JSX.Element;
|
|
901
901
|
/** Renders the combobox group label component. */
|
|
902
|
-
declare function ComboboxGroupLabel$1({ className, ...props }: ComboboxGroupLabelProps): import("react
|
|
902
|
+
declare function ComboboxGroupLabel$1({ className, ...props }: ComboboxGroupLabelProps): import("react").JSX.Element;
|
|
903
903
|
/** Renders the combobox empty component. */
|
|
904
904
|
declare function ComboboxEmpty({ className, children }: {
|
|
905
905
|
className?: string;
|
|
906
906
|
children?: React.ReactNode;
|
|
907
|
-
}): import("react
|
|
907
|
+
}): import("react").JSX.Element;
|
|
908
908
|
//#endregion
|
|
909
909
|
//#region src/core/menu.d.ts
|
|
910
910
|
/** Renders the menubar root component. */
|
|
911
|
-
declare function MenubarRoot$1(props: MenubarRootProps): import("react
|
|
911
|
+
declare function MenubarRoot$1(props: MenubarRootProps): import("react").JSX.Element;
|
|
912
912
|
/** Renders the menubar container component. */
|
|
913
|
-
declare function MenubarContainer$1({ className, ...props }: MenubarContainerProps): import("react
|
|
913
|
+
declare function MenubarContainer$1({ className, ...props }: MenubarContainerProps): import("react").JSX.Element;
|
|
914
914
|
/** Renders the menu root component. */
|
|
915
|
-
declare function MenuRoot$1(props: MenuRootProps): import("react
|
|
915
|
+
declare function MenuRoot$1(props: MenuRootProps): import("react").JSX.Element;
|
|
916
916
|
/** Renders the menu trigger component. */
|
|
917
|
-
declare function MenuTrigger$1({ className, ...props }: MenuTriggerProps): import("react
|
|
917
|
+
declare function MenuTrigger$1({ className, ...props }: MenuTriggerProps): import("react").JSX.Element;
|
|
918
918
|
/** Renders the menu button arrow component. */
|
|
919
|
-
declare function MenuButtonArrow$1(props: MenuButtonArrowProps): import("react
|
|
919
|
+
declare function MenuButtonArrow$1(props: MenuButtonArrowProps): import("react").JSX.Element;
|
|
920
920
|
/** Renders the menu popover component. */
|
|
921
|
-
declare function MenuPopover$1({ className, ...props }: MenuPopoverProps): import("react
|
|
921
|
+
declare function MenuPopover$1({ className, ...props }: MenuPopoverProps): import("react").JSX.Element;
|
|
922
922
|
/** Renders the menu item component. */
|
|
923
|
-
declare function MenuItem$1({ className, ...props }: MenuItemProps): import("react
|
|
923
|
+
declare function MenuItem$1({ className, ...props }: MenuItemProps): import("react").JSX.Element;
|
|
924
924
|
/** Renders the menu item checkbox component. */
|
|
925
|
-
declare function MenuItemCheckbox$1({ className, ...props }: MenuItemCheckboxProps): import("react
|
|
925
|
+
declare function MenuItemCheckbox$1({ className, ...props }: MenuItemCheckboxProps): import("react").JSX.Element;
|
|
926
926
|
/** Renders the menu item radio component. */
|
|
927
|
-
declare function MenuItemRadio$1({ className, ...props }: MenuItemRadioProps): import("react
|
|
927
|
+
declare function MenuItemRadio$1({ className, ...props }: MenuItemRadioProps): import("react").JSX.Element;
|
|
928
928
|
/** Renders the menu separator component. */
|
|
929
|
-
declare function MenuSeparator$1({ className, ...props }: MenuSeparatorProps): import("react
|
|
929
|
+
declare function MenuSeparator$1({ className, ...props }: MenuSeparatorProps): import("react").JSX.Element;
|
|
930
930
|
//#endregion
|
|
931
931
|
//#region src/core/toolbar.d.ts
|
|
932
932
|
/** Renders the toolbar root component. */
|
|
933
|
-
declare function ToolbarRoot$1(props: ToolbarRootProps): import("react
|
|
933
|
+
declare function ToolbarRoot$1(props: ToolbarRootProps): import("react").JSX.Element;
|
|
934
934
|
/** Renders the toolbar container component. */
|
|
935
|
-
declare function ToolbarContainer$1({ className, ...props }: ToolbarContainerProps): import("react
|
|
935
|
+
declare function ToolbarContainer$1({ className, ...props }: ToolbarContainerProps): import("react").JSX.Element;
|
|
936
936
|
/** Renders the toolbar button component. */
|
|
937
|
-
declare function ToolbarButton$1({ className, ...props }: ToolbarButtonProps): import("react
|
|
937
|
+
declare function ToolbarButton$1({ className, ...props }: ToolbarButtonProps): import("react").JSX.Element;
|
|
938
938
|
/** Renders the toolbar separator component. */
|
|
939
|
-
declare function ToolbarSeparator$1({ className, ...props }: ToolbarSeparatorProps): import("react
|
|
939
|
+
declare function ToolbarSeparator$1({ className, ...props }: ToolbarSeparatorProps): import("react").JSX.Element;
|
|
940
940
|
/** Renders the tooltip provider component. */
|
|
941
|
-
declare function TooltipProvider$1(props: TooltipProviderProps): import("react
|
|
941
|
+
declare function TooltipProvider$1(props: TooltipProviderProps): import("react").JSX.Element;
|
|
942
942
|
/** Renders the tooltip anchor component. */
|
|
943
|
-
declare function TooltipAnchor$1({ className, ...props }: TooltipAnchorProps): import("react
|
|
943
|
+
declare function TooltipAnchor$1({ className, ...props }: TooltipAnchorProps): import("react").JSX.Element;
|
|
944
944
|
/** Renders the tooltip component. */
|
|
945
|
-
declare function Tooltip$1({ className, ...props }: TooltipProps): import("react
|
|
945
|
+
declare function Tooltip$1({ className, ...props }: TooltipProps): import("react").JSX.Element;
|
|
946
946
|
//#endregion
|
|
947
947
|
//#region src/core/number-input.d.ts
|
|
948
948
|
type NumberInputValue = number | null;
|
|
@@ -988,7 +988,7 @@ interface NumberInputProps<TNullable extends boolean = false> {
|
|
|
988
988
|
"aria-label"?: string;
|
|
989
989
|
}
|
|
990
990
|
/** Renders the number input component. */
|
|
991
|
-
declare function NumberInput<TNullable extends boolean = false>({ value: controlledValue, defaultValue, onChange, nullable, clearable, min, max, step, largeStep, scrub, label, unit, required, error, hint, disabled, disabledReason, labels, className, id, "aria-label": ariaLabel }: NumberInputProps<TNullable>):
|
|
991
|
+
declare function NumberInput<TNullable extends boolean = false>({ value: controlledValue, defaultValue, onChange, nullable, clearable, min, max, step, largeStep, scrub, label, unit, required, error, hint, disabled, disabledReason, labels, className, id, "aria-label": ariaLabel }: NumberInputProps<TNullable>): React$1.JSX.Element;
|
|
992
992
|
declare namespace NumberInput {
|
|
993
993
|
var displayName: string;
|
|
994
994
|
}
|
|
@@ -1012,7 +1012,7 @@ interface SliderProps {
|
|
|
1012
1012
|
"aria-label"?: string;
|
|
1013
1013
|
}
|
|
1014
1014
|
/** Renders the slider component. */
|
|
1015
|
-
declare function Slider({ value: controlledValue, defaultValue, onChange, min, max, step, label, showValue, formatValue, disabled, className, "aria-label": ariaLabel }: SliderProps): import("react
|
|
1015
|
+
declare function Slider({ value: controlledValue, defaultValue, onChange, min, max, step, label, showValue, formatValue, disabled, className, "aria-label": ariaLabel }: SliderProps): import("react").JSX.Element;
|
|
1016
1016
|
declare namespace Slider {
|
|
1017
1017
|
var displayName: string;
|
|
1018
1018
|
}
|
|
@@ -1031,7 +1031,7 @@ interface StarRatingProps {
|
|
|
1031
1031
|
ariaLabel?: string;
|
|
1032
1032
|
}
|
|
1033
1033
|
/** Renders the star rating component. */
|
|
1034
|
-
declare function StarRating({ value, onChange, max, readOnly, size, className, ariaLabel }: StarRatingProps): import("react
|
|
1034
|
+
declare function StarRating({ value, onChange, max, readOnly, size, className, ariaLabel }: StarRatingProps): import("react").JSX.Element;
|
|
1035
1035
|
//#endregion
|
|
1036
1036
|
//#region src/core/color-picker.d.ts
|
|
1037
1037
|
/** Props for the color picker component. */
|
|
@@ -1075,7 +1075,7 @@ interface IconPickerProps {
|
|
|
1075
1075
|
"aria-label"?: string;
|
|
1076
1076
|
}
|
|
1077
1077
|
/** Renders the icon picker component. */
|
|
1078
|
-
declare function IconPicker({ value, onChange, icons, label, required, error, hint, placeholder, disabled, className, id, "aria-label": ariaLabel }: IconPickerProps):
|
|
1078
|
+
declare function IconPicker({ value, onChange, icons, label, required, error, hint, placeholder, disabled, className, id, "aria-label": ariaLabel }: IconPickerProps): React$1.JSX.Element;
|
|
1079
1079
|
declare namespace IconPicker {
|
|
1080
1080
|
var displayName: string;
|
|
1081
1081
|
}
|
|
@@ -1150,7 +1150,7 @@ interface DateRangePickerProps {
|
|
|
1150
1150
|
}
|
|
1151
1151
|
declare const DEFAULT_PRESETS: DateRangePreset[];
|
|
1152
1152
|
/** Renders the date range picker component. */
|
|
1153
|
-
declare function DateRangePicker({ value, onChange, presets, placeholder, label, required, error, hint, className, id, triggerClassName, "aria-label": ariaLabel, disabled, format, comparison, comparisonMode, onComparisonChange, showGranularity, granularity, onGranularityChange }: DateRangePickerProps): import("react
|
|
1153
|
+
declare function DateRangePicker({ value, onChange, presets, placeholder, label, required, error, hint, className, id, triggerClassName, "aria-label": ariaLabel, disabled, format, comparison, comparisonMode, onComparisonChange, showGranularity, granularity, onGranularityChange }: DateRangePickerProps): import("react").JSX.Element;
|
|
1154
1154
|
declare namespace DateRangePicker {
|
|
1155
1155
|
var displayName: string;
|
|
1156
1156
|
}
|
|
@@ -1161,17 +1161,17 @@ type FormRootProps$1 = FormRootProps & {
|
|
|
1161
1161
|
store?: FormStoreInstance;
|
|
1162
1162
|
};
|
|
1163
1163
|
/** Renders the form root component. */
|
|
1164
|
-
declare function FormRoot$1({ className, store, ...props }: FormRootProps$1): import("react
|
|
1164
|
+
declare function FormRoot$1({ className, store, ...props }: FormRootProps$1): import("react").JSX.Element;
|
|
1165
1165
|
type FormInputProps$1 = FormInputProps;
|
|
1166
1166
|
/** Renders the form input component. */
|
|
1167
|
-
declare function FormInput$1({ className, ...props }: FormInputProps$1): import("react
|
|
1167
|
+
declare function FormInput$1({ className, ...props }: FormInputProps$1): import("react").JSX.Element;
|
|
1168
1168
|
/** Props for the form textarea component. */
|
|
1169
1169
|
type FormTextareaProps = Omit<ComponentPropsWithoutRef<"textarea">, "name"> & {
|
|
1170
1170
|
name: string;
|
|
1171
1171
|
resize?: "none" | "vertical" | "horizontal" | "both";
|
|
1172
1172
|
};
|
|
1173
1173
|
/** Renders the form textarea component. */
|
|
1174
|
-
declare function FormTextarea({ className, resize, rows, name, ...props }: FormTextareaProps): import("react
|
|
1174
|
+
declare function FormTextarea({ className, resize, rows, name, ...props }: FormTextareaProps): import("react").JSX.Element;
|
|
1175
1175
|
/** Props for the form select component. */
|
|
1176
1176
|
type FormSelectProps = {
|
|
1177
1177
|
name: string;
|
|
@@ -1182,105 +1182,105 @@ type FormSelectProps = {
|
|
|
1182
1182
|
"aria-label"?: string;
|
|
1183
1183
|
};
|
|
1184
1184
|
/** Renders the form select component. */
|
|
1185
|
-
declare function FormSelect({ name, children, className, placeholder, minWidth, "aria-label": ariaLabel }: FormSelectProps): import("react
|
|
1185
|
+
declare function FormSelect({ name, children, className, placeholder, minWidth, "aria-label": ariaLabel }: FormSelectProps): import("react").JSX.Element;
|
|
1186
1186
|
type FormSelectPopoverProps = ComponentPropsWithoutRef<typeof SelectPopover$1>;
|
|
1187
1187
|
/** Renders the form select popover component. */
|
|
1188
|
-
declare function FormSelectPopover({ className, ...props }: FormSelectPopoverProps): import("react
|
|
1188
|
+
declare function FormSelectPopover({ className, ...props }: FormSelectPopoverProps): import("react").JSX.Element;
|
|
1189
1189
|
type FormSelectItemProps = ComponentPropsWithoutRef<typeof SelectItem$1>;
|
|
1190
1190
|
/** Renders the form select item component. */
|
|
1191
|
-
declare function FormSelectItem({ className, ...props }: FormSelectItemProps): import("react
|
|
1191
|
+
declare function FormSelectItem({ className, ...props }: FormSelectItemProps): import("react").JSX.Element;
|
|
1192
1192
|
/** Props for the form switch component. */
|
|
1193
1193
|
type FormSwitchProps$1 = FormSwitchProps & {
|
|
1194
1194
|
size?: "sm" | "md" | "lg";
|
|
1195
1195
|
};
|
|
1196
1196
|
/** Renders the form switch component. */
|
|
1197
|
-
declare function FormSwitch$1({ className, size, name, ...props }: FormSwitchProps$1): import("react
|
|
1197
|
+
declare function FormSwitch$1({ className, size, name, ...props }: FormSwitchProps$1): import("react").JSX.Element;
|
|
1198
1198
|
type FormLabelProps$1 = FormLabelProps;
|
|
1199
1199
|
/** Renders the form label component. */
|
|
1200
|
-
declare function FormLabel$1({ className, ...props }: FormLabelProps$1): import("react
|
|
1200
|
+
declare function FormLabel$1({ className, ...props }: FormLabelProps$1): import("react").JSX.Element;
|
|
1201
1201
|
type FormErrorProps$1 = FormErrorProps;
|
|
1202
1202
|
/** Renders the form error component. */
|
|
1203
|
-
declare function FormError$1({ className, ...props }: FormErrorProps$1): import("react
|
|
1203
|
+
declare function FormError$1({ className, ...props }: FormErrorProps$1): import("react").JSX.Element;
|
|
1204
1204
|
type FormSubmitProps$1 = FormSubmitProps;
|
|
1205
1205
|
/** Renders the form submit component. */
|
|
1206
|
-
declare function FormSubmit$1({ className, disabled, children, ...props }: FormSubmitProps$1): import("react
|
|
1206
|
+
declare function FormSubmit$1({ className, disabled, children, ...props }: FormSubmitProps$1): import("react").JSX.Element;
|
|
1207
1207
|
/** Renders the form provider component. */
|
|
1208
|
-
declare function FormProvider$1(props: ComponentPropsWithoutRef<typeof FormProvider>): import("react
|
|
1208
|
+
declare function FormProvider$1(props: ComponentPropsWithoutRef<typeof FormProvider>): import("react").JSX.Element;
|
|
1209
1209
|
type FormGroupProps$1 = FormGroupProps;
|
|
1210
1210
|
/** Renders the form group component. */
|
|
1211
|
-
declare function FormGroup$1({ className, ...props }: FormGroupProps$1): import("react
|
|
1211
|
+
declare function FormGroup$1({ className, ...props }: FormGroupProps$1): import("react").JSX.Element;
|
|
1212
1212
|
type FormGroupLabelProps$1 = FormGroupLabelProps;
|
|
1213
1213
|
/** Renders the form group label component. */
|
|
1214
|
-
declare function FormGroupLabel$1({ className, ...props }: FormGroupLabelProps$1): import("react
|
|
1214
|
+
declare function FormGroupLabel$1({ className, ...props }: FormGroupLabelProps$1): import("react").JSX.Element;
|
|
1215
1215
|
type FormDescriptionProps$1 = FormDescriptionProps;
|
|
1216
1216
|
/** Renders the form description component. */
|
|
1217
|
-
declare function FormDescription$1({ className, ...props }: FormDescriptionProps$1): import("react
|
|
1217
|
+
declare function FormDescription$1({ className, ...props }: FormDescriptionProps$1): import("react").JSX.Element;
|
|
1218
1218
|
type FormFieldProps$1 = FormFieldProps;
|
|
1219
1219
|
/** Renders the form field component. */
|
|
1220
|
-
declare function FormField$1({ className, ...props }: FormFieldProps$1): import("react
|
|
1220
|
+
declare function FormField$1({ className, ...props }: FormFieldProps$1): import("react").JSX.Element;
|
|
1221
1221
|
type FormControlProps = FormInputProps;
|
|
1222
1222
|
/** Renders the form control component. */
|
|
1223
|
-
declare function FormControl$1({ className, ...props }: FormControlProps): import("react
|
|
1223
|
+
declare function FormControl$1({ className, ...props }: FormControlProps): import("react").JSX.Element;
|
|
1224
1224
|
type FormPushProps$1 = FormPushProps;
|
|
1225
1225
|
/** Renders the form push component. */
|
|
1226
|
-
declare function FormPush$1({ className, ...props }: FormPushProps$1): import("react
|
|
1226
|
+
declare function FormPush$1({ className, ...props }: FormPushProps$1): import("react").JSX.Element;
|
|
1227
1227
|
type FormRemoveProps$1 = FormRemoveProps;
|
|
1228
1228
|
/** Renders the form remove component. */
|
|
1229
|
-
declare function FormRemove$1({ className, ...props }: FormRemoveProps$1): import("react
|
|
1229
|
+
declare function FormRemove$1({ className, ...props }: FormRemoveProps$1): import("react").JSX.Element;
|
|
1230
1230
|
type FormResetProps$1 = FormResetProps;
|
|
1231
1231
|
/** Renders the form reset component. */
|
|
1232
|
-
declare function FormReset$1({ className, ...props }: FormResetProps$1): import("react
|
|
1232
|
+
declare function FormReset$1({ className, ...props }: FormResetProps$1): import("react").JSX.Element;
|
|
1233
1233
|
type FormCheckboxProps$1 = FormCheckboxProps;
|
|
1234
1234
|
/** Renders the form checkbox component. */
|
|
1235
|
-
declare function FormCheckbox$1({ className, ...props }: FormCheckboxProps$1): import("react
|
|
1235
|
+
declare function FormCheckbox$1({ className, ...props }: FormCheckboxProps$1): import("react").JSX.Element;
|
|
1236
1236
|
type FormRadioGroupProps$1 = FormRadioGroupProps;
|
|
1237
1237
|
/** Renders the form radio group component. */
|
|
1238
|
-
declare function FormRadioGroup$1({ className, ...props }: FormRadioGroupProps$1): import("react
|
|
1238
|
+
declare function FormRadioGroup$1({ className, ...props }: FormRadioGroupProps$1): import("react").JSX.Element;
|
|
1239
1239
|
type FormRadioProps$1 = FormRadioProps;
|
|
1240
1240
|
/** Renders the form radio component. */
|
|
1241
|
-
declare function FormRadio$1({ className, ...props }: FormRadioProps$1): import("react
|
|
1241
|
+
declare function FormRadio$1({ className, ...props }: FormRadioProps$1): import("react").JSX.Element;
|
|
1242
1242
|
/** Props for the form number input component. */
|
|
1243
1243
|
type FormNumberInputProps = Omit<NumberInputProps, "value" | "onChange"> & {
|
|
1244
1244
|
name: string;
|
|
1245
1245
|
};
|
|
1246
1246
|
/** Renders the form number input component. */
|
|
1247
|
-
declare function FormNumberInput({ name, ...props }: FormNumberInputProps): import("react
|
|
1247
|
+
declare function FormNumberInput({ name, ...props }: FormNumberInputProps): import("react").JSX.Element;
|
|
1248
1248
|
/** Props for the form slider component. */
|
|
1249
1249
|
type FormSliderProps = Omit<SliderProps, "value" | "onChange"> & {
|
|
1250
1250
|
name: string;
|
|
1251
1251
|
};
|
|
1252
1252
|
/** Renders the form slider component. */
|
|
1253
|
-
declare function FormSlider({ name, ...props }: FormSliderProps): import("react
|
|
1253
|
+
declare function FormSlider({ name, ...props }: FormSliderProps): import("react").JSX.Element;
|
|
1254
1254
|
/** Props for the form star rating component. */
|
|
1255
1255
|
type FormStarRatingProps = Omit<StarRatingProps, "value" | "onChange"> & {
|
|
1256
1256
|
name: string;
|
|
1257
1257
|
};
|
|
1258
1258
|
/** Renders the form star rating component. */
|
|
1259
|
-
declare function FormStarRating({ name, ...props }: FormStarRatingProps): import("react
|
|
1259
|
+
declare function FormStarRating({ name, ...props }: FormStarRatingProps): import("react").JSX.Element;
|
|
1260
1260
|
/** Props for the form color picker component. */
|
|
1261
1261
|
type FormColorPickerProps = Omit<ColorPickerProps, "value" | "onChange"> & {
|
|
1262
1262
|
name: string;
|
|
1263
1263
|
};
|
|
1264
1264
|
/** Renders the form color picker component. */
|
|
1265
|
-
declare function FormColorPicker({ name, ...props }: FormColorPickerProps): import("react
|
|
1265
|
+
declare function FormColorPicker({ name, ...props }: FormColorPickerProps): import("react").JSX.Element;
|
|
1266
1266
|
/** Props for the form icon picker component. */
|
|
1267
1267
|
type FormIconPickerProps = Omit<IconPickerProps, "value" | "onChange"> & {
|
|
1268
1268
|
name: string;
|
|
1269
1269
|
};
|
|
1270
1270
|
/** Renders the form icon picker component. */
|
|
1271
|
-
declare function FormIconPicker({ name, ...props }: FormIconPickerProps): import("react
|
|
1271
|
+
declare function FormIconPicker({ name, ...props }: FormIconPickerProps): import("react").JSX.Element;
|
|
1272
1272
|
/** Props for the form tag input component. */
|
|
1273
1273
|
type FormTagInputProps = Omit<TagInputProps, "value" | "onChange"> & {
|
|
1274
1274
|
name: string;
|
|
1275
1275
|
};
|
|
1276
1276
|
/** Renders the form tag input component. */
|
|
1277
|
-
declare function FormTagInput({ name, ...props }: FormTagInputProps): import("react
|
|
1277
|
+
declare function FormTagInput({ name, ...props }: FormTagInputProps): import("react").JSX.Element;
|
|
1278
1278
|
/** Props for the form date range picker component. */
|
|
1279
1279
|
type FormDateRangePickerProps = Omit<DateRangePickerProps, "value" | "onChange"> & {
|
|
1280
1280
|
name: string;
|
|
1281
1281
|
};
|
|
1282
1282
|
/** Renders the form date range picker component. */
|
|
1283
|
-
declare function FormDateRangePicker({ name, ...props }: FormDateRangePickerProps): import("react
|
|
1283
|
+
declare function FormDateRangePicker({ name, ...props }: FormDateRangePickerProps): import("react").JSX.Element;
|
|
1284
1284
|
//#endregion
|
|
1285
1285
|
//#region src/core/step-builder.d.ts
|
|
1286
1286
|
/** Defines the step shape. */
|
|
@@ -1300,7 +1300,7 @@ interface StepBuilderProps {
|
|
|
1300
1300
|
"aria-label"?: string;
|
|
1301
1301
|
}
|
|
1302
1302
|
/** Renders the step builder component. */
|
|
1303
|
-
declare function StepBuilder({ steps, onChange, label, addLabel, maxSteps, className, "aria-label": ariaLabel }: StepBuilderProps): import("react
|
|
1303
|
+
declare function StepBuilder({ steps, onChange, label, addLabel, maxSteps, className, "aria-label": ariaLabel }: StepBuilderProps): import("react").JSX.Element;
|
|
1304
1304
|
declare namespace StepBuilder {
|
|
1305
1305
|
var displayName: string;
|
|
1306
1306
|
}
|
|
@@ -1354,38 +1354,38 @@ interface ConditionBuilderProps {
|
|
|
1354
1354
|
"aria-label"?: string;
|
|
1355
1355
|
}
|
|
1356
1356
|
/** Renders the condition builder component. */
|
|
1357
|
-
declare function ConditionBuilder({ groups, onChange, properties, label, addConditionLabel, addGroupLabel, addNestedGroupLabel, nested, maxDepth, conditionTypes, onPreview, previewCount, className, "aria-label": ariaLabel }: ConditionBuilderProps):
|
|
1357
|
+
declare function ConditionBuilder({ groups, onChange, properties, label, addConditionLabel, addGroupLabel, addNestedGroupLabel, nested, maxDepth, conditionTypes, onPreview, previewCount, className, "aria-label": ariaLabel }: ConditionBuilderProps): React$1.JSX.Element;
|
|
1358
1358
|
declare namespace ConditionBuilder {
|
|
1359
1359
|
var displayName: string;
|
|
1360
1360
|
}
|
|
1361
1361
|
//#endregion
|
|
1362
1362
|
//#region src/core/popover.d.ts
|
|
1363
1363
|
/** Renders the popover root component. */
|
|
1364
|
-
declare function PopoverRoot$1(props: PopoverRootProps): import("react
|
|
1364
|
+
declare function PopoverRoot$1(props: PopoverRootProps): import("react").JSX.Element;
|
|
1365
1365
|
declare const PopoverTrigger$1: import("react").ForwardRefExoticComponent<PopoverTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
1366
1366
|
/** Props for the popover content component. */
|
|
1367
1367
|
type PopoverContentProps$1 = PopoverContentProps;
|
|
1368
1368
|
/** Renders the popover content component. */
|
|
1369
|
-
declare function PopoverContent$1({ className, ...props }: PopoverContentProps$1): import("react
|
|
1369
|
+
declare function PopoverContent$1({ className, ...props }: PopoverContentProps$1): import("react").JSX.Element;
|
|
1370
1370
|
/** Renders the popover close component. */
|
|
1371
|
-
declare function PopoverClose$1({ className, ...props }: PopoverCloseProps): import("react
|
|
1371
|
+
declare function PopoverClose$1({ className, ...props }: PopoverCloseProps): import("react").JSX.Element;
|
|
1372
1372
|
//#endregion
|
|
1373
1373
|
//#region src/core/dropdown-menu.d.ts
|
|
1374
1374
|
declare const DropdownMenu: typeof MenuRoot$1;
|
|
1375
1375
|
type DropdownTriggerProps = ComponentPropsWithoutRef<typeof MenuTrigger$1>;
|
|
1376
1376
|
/** Renders the dropdown trigger component. */
|
|
1377
|
-
declare function DropdownTrigger({ className, ...props }: DropdownTriggerProps): import("react
|
|
1377
|
+
declare function DropdownTrigger({ className, ...props }: DropdownTriggerProps): import("react").JSX.Element;
|
|
1378
1378
|
type DropdownContentProps = ComponentPropsWithoutRef<typeof MenuPopover$1>;
|
|
1379
1379
|
/** Renders the dropdown content component. */
|
|
1380
|
-
declare function DropdownContent({ className, ...props }: DropdownContentProps): import("react
|
|
1380
|
+
declare function DropdownContent({ className, ...props }: DropdownContentProps): import("react").JSX.Element;
|
|
1381
1381
|
type DropdownItemProps = ComponentPropsWithoutRef<typeof MenuItem$1> & {
|
|
1382
1382
|
variant?: "default" | "destructive";
|
|
1383
1383
|
};
|
|
1384
1384
|
/** Renders the dropdown item component. */
|
|
1385
|
-
declare function DropdownItem({ className, variant, ...props }: DropdownItemProps): import("react
|
|
1385
|
+
declare function DropdownItem({ className, variant, ...props }: DropdownItemProps): import("react").JSX.Element;
|
|
1386
1386
|
type DropdownSeparatorProps = ComponentPropsWithoutRef<typeof MenuSeparator$1>;
|
|
1387
1387
|
/** Renders the dropdown separator component. */
|
|
1388
|
-
declare function DropdownSeparator({ className, ...props }: DropdownSeparatorProps): import("react
|
|
1388
|
+
declare function DropdownSeparator({ className, ...props }: DropdownSeparatorProps): import("react").JSX.Element;
|
|
1389
1389
|
//#endregion
|
|
1390
1390
|
//#region src/core/checkbox.d.ts
|
|
1391
1391
|
/** Props for the checkbox component. */
|
|
@@ -1422,7 +1422,7 @@ interface CheckboxGroupProps {
|
|
|
1422
1422
|
}
|
|
1423
1423
|
declare const Checkbox: import("react").ForwardRefExoticComponent<CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
1424
1424
|
/** Renders the checkbox group component. */
|
|
1425
|
-
declare function CheckboxGroup({ children, value: valueProp, defaultValue, onChange, disabled, size, error, required, className, orientation, label }: CheckboxGroupProps): import("react
|
|
1425
|
+
declare function CheckboxGroup({ children, value: valueProp, defaultValue, onChange, disabled, size, error, required, className, orientation, label }: CheckboxGroupProps): import("react").JSX.Element;
|
|
1426
1426
|
//#endregion
|
|
1427
1427
|
//#region src/core/radio-group.d.ts
|
|
1428
1428
|
/** Props for the radio group component. */
|
|
@@ -1454,7 +1454,7 @@ interface RadioProps extends Omit<ComponentPropsWithoutRef<"label">, "size" | "o
|
|
|
1454
1454
|
disabled?: boolean;
|
|
1455
1455
|
}
|
|
1456
1456
|
/** Renders the radio group component. */
|
|
1457
|
-
declare function RadioGroup({ children, value, defaultValue, onChange, disabled, size, error, required, className, orientation, label, name }: RadioGroupProps): import("react
|
|
1457
|
+
declare function RadioGroup({ children, value, defaultValue, onChange, disabled, size, error, required, className, orientation, label, name }: RadioGroupProps): import("react").JSX.Element;
|
|
1458
1458
|
declare const Radio: import("react").ForwardRefExoticComponent<RadioProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
1459
1459
|
//#endregion
|
|
1460
1460
|
//#region src/core/block-layout.d.ts
|
|
@@ -1471,7 +1471,7 @@ interface BlockLayoutProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1471
1471
|
loadingLabel?: string;
|
|
1472
1472
|
}
|
|
1473
1473
|
/** Renders the block layout component. */
|
|
1474
|
-
declare function BlockLayout({ children, className, spacing, inset, loading, loadingLabel, ...props }: BlockLayoutProps):
|
|
1474
|
+
declare function BlockLayout({ children, className, spacing, inset, loading, loadingLabel, ...props }: BlockLayoutProps): React$1.JSX.Element;
|
|
1475
1475
|
declare namespace BlockLayout {
|
|
1476
1476
|
var displayName: string;
|
|
1477
1477
|
}
|
|
@@ -1502,7 +1502,7 @@ interface PageHeaderProps {
|
|
|
1502
1502
|
className?: string;
|
|
1503
1503
|
}
|
|
1504
1504
|
/** Renders the page header component. */
|
|
1505
|
-
declare function PageHeader({ title, description, actions, className }: PageHeaderProps):
|
|
1505
|
+
declare function PageHeader({ title, description, actions, className }: PageHeaderProps): React$1.JSX.Element;
|
|
1506
1506
|
declare namespace PageHeader {
|
|
1507
1507
|
var displayName: string;
|
|
1508
1508
|
}
|
|
@@ -1515,7 +1515,7 @@ interface ScrollAreaProps {
|
|
|
1515
1515
|
orientation?: "vertical" | "horizontal" | "both";
|
|
1516
1516
|
}
|
|
1517
1517
|
/** Renders the scroll area component. */
|
|
1518
|
-
declare function ScrollArea({ children, className, orientation }: ScrollAreaProps):
|
|
1518
|
+
declare function ScrollArea({ children, className, orientation }: ScrollAreaProps): React$1.JSX.Element;
|
|
1519
1519
|
declare namespace ScrollArea {
|
|
1520
1520
|
var displayName: string;
|
|
1521
1521
|
}
|
|
@@ -1529,7 +1529,7 @@ interface ContainerProps {
|
|
|
1529
1529
|
className?: string;
|
|
1530
1530
|
}
|
|
1531
1531
|
/** Renders the container component. */
|
|
1532
|
-
declare function Container({ children, maxWidth, center, className }: ContainerProps):
|
|
1532
|
+
declare function Container({ children, maxWidth, center, className }: ContainerProps): React$1.JSX.Element;
|
|
1533
1533
|
declare namespace Container {
|
|
1534
1534
|
var displayName: string;
|
|
1535
1535
|
}
|
|
@@ -1543,7 +1543,7 @@ interface SectionProps {
|
|
|
1543
1543
|
className?: string;
|
|
1544
1544
|
}
|
|
1545
1545
|
/** Renders the section component. */
|
|
1546
|
-
declare function Section({ children, title, description, className }: SectionProps): import("react
|
|
1546
|
+
declare function Section({ children, title, description, className }: SectionProps): import("react").JSX.Element;
|
|
1547
1547
|
declare namespace Section {
|
|
1548
1548
|
var displayName: string;
|
|
1549
1549
|
}
|
|
@@ -1560,7 +1560,7 @@ interface ResizablePanelGroupProps extends Omit<GroupProps, "children" | "classN
|
|
|
1560
1560
|
autoSaveId?: string;
|
|
1561
1561
|
}
|
|
1562
1562
|
/** Renders the resizable panel group component. */
|
|
1563
|
-
declare function ResizablePanelGroup({ direction, children, className, id, autoSaveId, ...props }: ResizablePanelGroupProps):
|
|
1563
|
+
declare function ResizablePanelGroup({ direction, children, className, id, autoSaveId, ...props }: ResizablePanelGroupProps): React$1.JSX.Element;
|
|
1564
1564
|
declare namespace ResizablePanelGroup {
|
|
1565
1565
|
var displayName: string;
|
|
1566
1566
|
}
|
|
@@ -1574,7 +1574,7 @@ interface ResizablePanelProps extends Omit<PanelProps, "children" | "className"
|
|
|
1574
1574
|
className?: string;
|
|
1575
1575
|
}
|
|
1576
1576
|
/** Renders the resizable panel component. */
|
|
1577
|
-
declare function ResizablePanel({ collapsedSize, defaultSize, minSize, maxSize, children, className, ...props }: ResizablePanelProps):
|
|
1577
|
+
declare function ResizablePanel({ collapsedSize, defaultSize, minSize, maxSize, children, className, ...props }: ResizablePanelProps): React$1.JSX.Element;
|
|
1578
1578
|
declare namespace ResizablePanel {
|
|
1579
1579
|
var displayName: string;
|
|
1580
1580
|
}
|
|
@@ -1584,7 +1584,7 @@ interface ResizableHandleProps extends Omit<SeparatorProps, "children" | "classN
|
|
|
1584
1584
|
withHandle?: boolean;
|
|
1585
1585
|
}
|
|
1586
1586
|
/** Renders the resizable handle component. */
|
|
1587
|
-
declare function ResizableHandle({ className, withHandle, ...props }: ResizableHandleProps):
|
|
1587
|
+
declare function ResizableHandle({ className, withHandle, ...props }: ResizableHandleProps): React$1.JSX.Element;
|
|
1588
1588
|
declare namespace ResizableHandle {
|
|
1589
1589
|
var displayName: string;
|
|
1590
1590
|
}
|
|
@@ -1609,7 +1609,7 @@ interface LogoProps {
|
|
|
1609
1609
|
className?: string;
|
|
1610
1610
|
}
|
|
1611
1611
|
/** Renders the logo component. */
|
|
1612
|
-
declare function Logo({ src, icon, text, alt, size, href, onClick, className }: LogoProps): import("react
|
|
1612
|
+
declare function Logo({ src, icon, text, alt, size, href, onClick, className }: LogoProps): import("react").JSX.Element;
|
|
1613
1613
|
//#endregion
|
|
1614
1614
|
//#region src/core/drawer.d.ts
|
|
1615
1615
|
/** Type definition for drawer side. */
|
|
@@ -1626,12 +1626,12 @@ interface DrawerPanelProps extends DialogPanelProps {
|
|
|
1626
1626
|
swipeDismissThreshold?: number;
|
|
1627
1627
|
}
|
|
1628
1628
|
/** Renders the drawer root component. */
|
|
1629
|
-
declare function DrawerRoot(props: DialogRootProps): import("react
|
|
1629
|
+
declare function DrawerRoot(props: DialogRootProps): import("react").JSX.Element;
|
|
1630
1630
|
/** Renders the drawer panel component. */
|
|
1631
|
-
declare function DrawerPanel({ className, side, size, swipeToDismiss, swipeDismissThreshold, style, onPointerDown, ...props }: DrawerPanelProps): import("react
|
|
1631
|
+
declare function DrawerPanel({ className, side, size, swipeToDismiss, swipeDismissThreshold, style, onPointerDown, ...props }: DrawerPanelProps): import("react").JSX.Element;
|
|
1632
1632
|
type DrawerCloseProps = ComponentPropsWithoutRef<"button">;
|
|
1633
1633
|
/** Renders the drawer close component. */
|
|
1634
|
-
declare function DrawerClose({ className, ...props }: DrawerCloseProps): import("react
|
|
1634
|
+
declare function DrawerClose({ className, ...props }: DrawerCloseProps): import("react").JSX.Element;
|
|
1635
1635
|
//#endregion
|
|
1636
1636
|
//#region src/core/pagination.d.ts
|
|
1637
1637
|
/** Visual treatment for the content between previous/next controls. */
|
|
@@ -1661,7 +1661,7 @@ interface PaginationProps extends Omit<ComponentPropsWithoutRef<"nav">, "onChang
|
|
|
1661
1661
|
labels?: PaginationLabels;
|
|
1662
1662
|
}
|
|
1663
1663
|
/** Renders the pagination component. */
|
|
1664
|
-
declare function Pagination({ totalItems, totalPages: totalPagesProp, hasMore, pageSize, currentPage, onPageChange, showPageNumbers, siblingCount, variant, isDisabled, label, labels, className, ...props }: PaginationProps): import("react
|
|
1664
|
+
declare function Pagination({ totalItems, totalPages: totalPagesProp, hasMore, pageSize, currentPage, onPageChange, showPageNumbers, siblingCount, variant, isDisabled, label, labels, className, ...props }: PaginationProps): import("react").JSX.Element;
|
|
1665
1665
|
//#endregion
|
|
1666
1666
|
//#region src/core/virtual-list.d.ts
|
|
1667
1667
|
/** Props for the virtual list component. */
|
|
@@ -1674,7 +1674,7 @@ interface VirtualListProps<T> {
|
|
|
1674
1674
|
style?: CSSProperties;
|
|
1675
1675
|
}
|
|
1676
1676
|
/** Renders the virtual list component. */
|
|
1677
|
-
declare function VirtualList<T>({ items, renderItem, itemHeight, overscan, className, style }: VirtualListProps<T>): import("react
|
|
1677
|
+
declare function VirtualList<T>({ items, renderItem, itemHeight, overscan, className, style }: VirtualListProps<T>): import("react").JSX.Element;
|
|
1678
1678
|
//#endregion
|
|
1679
1679
|
//#region src/core/shader-presets.d.ts
|
|
1680
1680
|
/**
|
|
@@ -1785,4 +1785,4 @@ interface ShaderSurfaceProps {
|
|
|
1785
1785
|
declare const ShaderSurface: import("react").ForwardRefExoticComponent<ShaderSurfaceProps & import("react").RefAttributes<ShaderSurfaceHandle>>;
|
|
1786
1786
|
//#endregion
|
|
1787
1787
|
export { RadioProps as $, HeadingProps as $i, ComboboxPopover$1 as $n, SkeletonCard as $r, FormStarRating as $t, PanelImperativeHandle as A, Breadcrumb as Ai, NumberInputProps as An, TabsVariant as Ar, FormError$1 as At, Container as B, PrimAccordionContentProps as Bi, MenuItemCheckbox$1 as Bn, MeterProps as Br, FormProvider$1 as Bt, DrawerRoot as C, CardHeaderProps as Ci, ColorPicker as Cn, TabListProps$1 as Cr, FormCheckbox$1 as Ct, LogoProps as D, EmptyState as Di, Slider as Dn, TabStatus as Dr, FormDateRangePicker as Dt, Logo as E, CardTitleProps as Ei, StarRatingProps as En, TabProps$1 as Er, FormControl$1 as Et, ResizablePanelGroup as F, AccordionContent$1 as Fi, Tooltip$1 as Fn, CompositeItem as Fr, FormIconPickerProps as Ft, PageHeaderProps as G, ToggleGroupProps$1 as Gi, MenuTrigger$1 as Gn, Avatar as Gr, FormReset$1 as Gt, ScrollArea as H, PrimAccordionTriggerProps as Hi, MenuPopover$1 as Hn, CircularProgressProps as Hr, FormRadio$1 as Ht, ResizablePanelGroupProps as I, AccordionItem$1 as Ii, TooltipAnchor$1 as In, CompositeProvider as Ir, FormInput$1 as It, BlockLayout as J, OtpFieldProps as Ji, ComboboxEmpty as Jn, AvatarProps as Jr, FormSelectItem as Jt, BlockBaseProps as K, ToggleProps$1 as Ki, MenubarContainer$1 as Kn, AvatarGroup as Kr, FormRoot$1 as Kt, ResizablePanelProps as L, AccordionRoot$1 as Li, TooltipProvider$1 as Ln, CompositeRow as Lr, FormLabel$1 as Lt, ResizableHandle as M, BreadcrumbProps as Mi, ToolbarContainer$1 as Mn, DisclosureRoot$1 as Mr, FormGroup$1 as Mt, ResizableHandleProps as N, StatCard as Ni, ToolbarRoot$1 as Nn, DisclosureTrigger$1 as Nr, FormGroupLabel$1 as Nt, GroupImperativeHandle as O, EmptyStateAction as Oi, SliderProps as On, TabsRoot$1 as Or, FormDateRangePickerProps as Ot, ResizablePanel as P, StatCardProps as Pi, ToolbarSeparator$1 as Pn, Composite as Pr, FormIconPicker as Pt, RadioGroupProps as Q, HeadingLevel as Qi, ComboboxItem$1 as Qn, SkeletonAvatar as Qr, FormSliderProps as Qt, Section as R, AccordionRootProps as Ri, MenuButtonArrow$1 as Rn, CompositeZone as Rr, FormNumberInput as Rt, DrawerPanelProps as S, CardHeader as Si, IconPickerProps as Sn, TabList$1 as Sr, StepDef as St, DrawerSize as T, CardTitle as Ti, StarRating as Tn, TabPanelProps$1 as Tr, FormColorPickerProps as Tt, ScrollAreaProps as U, Toggle$1 as Ui, MenuRoot$1 as Un, Progress as Ur, FormRadioGroup$1 as Ut, ContainerProps as V, PrimAccordionItemProps as Vi, MenuItemRadio$1 as Vn, CircularProgress as Vr, FormPush$1 as Vt, PageHeader as W, ToggleGroup$1 as Wi, MenuSeparator$1 as Wn, ProgressProps as Wr, FormRemove$1 as Wt, Radio as X, SeparatorProps$1 as Xi, ComboboxGroupLabel$1 as Xn, TextareaProps as Xr, FormSelectProps as Xt, BlockLayoutProps as Y, Separator$2 as Yi, ComboboxGroup$1 as Yn, Textarea as Yr, FormSelectPopover as Yt, RadioGroup as Z, Heading as Zi, ComboboxInput$1 as Zn, Skeleton as Zr, FormSlider as Zt, VirtualListProps as _, CardContentProps as _i, DateRangePreset as _n, SelectLabel$1 as _r, ConditionGroup as _t, SHADER_PARAM_FALLBACK as a, TextTone as aa, Input as ai, FormTagInputProps as an, DialogDescription$1 as ar, DropdownItem as at, DrawerClose as b, CardFooter as bi, IconDef as bn, SelectTrigger$1 as br, StepBuilder as bt, SHADER_PRESET_IDS as c, AlertProps as ci, useFieldValue as cn, DialogFooter as cr, DropdownTrigger as ct, ShaderPreset as d, Badge as di, ComparisonMode as dn, DialogHeaderProps as dr, PopoverContentProps$1 as dt, HeadingRole as ea, SkeletonProps as ei, FormStarRatingProps as en, ComboboxRoot$1 as er, Checkbox as et, ShaderPresetCategory as f, BadgeProps as fi, DEFAULT_PRESETS as fn, DialogHeading$1 as fr, PopoverRoot$1 as ft, VirtualList as g, CardContent as gi, DateRangePickerProps as gn, SelectItem$1 as gr, ConditionDef as gt, getShaderPreset as h, Card as hi, DateRangePicker as hn, DialogSize as hr, ConditionBuilderProps as ht, SHADER_OVERLAY_PARAM_KEYS as i, TextRole as ia, SwitchProps as ii, FormTagInput as in, DialogBodyProps as ir, DropdownContent as it, PanelSize as j, BreadcrumbItem as ji, ToolbarButton$1 as jn, DisclosureContent$1 as jr, FormField$1 as jt, Layout as k, EmptyStateProps as ki, NumberInput as kn, TabsRootProps$1 as kr, FormDescription$1 as kt, ShaderParamKey as l, Spinner as li, useFormContext as ln, DialogFooterProps as lr, PopoverClose$1 as lt, getShaderFragment as m, ButtonProps as mi, DateRange as mn, DialogRoot$1 as mr, ConditionBuilder as mt, ShaderSurfaceHandle as n, TextElement as na, SkeletonText as ni, FormSwitch$1 as nn, AlertDialogPanelProps$1 as nr, CheckboxGroupProps as nt, SHADER_PARAM_KEYS as o, Kbd as oa, InputProps as oi, FormTextarea as on, DialogDisclosure$1 as or, DropdownMenu as ot, ShaderPresetId as p, Button as pi, DateGranularity as pn, DialogPanel$1 as pr, PopoverTrigger$1 as pt, createBlock as q, OtpField as qi, MenubarRoot$1 as qn, AvatarGroupProps as qr, FormSelect as qt, ShaderSurfaceProps as r, TextProps as ra, Switch as ri, FormSwitchProps$1 as rn, DialogBody as rr, CheckboxProps as rt, SHADER_PRESETS as s, KbdProps as sa, Alert as si, FormTextareaProps as sn, DialogDismiss$1 as sr, DropdownSeparator as st, ShaderSurface as t, Text as ta, SkeletonTable as ti, FormSubmit$1 as tn, AlertDialogPanel$1 as tr, CheckboxGroup as tt, ShaderParamSpec as u, SpinnerProps as ui, useFormStore as un, DialogHeader as ur, PopoverContent$1 as ut, Pagination as v, CardDescription as vi, TagInput as vn, SelectPopover$1 as vr, ConditionOperator as vt, DrawerSide as w, CardProps as wi, ColorPickerProps as wn, TabPanel$1 as wr, FormColorPicker as wt, DrawerPanel as x, CardFooterProps as xi, IconPicker as xn, Tab$1 as xr, StepBuilderProps as xt, PaginationProps as y, CardDescriptionProps as yi, TagInputProps as yn, SelectRoot$1 as yr, ConditionTypeRenderer as yt, SectionProps as z, AccordionTrigger$1 as zi, MenuItem$1 as zn, Meter$1 as zr, FormNumberInputProps as zt };
|
|
1788
|
-
//# sourceMappingURL=shader-surface-
|
|
1788
|
+
//# sourceMappingURL=shader-surface-BfTP9c1Q.d.ts.map
|