@dito-uai/components 5.1.0-alpha.74 → 5.1.0-alpha.75
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/global.css +1 -1
- package/dist/index.cjs +91 -77
- package/dist/index.d.cts +838 -146
- package/dist/index.d.ts +18 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -18
- package/dist/ui/calendar.d.ts +10 -0
- package/dist/ui/calendar.d.ts.map +1 -0
- package/dist/ui/combobox.d.ts +40 -0
- package/dist/ui/combobox.d.ts.map +1 -0
- package/dist/ui/date-picker.d.ts +33 -0
- package/dist/ui/date-picker.d.ts.map +1 -0
- package/dist/ui/dropdown-menu.d.ts +130 -10
- package/dist/ui/dropdown-menu.d.ts.map +1 -1
- package/dist/ui/field.d.ts +118 -0
- package/dist/ui/field.d.ts.map +1 -0
- package/dist/ui/input-group.d.ts +284 -0
- package/dist/ui/input-group.d.ts.map +1 -0
- package/dist/ui/input.d.ts.map +1 -1
- package/dist/ui/internal/date-picker-common.d.ts +121 -0
- package/dist/ui/internal/date-picker-common.d.ts.map +1 -0
- package/dist/ui/popover.d.ts +2 -1
- package/dist/ui/popover.d.ts.map +1 -1
- package/dist/ui/range-picker.d.ts +32 -0
- package/dist/ui/range-picker.d.ts.map +1 -0
- package/dist/ui/search-scope.d.ts +27 -0
- package/dist/ui/search-scope.d.ts.map +1 -0
- package/dist/ui/select-multiple.d.ts +116 -0
- package/dist/ui/select-multiple.d.ts.map +1 -0
- package/dist/ui/select.d.ts +93 -0
- package/dist/ui/select.d.ts.map +1 -0
- package/dist/ui/textarea.d.ts.map +1 -1
- package/dist/ui/time-picker.d.ts +32 -0
- package/dist/ui/time-picker.d.ts.map +1 -0
- package/llms.md +50 -0
- package/package.json +6 -1
- package/tailwind.config.ts +1 -1
- package/dist/ui/search.d.ts +0 -135
- package/dist/ui/search.d.ts.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -13,9 +13,11 @@ import * as react_toastify from 'react-toastify';
|
|
|
13
13
|
import { ToastOptions, ToastContainerProps } from 'react-toastify';
|
|
14
14
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
15
15
|
import * as _radix_ui_react_checkbox from '@radix-ui/react-checkbox';
|
|
16
|
-
import { Root } from '@radix-ui/react-checkbox';
|
|
16
|
+
import { Root as Root$2 } from '@radix-ui/react-checkbox';
|
|
17
17
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
18
18
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
19
|
+
import * as _base_ui_react from '@base-ui/react';
|
|
20
|
+
import { Combobox, BaseUIEvent } from '@base-ui/react';
|
|
19
21
|
|
|
20
22
|
declare const avatarVariants: tailwind_variants.TVReturnType<{
|
|
21
23
|
color: {
|
|
@@ -999,6 +1001,31 @@ declare const Scope: {
|
|
|
999
1001
|
Item: React__default.ForwardRefExoticComponent<ScopeItemProps>;
|
|
1000
1002
|
};
|
|
1001
1003
|
|
|
1004
|
+
type SearchScopeOption = {
|
|
1005
|
+
label: string;
|
|
1006
|
+
value: string;
|
|
1007
|
+
};
|
|
1008
|
+
type SearchScopeSelect = {
|
|
1009
|
+
options: SearchScopeOption[];
|
|
1010
|
+
placeholder: string;
|
|
1011
|
+
selected?: string;
|
|
1012
|
+
onChange?: (value: string, option: SearchScopeOption) => void;
|
|
1013
|
+
};
|
|
1014
|
+
type SearchScopeProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> & {
|
|
1015
|
+
size?: 'small' | 'medium';
|
|
1016
|
+
disabled?: boolean;
|
|
1017
|
+
scope: SearchScopeSelect;
|
|
1018
|
+
clearLabel?: string;
|
|
1019
|
+
scopeClassName?: string;
|
|
1020
|
+
};
|
|
1021
|
+
declare const SearchScope: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> & {
|
|
1022
|
+
size?: "small" | "medium";
|
|
1023
|
+
disabled?: boolean;
|
|
1024
|
+
scope: SearchScopeSelect;
|
|
1025
|
+
clearLabel?: string;
|
|
1026
|
+
scopeClassName?: string;
|
|
1027
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
1028
|
+
|
|
1002
1029
|
type ProgressBarProps = React__default.HTMLAttributes<HTMLDivElement> & {
|
|
1003
1030
|
value: number;
|
|
1004
1031
|
barBg: string;
|
|
@@ -2141,7 +2168,7 @@ type ChipsProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof chipsVari
|
|
|
2141
2168
|
onClose?: (value?: string) => void;
|
|
2142
2169
|
textClassName?: string;
|
|
2143
2170
|
};
|
|
2144
|
-
declare const Chips: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
2171
|
+
declare const Chips$1: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
2145
2172
|
size: {
|
|
2146
2173
|
small: {
|
|
2147
2174
|
container: string;
|
|
@@ -2493,7 +2520,288 @@ declare const Input: React__default.ForwardRefExoticComponent<Omit<React__defaul
|
|
|
2493
2520
|
inputClassName?: string;
|
|
2494
2521
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
2495
2522
|
|
|
2496
|
-
|
|
2523
|
+
declare const inputGroupVariants: tailwind_variants.TVReturnType<{
|
|
2524
|
+
size: {
|
|
2525
|
+
small: {
|
|
2526
|
+
root: string;
|
|
2527
|
+
};
|
|
2528
|
+
medium: {
|
|
2529
|
+
root: string;
|
|
2530
|
+
};
|
|
2531
|
+
};
|
|
2532
|
+
align: {
|
|
2533
|
+
'inline-start': {
|
|
2534
|
+
addon: string;
|
|
2535
|
+
};
|
|
2536
|
+
'inline-end': {
|
|
2537
|
+
addon: string;
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
multiline: {
|
|
2541
|
+
true: {
|
|
2542
|
+
control: string;
|
|
2543
|
+
};
|
|
2544
|
+
};
|
|
2545
|
+
}, {
|
|
2546
|
+
root: string;
|
|
2547
|
+
control: string;
|
|
2548
|
+
addon: string;
|
|
2549
|
+
text: string;
|
|
2550
|
+
}, undefined, {
|
|
2551
|
+
size: {
|
|
2552
|
+
small: {
|
|
2553
|
+
root: string;
|
|
2554
|
+
};
|
|
2555
|
+
medium: {
|
|
2556
|
+
root: string;
|
|
2557
|
+
};
|
|
2558
|
+
};
|
|
2559
|
+
align: {
|
|
2560
|
+
'inline-start': {
|
|
2561
|
+
addon: string;
|
|
2562
|
+
};
|
|
2563
|
+
'inline-end': {
|
|
2564
|
+
addon: string;
|
|
2565
|
+
};
|
|
2566
|
+
};
|
|
2567
|
+
multiline: {
|
|
2568
|
+
true: {
|
|
2569
|
+
control: string;
|
|
2570
|
+
};
|
|
2571
|
+
};
|
|
2572
|
+
}, {
|
|
2573
|
+
root: string;
|
|
2574
|
+
control: string;
|
|
2575
|
+
addon: string;
|
|
2576
|
+
text: string;
|
|
2577
|
+
}, tailwind_variants.TVReturnType<{
|
|
2578
|
+
size: {
|
|
2579
|
+
small: {
|
|
2580
|
+
root: string;
|
|
2581
|
+
};
|
|
2582
|
+
medium: {
|
|
2583
|
+
root: string;
|
|
2584
|
+
};
|
|
2585
|
+
};
|
|
2586
|
+
align: {
|
|
2587
|
+
'inline-start': {
|
|
2588
|
+
addon: string;
|
|
2589
|
+
};
|
|
2590
|
+
'inline-end': {
|
|
2591
|
+
addon: string;
|
|
2592
|
+
};
|
|
2593
|
+
};
|
|
2594
|
+
multiline: {
|
|
2595
|
+
true: {
|
|
2596
|
+
control: string;
|
|
2597
|
+
};
|
|
2598
|
+
};
|
|
2599
|
+
}, {
|
|
2600
|
+
root: string;
|
|
2601
|
+
control: string;
|
|
2602
|
+
addon: string;
|
|
2603
|
+
text: string;
|
|
2604
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2605
|
+
type InputGroupRootProps = React.HTMLAttributes<HTMLDivElement> & Omit<VariantProps<typeof inputGroupVariants>, 'align' | 'multiline'> & {
|
|
2606
|
+
disabled?: boolean;
|
|
2607
|
+
invalid?: boolean;
|
|
2608
|
+
warning?: boolean;
|
|
2609
|
+
size?: 'small' | 'medium';
|
|
2610
|
+
};
|
|
2611
|
+
type InputGroupInputProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'>;
|
|
2612
|
+
type InputGroupTextareaProps = Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'size'> & {
|
|
2613
|
+
resizable?: boolean;
|
|
2614
|
+
};
|
|
2615
|
+
type InputGroupAddonProps = React.HTMLAttributes<HTMLDivElement> & Required<Pick<VariantProps<typeof inputGroupVariants>, 'align'>>;
|
|
2616
|
+
type InputGroupTextProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
2617
|
+
type InputGroupButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2618
|
+
type InputGroupCountProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
2619
|
+
count: number;
|
|
2620
|
+
max?: number;
|
|
2621
|
+
};
|
|
2622
|
+
declare const InputGroup: {
|
|
2623
|
+
Root: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & Omit<VariantProps<tailwind_variants.TVReturnType<{
|
|
2624
|
+
size: {
|
|
2625
|
+
small: {
|
|
2626
|
+
root: string;
|
|
2627
|
+
};
|
|
2628
|
+
medium: {
|
|
2629
|
+
root: string;
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
align: {
|
|
2633
|
+
'inline-start': {
|
|
2634
|
+
addon: string;
|
|
2635
|
+
};
|
|
2636
|
+
'inline-end': {
|
|
2637
|
+
addon: string;
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
multiline: {
|
|
2641
|
+
true: {
|
|
2642
|
+
control: string;
|
|
2643
|
+
};
|
|
2644
|
+
};
|
|
2645
|
+
}, {
|
|
2646
|
+
root: string;
|
|
2647
|
+
control: string;
|
|
2648
|
+
addon: string;
|
|
2649
|
+
text: string;
|
|
2650
|
+
}, undefined, {
|
|
2651
|
+
size: {
|
|
2652
|
+
small: {
|
|
2653
|
+
root: string;
|
|
2654
|
+
};
|
|
2655
|
+
medium: {
|
|
2656
|
+
root: string;
|
|
2657
|
+
};
|
|
2658
|
+
};
|
|
2659
|
+
align: {
|
|
2660
|
+
'inline-start': {
|
|
2661
|
+
addon: string;
|
|
2662
|
+
};
|
|
2663
|
+
'inline-end': {
|
|
2664
|
+
addon: string;
|
|
2665
|
+
};
|
|
2666
|
+
};
|
|
2667
|
+
multiline: {
|
|
2668
|
+
true: {
|
|
2669
|
+
control: string;
|
|
2670
|
+
};
|
|
2671
|
+
};
|
|
2672
|
+
}, {
|
|
2673
|
+
root: string;
|
|
2674
|
+
control: string;
|
|
2675
|
+
addon: string;
|
|
2676
|
+
text: string;
|
|
2677
|
+
}, tailwind_variants.TVReturnType<{
|
|
2678
|
+
size: {
|
|
2679
|
+
small: {
|
|
2680
|
+
root: string;
|
|
2681
|
+
};
|
|
2682
|
+
medium: {
|
|
2683
|
+
root: string;
|
|
2684
|
+
};
|
|
2685
|
+
};
|
|
2686
|
+
align: {
|
|
2687
|
+
'inline-start': {
|
|
2688
|
+
addon: string;
|
|
2689
|
+
};
|
|
2690
|
+
'inline-end': {
|
|
2691
|
+
addon: string;
|
|
2692
|
+
};
|
|
2693
|
+
};
|
|
2694
|
+
multiline: {
|
|
2695
|
+
true: {
|
|
2696
|
+
control: string;
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
}, {
|
|
2700
|
+
root: string;
|
|
2701
|
+
control: string;
|
|
2702
|
+
addon: string;
|
|
2703
|
+
text: string;
|
|
2704
|
+
}, undefined, unknown, unknown, undefined>>>, "align" | "multiline"> & {
|
|
2705
|
+
disabled?: boolean;
|
|
2706
|
+
invalid?: boolean;
|
|
2707
|
+
warning?: boolean;
|
|
2708
|
+
size?: "small" | "medium";
|
|
2709
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
2710
|
+
Input: React.ForwardRefExoticComponent<InputGroupInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
2711
|
+
Textarea: React.ForwardRefExoticComponent<Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "size"> & {
|
|
2712
|
+
resizable?: boolean;
|
|
2713
|
+
} & React.RefAttributes<HTMLTextAreaElement>>;
|
|
2714
|
+
Addon: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
|
|
2715
|
+
size: {
|
|
2716
|
+
small: {
|
|
2717
|
+
root: string;
|
|
2718
|
+
};
|
|
2719
|
+
medium: {
|
|
2720
|
+
root: string;
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2723
|
+
align: {
|
|
2724
|
+
'inline-start': {
|
|
2725
|
+
addon: string;
|
|
2726
|
+
};
|
|
2727
|
+
'inline-end': {
|
|
2728
|
+
addon: string;
|
|
2729
|
+
};
|
|
2730
|
+
};
|
|
2731
|
+
multiline: {
|
|
2732
|
+
true: {
|
|
2733
|
+
control: string;
|
|
2734
|
+
};
|
|
2735
|
+
};
|
|
2736
|
+
}, {
|
|
2737
|
+
root: string;
|
|
2738
|
+
control: string;
|
|
2739
|
+
addon: string;
|
|
2740
|
+
text: string;
|
|
2741
|
+
}, undefined, {
|
|
2742
|
+
size: {
|
|
2743
|
+
small: {
|
|
2744
|
+
root: string;
|
|
2745
|
+
};
|
|
2746
|
+
medium: {
|
|
2747
|
+
root: string;
|
|
2748
|
+
};
|
|
2749
|
+
};
|
|
2750
|
+
align: {
|
|
2751
|
+
'inline-start': {
|
|
2752
|
+
addon: string;
|
|
2753
|
+
};
|
|
2754
|
+
'inline-end': {
|
|
2755
|
+
addon: string;
|
|
2756
|
+
};
|
|
2757
|
+
};
|
|
2758
|
+
multiline: {
|
|
2759
|
+
true: {
|
|
2760
|
+
control: string;
|
|
2761
|
+
};
|
|
2762
|
+
};
|
|
2763
|
+
}, {
|
|
2764
|
+
root: string;
|
|
2765
|
+
control: string;
|
|
2766
|
+
addon: string;
|
|
2767
|
+
text: string;
|
|
2768
|
+
}, tailwind_variants.TVReturnType<{
|
|
2769
|
+
size: {
|
|
2770
|
+
small: {
|
|
2771
|
+
root: string;
|
|
2772
|
+
};
|
|
2773
|
+
medium: {
|
|
2774
|
+
root: string;
|
|
2775
|
+
};
|
|
2776
|
+
};
|
|
2777
|
+
align: {
|
|
2778
|
+
'inline-start': {
|
|
2779
|
+
addon: string;
|
|
2780
|
+
};
|
|
2781
|
+
'inline-end': {
|
|
2782
|
+
addon: string;
|
|
2783
|
+
};
|
|
2784
|
+
};
|
|
2785
|
+
multiline: {
|
|
2786
|
+
true: {
|
|
2787
|
+
control: string;
|
|
2788
|
+
};
|
|
2789
|
+
};
|
|
2790
|
+
}, {
|
|
2791
|
+
root: string;
|
|
2792
|
+
control: string;
|
|
2793
|
+
addon: string;
|
|
2794
|
+
text: string;
|
|
2795
|
+
}, undefined, unknown, unknown, undefined>>>, "align">> & React.RefAttributes<HTMLDivElement>>;
|
|
2796
|
+
Text: React.ForwardRefExoticComponent<InputGroupTextProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2797
|
+
Button: React.ForwardRefExoticComponent<InputGroupButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
2798
|
+
Count: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
2799
|
+
count: number;
|
|
2800
|
+
max?: number;
|
|
2801
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
2802
|
+
};
|
|
2803
|
+
|
|
2804
|
+
type CheckboxProps = React__default.ComponentPropsWithoutRef<typeof Root$2>;
|
|
2497
2805
|
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<_radix_ui_react_checkbox.CheckboxProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
2498
2806
|
declare const checkboxCard: tailwind_variants.TVReturnType<{
|
|
2499
2807
|
size: {
|
|
@@ -2575,7 +2883,7 @@ declare const checkboxCard: tailwind_variants.TVReturnType<{
|
|
|
2575
2883
|
description: string;
|
|
2576
2884
|
}, undefined, unknown, unknown, undefined>>;
|
|
2577
2885
|
type CheckboxCardVariants = VariantProps<typeof checkboxCard>;
|
|
2578
|
-
type CheckboxCardProps = Omit<React__default.ComponentPropsWithoutRef<typeof Root>, 'title'> & CheckboxCardVariants & {
|
|
2886
|
+
type CheckboxCardProps = Omit<React__default.ComponentPropsWithoutRef<typeof Root$2>, 'title'> & CheckboxCardVariants & {
|
|
2579
2887
|
title: React__default.ReactNode;
|
|
2580
2888
|
description?: React__default.ReactNode;
|
|
2581
2889
|
icon?: React__default.ElementType;
|
|
@@ -2749,145 +3057,120 @@ declare const InputDescription: {
|
|
|
2749
3057
|
displayName: string;
|
|
2750
3058
|
};
|
|
2751
3059
|
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
scope?: DropdownProps;
|
|
2764
|
-
};
|
|
2765
|
-
declare const Search: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
2766
|
-
disabled: {
|
|
2767
|
-
true: {
|
|
2768
|
-
wrapper: string;
|
|
2769
|
-
input: string;
|
|
2770
|
-
prefix: string;
|
|
2771
|
-
suffix: string;
|
|
2772
|
-
};
|
|
2773
|
-
};
|
|
2774
|
-
invalid: {
|
|
2775
|
-
true: {
|
|
2776
|
-
wrapper: string;
|
|
2777
|
-
};
|
|
2778
|
-
};
|
|
2779
|
-
size: {
|
|
2780
|
-
small: {
|
|
2781
|
-
wrapper: string;
|
|
2782
|
-
input: string;
|
|
2783
|
-
prefix: string;
|
|
2784
|
-
suffix: string;
|
|
2785
|
-
};
|
|
2786
|
-
medium: {
|
|
2787
|
-
wrapper: string;
|
|
2788
|
-
input: string;
|
|
2789
|
-
prefix: string;
|
|
2790
|
-
suffix: string;
|
|
2791
|
-
};
|
|
2792
|
-
};
|
|
2793
|
-
withAffix: {
|
|
2794
|
-
false: {
|
|
2795
|
-
wrapper: string;
|
|
2796
|
-
};
|
|
2797
|
-
true: {
|
|
2798
|
-
wrapper: string;
|
|
2799
|
-
};
|
|
2800
|
-
};
|
|
2801
|
-
}, {
|
|
2802
|
-
wrapper: string;
|
|
2803
|
-
prefix: string;
|
|
2804
|
-
input: string;
|
|
2805
|
-
suffix: string;
|
|
2806
|
-
}, undefined, {
|
|
2807
|
-
disabled: {
|
|
2808
|
-
true: {
|
|
2809
|
-
wrapper: string;
|
|
2810
|
-
input: string;
|
|
2811
|
-
prefix: string;
|
|
2812
|
-
suffix: string;
|
|
2813
|
-
};
|
|
2814
|
-
};
|
|
2815
|
-
invalid: {
|
|
2816
|
-
true: {
|
|
2817
|
-
wrapper: string;
|
|
2818
|
-
};
|
|
2819
|
-
};
|
|
2820
|
-
size: {
|
|
2821
|
-
small: {
|
|
2822
|
-
wrapper: string;
|
|
2823
|
-
input: string;
|
|
2824
|
-
prefix: string;
|
|
2825
|
-
suffix: string;
|
|
2826
|
-
};
|
|
2827
|
-
medium: {
|
|
2828
|
-
wrapper: string;
|
|
2829
|
-
input: string;
|
|
2830
|
-
prefix: string;
|
|
2831
|
-
suffix: string;
|
|
2832
|
-
};
|
|
3060
|
+
declare const fieldVariants: tailwind_variants.TVReturnType<{
|
|
3061
|
+
orientation: {
|
|
3062
|
+
vertical: string;
|
|
3063
|
+
horizontal: string;
|
|
3064
|
+
responsive: string;
|
|
3065
|
+
};
|
|
3066
|
+
}, undefined, "flex", {
|
|
3067
|
+
orientation: {
|
|
3068
|
+
vertical: string;
|
|
3069
|
+
horizontal: string;
|
|
3070
|
+
responsive: string;
|
|
2833
3071
|
};
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
wrapper: string;
|
|
2840
|
-
};
|
|
3072
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
3073
|
+
orientation: {
|
|
3074
|
+
vertical: string;
|
|
3075
|
+
horizontal: string;
|
|
3076
|
+
responsive: string;
|
|
2841
3077
|
};
|
|
2842
|
-
},
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
3078
|
+
}, undefined, "flex", unknown, unknown, undefined>>;
|
|
3079
|
+
type FieldProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof fieldVariants> & {
|
|
3080
|
+
invalid?: boolean;
|
|
3081
|
+
warning?: boolean;
|
|
3082
|
+
};
|
|
3083
|
+
type FieldLabelProps = React.LabelHTMLAttributes<HTMLLabelElement>;
|
|
3084
|
+
type FieldTitleProps = React.HTMLAttributes<HTMLDivElement>;
|
|
3085
|
+
type FieldDescriptionProps = React.HTMLAttributes<HTMLParagraphElement> & {
|
|
3086
|
+
invalid?: boolean;
|
|
3087
|
+
warning?: boolean;
|
|
3088
|
+
};
|
|
3089
|
+
type FieldErrorProps = React.HTMLAttributes<HTMLParagraphElement>;
|
|
3090
|
+
type FieldGroupProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
3091
|
+
invalid?: boolean;
|
|
3092
|
+
warning?: boolean;
|
|
3093
|
+
};
|
|
3094
|
+
type FieldSetProps = React.FieldsetHTMLAttributes<HTMLFieldSetElement> & {
|
|
3095
|
+
invalid?: boolean;
|
|
3096
|
+
warning?: boolean;
|
|
3097
|
+
};
|
|
3098
|
+
declare const fieldLegendVariants: tailwind_variants.TVReturnType<{
|
|
3099
|
+
variant: {
|
|
3100
|
+
legend: string;
|
|
3101
|
+
label: string;
|
|
2855
3102
|
};
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
3103
|
+
}, undefined, "text-navy-600 [[data-invalid]_&]:text-notification-critical-600", {
|
|
3104
|
+
variant: {
|
|
3105
|
+
legend: string;
|
|
3106
|
+
label: string;
|
|
2860
3107
|
};
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
3108
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
3109
|
+
variant: {
|
|
3110
|
+
legend: string;
|
|
3111
|
+
label: string;
|
|
3112
|
+
};
|
|
3113
|
+
}, undefined, "text-navy-600 [[data-invalid]_&]:text-notification-critical-600", unknown, unknown, undefined>>;
|
|
3114
|
+
type FieldLegendProps = React.HTMLAttributes<HTMLLegendElement> & VariantProps<typeof fieldLegendVariants>;
|
|
3115
|
+
type FieldContentProps = React.HTMLAttributes<HTMLDivElement>;
|
|
3116
|
+
type FieldSeparatorProps = React.HTMLAttributes<HTMLDivElement>;
|
|
3117
|
+
declare const Field: {
|
|
3118
|
+
Root: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
3119
|
+
orientation: {
|
|
3120
|
+
vertical: string;
|
|
3121
|
+
horizontal: string;
|
|
3122
|
+
responsive: string;
|
|
3123
|
+
};
|
|
3124
|
+
}, undefined, "flex", {
|
|
3125
|
+
orientation: {
|
|
3126
|
+
vertical: string;
|
|
3127
|
+
horizontal: string;
|
|
3128
|
+
responsive: string;
|
|
3129
|
+
};
|
|
3130
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
3131
|
+
orientation: {
|
|
3132
|
+
vertical: string;
|
|
3133
|
+
horizontal: string;
|
|
3134
|
+
responsive: string;
|
|
3135
|
+
};
|
|
3136
|
+
}, undefined, "flex", unknown, unknown, undefined>>> & {
|
|
3137
|
+
invalid?: boolean;
|
|
3138
|
+
warning?: boolean;
|
|
3139
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
3140
|
+
Group: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
3141
|
+
invalid?: boolean;
|
|
3142
|
+
warning?: boolean;
|
|
3143
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
3144
|
+
Set: React.ForwardRefExoticComponent<React.FieldsetHTMLAttributes<HTMLFieldSetElement> & {
|
|
3145
|
+
invalid?: boolean;
|
|
3146
|
+
warning?: boolean;
|
|
3147
|
+
} & React.RefAttributes<HTMLFieldSetElement>>;
|
|
3148
|
+
Label: React.ForwardRefExoticComponent<FieldLabelProps & React.RefAttributes<HTMLLabelElement>>;
|
|
3149
|
+
Title: React.ForwardRefExoticComponent<FieldTitleProps & React.RefAttributes<HTMLDivElement>>;
|
|
3150
|
+
Description: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & {
|
|
3151
|
+
invalid?: boolean;
|
|
3152
|
+
warning?: boolean;
|
|
3153
|
+
} & React.RefAttributes<HTMLParagraphElement>>;
|
|
3154
|
+
Error: React.ForwardRefExoticComponent<FieldErrorProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
3155
|
+
Content: React.ForwardRefExoticComponent<FieldContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
3156
|
+
Legend: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLLegendElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
3157
|
+
variant: {
|
|
3158
|
+
legend: string;
|
|
3159
|
+
label: string;
|
|
2873
3160
|
};
|
|
2874
|
-
}
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
3161
|
+
}, undefined, "text-navy-600 [[data-invalid]_&]:text-notification-critical-600", {
|
|
3162
|
+
variant: {
|
|
3163
|
+
legend: string;
|
|
3164
|
+
label: string;
|
|
2878
3165
|
};
|
|
2879
|
-
|
|
2880
|
-
|
|
3166
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
3167
|
+
variant: {
|
|
3168
|
+
legend: string;
|
|
3169
|
+
label: string;
|
|
2881
3170
|
};
|
|
2882
|
-
}
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
prefix: string;
|
|
2886
|
-
input: string;
|
|
2887
|
-
suffix: string;
|
|
2888
|
-
}, undefined, unknown, unknown, undefined>>> & {
|
|
2889
|
-
scope?: DropdownProps;
|
|
2890
|
-
} & React.RefAttributes<HTMLInputElement>>;
|
|
3171
|
+
}, undefined, "text-navy-600 [[data-invalid]_&]:text-notification-critical-600", unknown, unknown, undefined>>> & React.RefAttributes<HTMLLegendElement>>;
|
|
3172
|
+
Separator: React.ForwardRefExoticComponent<FieldSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
3173
|
+
};
|
|
2891
3174
|
|
|
2892
3175
|
declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
|
|
2893
3176
|
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -2896,8 +3179,11 @@ declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimit
|
|
|
2896
3179
|
declare const DropdownMenuTrigger: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
2897
3180
|
declare const DropdownMenuGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2898
3181
|
declare const DropdownMenuPortal: React__default.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
2899
|
-
declare const DropdownMenuSub: React__default.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
2900
3182
|
declare const DropdownMenuRadioGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3183
|
+
declare const DropdownMenuSub: {
|
|
3184
|
+
({ open, defaultOpen, onOpenChange, children, ...props }: React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
3185
|
+
displayName: string;
|
|
3186
|
+
};
|
|
2901
3187
|
declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
2902
3188
|
appearance: {
|
|
2903
3189
|
ai: {
|
|
@@ -2909,6 +3195,11 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2909
3195
|
radioItem: string;
|
|
2910
3196
|
label: string;
|
|
2911
3197
|
separator: string;
|
|
3198
|
+
itemIcon: string;
|
|
3199
|
+
subTriggerChevron: string;
|
|
3200
|
+
collapsibleHeader: string;
|
|
3201
|
+
collapsibleTrigger: string;
|
|
3202
|
+
collapsibleChevron: string;
|
|
2912
3203
|
};
|
|
2913
3204
|
default: {
|
|
2914
3205
|
content: string;
|
|
@@ -2917,6 +3208,9 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2917
3208
|
item: string;
|
|
2918
3209
|
checkboxItem: string;
|
|
2919
3210
|
radioItem: string;
|
|
3211
|
+
label: string;
|
|
3212
|
+
collapsibleHeader: string;
|
|
3213
|
+
collapsibleTrigger: string;
|
|
2920
3214
|
};
|
|
2921
3215
|
};
|
|
2922
3216
|
}, {
|
|
@@ -2929,7 +3223,15 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2929
3223
|
label: string;
|
|
2930
3224
|
separator: string;
|
|
2931
3225
|
shortcut: string;
|
|
2932
|
-
|
|
3226
|
+
itemIcon: string;
|
|
3227
|
+
itemLabel: string;
|
|
3228
|
+
itemTrailing: string;
|
|
3229
|
+
subTriggerChevron: string;
|
|
3230
|
+
collapsibleHeader: string;
|
|
3231
|
+
collapsibleTrigger: string;
|
|
3232
|
+
collapsibleChevron: string;
|
|
3233
|
+
collapsibleContent: string;
|
|
3234
|
+
collapsibleContentInner: string;
|
|
2933
3235
|
}, undefined, {
|
|
2934
3236
|
appearance: {
|
|
2935
3237
|
ai: {
|
|
@@ -2941,6 +3243,11 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2941
3243
|
radioItem: string;
|
|
2942
3244
|
label: string;
|
|
2943
3245
|
separator: string;
|
|
3246
|
+
itemIcon: string;
|
|
3247
|
+
subTriggerChevron: string;
|
|
3248
|
+
collapsibleHeader: string;
|
|
3249
|
+
collapsibleTrigger: string;
|
|
3250
|
+
collapsibleChevron: string;
|
|
2944
3251
|
};
|
|
2945
3252
|
default: {
|
|
2946
3253
|
content: string;
|
|
@@ -2949,6 +3256,9 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2949
3256
|
item: string;
|
|
2950
3257
|
checkboxItem: string;
|
|
2951
3258
|
radioItem: string;
|
|
3259
|
+
label: string;
|
|
3260
|
+
collapsibleHeader: string;
|
|
3261
|
+
collapsibleTrigger: string;
|
|
2952
3262
|
};
|
|
2953
3263
|
};
|
|
2954
3264
|
}, {
|
|
@@ -2961,7 +3271,15 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2961
3271
|
label: string;
|
|
2962
3272
|
separator: string;
|
|
2963
3273
|
shortcut: string;
|
|
2964
|
-
|
|
3274
|
+
itemIcon: string;
|
|
3275
|
+
itemLabel: string;
|
|
3276
|
+
itemTrailing: string;
|
|
3277
|
+
subTriggerChevron: string;
|
|
3278
|
+
collapsibleHeader: string;
|
|
3279
|
+
collapsibleTrigger: string;
|
|
3280
|
+
collapsibleChevron: string;
|
|
3281
|
+
collapsibleContent: string;
|
|
3282
|
+
collapsibleContentInner: string;
|
|
2965
3283
|
}, tailwind_variants.TVReturnType<{
|
|
2966
3284
|
appearance: {
|
|
2967
3285
|
ai: {
|
|
@@ -2973,6 +3291,11 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2973
3291
|
radioItem: string;
|
|
2974
3292
|
label: string;
|
|
2975
3293
|
separator: string;
|
|
3294
|
+
itemIcon: string;
|
|
3295
|
+
subTriggerChevron: string;
|
|
3296
|
+
collapsibleHeader: string;
|
|
3297
|
+
collapsibleTrigger: string;
|
|
3298
|
+
collapsibleChevron: string;
|
|
2976
3299
|
};
|
|
2977
3300
|
default: {
|
|
2978
3301
|
content: string;
|
|
@@ -2981,6 +3304,9 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2981
3304
|
item: string;
|
|
2982
3305
|
checkboxItem: string;
|
|
2983
3306
|
radioItem: string;
|
|
3307
|
+
label: string;
|
|
3308
|
+
collapsibleHeader: string;
|
|
3309
|
+
collapsibleTrigger: string;
|
|
2984
3310
|
};
|
|
2985
3311
|
};
|
|
2986
3312
|
}, {
|
|
@@ -2993,23 +3319,42 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<{
|
|
|
2993
3319
|
label: string;
|
|
2994
3320
|
separator: string;
|
|
2995
3321
|
shortcut: string;
|
|
2996
|
-
|
|
3322
|
+
itemIcon: string;
|
|
3323
|
+
itemLabel: string;
|
|
3324
|
+
itemTrailing: string;
|
|
3325
|
+
subTriggerChevron: string;
|
|
3326
|
+
collapsibleHeader: string;
|
|
3327
|
+
collapsibleTrigger: string;
|
|
3328
|
+
collapsibleChevron: string;
|
|
3329
|
+
collapsibleContent: string;
|
|
3330
|
+
collapsibleContentInner: string;
|
|
2997
3331
|
}, undefined, unknown, unknown, undefined>>;
|
|
2998
3332
|
type DropdownMenuVariants = VariantProps<typeof dropdownMenu>;
|
|
2999
3333
|
type DropdownMenuProps = React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Root> & DropdownMenuVariants;
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3334
|
+
type DropdownMenuSubTriggerProps = React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & DropdownMenuVariants & {
|
|
3335
|
+
inset?: boolean;
|
|
3336
|
+
icon?: React__default.ReactNode;
|
|
3003
3337
|
};
|
|
3004
3338
|
declare const DropdownMenuSubTrigger: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3005
3339
|
inset?: boolean;
|
|
3340
|
+
icon?: React__default.ReactNode;
|
|
3006
3341
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3007
3342
|
declare const DropdownMenuSubContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3008
|
-
declare const DropdownMenuContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuPrimitive.DropdownMenuPortalProps & DropdownMenuVariants & React__default.RefAttributes<
|
|
3343
|
+
declare const DropdownMenuContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & Pick<DropdownMenuPrimitive.DropdownMenuPortalProps, "container" | "forceMount"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3344
|
+
type DropdownMenuItemProps = React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & DropdownMenuVariants & {
|
|
3345
|
+
inset?: boolean;
|
|
3346
|
+
icon?: React__default.ReactNode;
|
|
3347
|
+
};
|
|
3009
3348
|
declare const DropdownMenuItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3010
3349
|
inset?: boolean;
|
|
3350
|
+
icon?: React__default.ReactNode;
|
|
3351
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3352
|
+
type DropdownMenuCheckboxItemProps = React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & DropdownMenuVariants & {
|
|
3353
|
+
icon?: React__default.ReactNode;
|
|
3354
|
+
};
|
|
3355
|
+
declare const DropdownMenuCheckboxItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3356
|
+
icon?: React__default.ReactNode;
|
|
3011
3357
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3012
|
-
declare const DropdownMenuCheckboxItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3013
3358
|
declare const DropdownMenuRadioItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3014
3359
|
declare const DropdownMenuLabel: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3015
3360
|
inset?: boolean;
|
|
@@ -3019,5 +3364,352 @@ declare const DropdownMenuShortcut: {
|
|
|
3019
3364
|
({ className, appearance, ...props }: React__default.HTMLAttributes<HTMLSpanElement> & DropdownMenuVariants): react_jsx_runtime.JSX.Element;
|
|
3020
3365
|
displayName: string;
|
|
3021
3366
|
};
|
|
3367
|
+
type DropdownMenuCollapsibleProps = React__default.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.Root>;
|
|
3368
|
+
declare const DropdownMenuCollapsible: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
3369
|
+
type DropdownMenuCollapsibleTriggerProps = React__default.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleTrigger> & DropdownMenuVariants & {
|
|
3370
|
+
icon?: React__default.ReactNode;
|
|
3371
|
+
trailing?: React__default.ReactNode;
|
|
3372
|
+
headerClassName?: string;
|
|
3373
|
+
};
|
|
3374
|
+
declare const DropdownMenuCollapsibleTrigger: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & DropdownMenuVariants & {
|
|
3375
|
+
icon?: React__default.ReactNode;
|
|
3376
|
+
trailing?: React__default.ReactNode;
|
|
3377
|
+
headerClassName?: string;
|
|
3378
|
+
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
3379
|
+
type DropdownMenuCollapsibleContentProps = React__default.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleContent> & DropdownMenuVariants;
|
|
3380
|
+
declare const DropdownMenuCollapsibleContent: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3381
|
+
declare const DropdownMenuNamespace: {
|
|
3382
|
+
({ children, appearance, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
3383
|
+
displayName: string;
|
|
3384
|
+
} & {
|
|
3385
|
+
Trigger: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
3386
|
+
Content: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & Pick<DropdownMenuPrimitive.DropdownMenuPortalProps, "container" | "forceMount"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3387
|
+
Item: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3388
|
+
inset?: boolean;
|
|
3389
|
+
icon?: React__default.ReactNode;
|
|
3390
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3391
|
+
CheckboxItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3392
|
+
icon?: React__default.ReactNode;
|
|
3393
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3394
|
+
RadioItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3395
|
+
Label: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3396
|
+
inset?: boolean;
|
|
3397
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3398
|
+
Separator: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3399
|
+
Shortcut: {
|
|
3400
|
+
({ className, appearance, ...props }: React__default.HTMLAttributes<HTMLSpanElement> & DropdownMenuVariants): react_jsx_runtime.JSX.Element;
|
|
3401
|
+
displayName: string;
|
|
3402
|
+
};
|
|
3403
|
+
Group: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3404
|
+
Portal: React__default.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
3405
|
+
Sub: {
|
|
3406
|
+
({ open, defaultOpen, onOpenChange, children, ...props }: React__default.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
3407
|
+
displayName: string;
|
|
3408
|
+
};
|
|
3409
|
+
SubContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3410
|
+
SubTrigger: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & {
|
|
3411
|
+
inset?: boolean;
|
|
3412
|
+
icon?: React__default.ReactNode;
|
|
3413
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3414
|
+
RadioGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3415
|
+
Collapsible: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
3416
|
+
CollapsibleTrigger: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & DropdownMenuVariants & {
|
|
3417
|
+
icon?: React__default.ReactNode;
|
|
3418
|
+
trailing?: React__default.ReactNode;
|
|
3419
|
+
headerClassName?: string;
|
|
3420
|
+
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
3421
|
+
CollapsibleContent: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuVariants & React__default.RefAttributes<HTMLDivElement>>;
|
|
3422
|
+
};
|
|
3423
|
+
|
|
3424
|
+
type OptionValue$1 = string | number;
|
|
3425
|
+
type SelectOption$1 = {
|
|
3426
|
+
value: OptionValue$1;
|
|
3427
|
+
label?: React__default.ReactNode;
|
|
3428
|
+
icon?: React__default.ReactNode;
|
|
3429
|
+
disabled?: boolean;
|
|
3430
|
+
children?: React__default.ReactNode;
|
|
3431
|
+
[key: string]: unknown;
|
|
3432
|
+
};
|
|
3433
|
+
type SelectGroup$1 = {
|
|
3434
|
+
key: React__default.Key;
|
|
3435
|
+
label: React__default.ReactNode;
|
|
3436
|
+
options: SelectOption$1[];
|
|
3437
|
+
collapsible?: boolean;
|
|
3438
|
+
defaultCollapsed?: boolean;
|
|
3439
|
+
disabled?: boolean;
|
|
3440
|
+
className?: string;
|
|
3441
|
+
};
|
|
3442
|
+
type FilterOption$1 = boolean | ((inputValue: string, option: SelectOption$1) => boolean);
|
|
3443
|
+
type SelectRootProps = {
|
|
3444
|
+
children?: React__default.ReactNode;
|
|
3445
|
+
options?: SelectOption$1[];
|
|
3446
|
+
groups?: SelectGroup$1[];
|
|
3447
|
+
value?: OptionValue$1;
|
|
3448
|
+
defaultValue?: OptionValue$1;
|
|
3449
|
+
onValueChange?: (value?: OptionValue$1, option?: SelectOption$1) => void;
|
|
3450
|
+
onClear?: () => void;
|
|
3451
|
+
searchable?: boolean;
|
|
3452
|
+
searchPlacement?: 'trigger' | 'dropdown';
|
|
3453
|
+
searchValue?: string;
|
|
3454
|
+
onSearch?: (searchTerm: string) => void;
|
|
3455
|
+
optionFilterProp?: 'label' | 'value' | ('label' | 'value')[];
|
|
3456
|
+
filterOption?: FilterOption$1;
|
|
3457
|
+
optionLabelProp?: string;
|
|
3458
|
+
disabled?: boolean;
|
|
3459
|
+
error?: boolean;
|
|
3460
|
+
size?: 'medium' | 'small';
|
|
3461
|
+
loading?: boolean;
|
|
3462
|
+
virtual?: boolean;
|
|
3463
|
+
open?: boolean;
|
|
3464
|
+
onOpenChange?: (open: boolean, eventDetails: Combobox.Root.ChangeEventDetails) => void;
|
|
3465
|
+
className?: string;
|
|
3466
|
+
} & Pick<Combobox.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset'>;
|
|
3467
|
+
declare function Root$1({ children, options, groups, value, defaultValue, onValueChange, onClear, searchable, searchPlacement, searchValue, onSearch, optionFilterProp, filterOption, optionLabelProp, disabled, error, size, loading, virtual, open, onOpenChange, className, }: SelectRootProps): react_jsx_runtime.JSX.Element;
|
|
3468
|
+
type SelectInputProps = {
|
|
3469
|
+
id?: string;
|
|
3470
|
+
placeholder?: React__default.ReactNode;
|
|
3471
|
+
prefix?: React__default.ReactNode;
|
|
3472
|
+
allowClear?: boolean;
|
|
3473
|
+
clearIcon?: React__default.ReactNode;
|
|
3474
|
+
optionLabelProp?: string;
|
|
3475
|
+
'aria-label'?: string;
|
|
3476
|
+
className?: string;
|
|
3477
|
+
onBlur?: (event: BaseUIEvent<React__default.FocusEvent<HTMLInputElement, Element>>) => void;
|
|
3478
|
+
};
|
|
3479
|
+
type SelectContentProps = {
|
|
3480
|
+
children?: React__default.ReactNode;
|
|
3481
|
+
className?: string;
|
|
3482
|
+
container?: Combobox.Portal.Props['container'];
|
|
3483
|
+
} & Pick<Combobox.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset'>;
|
|
3484
|
+
declare function Content$1({ children, className, container, side, align, sideOffset, alignOffset, }: SelectContentProps): react_jsx_runtime.JSX.Element;
|
|
3485
|
+
type SelectListProps = {
|
|
3486
|
+
children: ((item: SelectOption$1) => React__default.ReactNode) | React__default.ReactNode;
|
|
3487
|
+
className?: string;
|
|
3488
|
+
onScroll?: (event: BaseUIEvent<React__default.UIEvent<HTMLDivElement, UIEvent>>) => void;
|
|
3489
|
+
};
|
|
3490
|
+
declare function List$1({ children, className, onScroll }: SelectListProps): react_jsx_runtime.JSX.Element;
|
|
3491
|
+
type SelectItemProps = {
|
|
3492
|
+
value: OptionValue$1;
|
|
3493
|
+
disabled?: boolean;
|
|
3494
|
+
icon?: React__default.ReactNode;
|
|
3495
|
+
children?: React__default.ReactNode;
|
|
3496
|
+
className?: string;
|
|
3497
|
+
};
|
|
3498
|
+
declare function Item$1({ value, disabled, icon, children, className }: SelectItemProps): react_jsx_runtime.JSX.Element;
|
|
3499
|
+
type SelectEmptyProps = {
|
|
3500
|
+
children?: React__default.ReactNode;
|
|
3501
|
+
className?: string;
|
|
3502
|
+
};
|
|
3503
|
+
declare function Empty$1({ children, className }: SelectEmptyProps): react_jsx_runtime.JSX.Element | null;
|
|
3504
|
+
declare const Select: {
|
|
3505
|
+
Root: typeof Root$1;
|
|
3506
|
+
Input: React__default.ForwardRefExoticComponent<SelectInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
3507
|
+
Content: typeof Content$1;
|
|
3508
|
+
List: typeof List$1;
|
|
3509
|
+
Item: typeof Item$1;
|
|
3510
|
+
Empty: typeof Empty$1;
|
|
3511
|
+
};
|
|
3512
|
+
|
|
3513
|
+
type OptionValue = string | number;
|
|
3514
|
+
type SelectOption = {
|
|
3515
|
+
value: OptionValue;
|
|
3516
|
+
label?: React__default.ReactNode;
|
|
3517
|
+
icon?: React__default.ReactNode;
|
|
3518
|
+
disabled?: boolean;
|
|
3519
|
+
children?: React__default.ReactNode;
|
|
3520
|
+
[key: string]: unknown;
|
|
3521
|
+
};
|
|
3522
|
+
type SelectGroup = {
|
|
3523
|
+
key: React__default.Key;
|
|
3524
|
+
label: React__default.ReactNode;
|
|
3525
|
+
options: SelectOption[];
|
|
3526
|
+
collapsible?: boolean;
|
|
3527
|
+
defaultCollapsed?: boolean;
|
|
3528
|
+
disabled?: boolean;
|
|
3529
|
+
className?: string;
|
|
3530
|
+
};
|
|
3531
|
+
type FilterOption = boolean | ((inputValue: string, option: SelectOption) => boolean);
|
|
3532
|
+
type SelectMultipleRootProps = {
|
|
3533
|
+
children?: React__default.ReactNode;
|
|
3534
|
+
options?: SelectOption[];
|
|
3535
|
+
groups?: SelectGroup[];
|
|
3536
|
+
value?: OptionValue[];
|
|
3537
|
+
defaultValue?: OptionValue[];
|
|
3538
|
+
onValueChange?: (values: OptionValue[], options: SelectOption[]) => void;
|
|
3539
|
+
searchable?: boolean;
|
|
3540
|
+
searchPlacement?: 'trigger' | 'dropdown';
|
|
3541
|
+
searchValue?: string;
|
|
3542
|
+
onSearch?: (searchTerm: string) => void;
|
|
3543
|
+
optionFilterProp?: 'label' | 'value' | ('label' | 'value')[];
|
|
3544
|
+
filterOption?: FilterOption;
|
|
3545
|
+
optionLabelProp?: string;
|
|
3546
|
+
creatable?: boolean;
|
|
3547
|
+
onCreate?: (text: string) => void;
|
|
3548
|
+
disabled?: boolean;
|
|
3549
|
+
error?: boolean;
|
|
3550
|
+
size?: 'medium' | 'small';
|
|
3551
|
+
loading?: boolean;
|
|
3552
|
+
virtual?: boolean;
|
|
3553
|
+
open?: boolean;
|
|
3554
|
+
onOpenChange?: (open: boolean, eventDetails: Combobox.Root.ChangeEventDetails) => void;
|
|
3555
|
+
className?: string;
|
|
3556
|
+
};
|
|
3557
|
+
declare function Root({ children, options, groups, value, defaultValue, onValueChange, searchable, searchPlacement, searchValue, onSearch, optionFilterProp, filterOption, optionLabelProp, creatable, onCreate, disabled, error, size, loading, virtual, open, onOpenChange, className, }: SelectMultipleRootProps): react_jsx_runtime.JSX.Element;
|
|
3558
|
+
type SelectMultipleChipsProps = {
|
|
3559
|
+
children?: React__default.ReactNode;
|
|
3560
|
+
prefix?: React__default.ReactNode;
|
|
3561
|
+
allowClear?: boolean;
|
|
3562
|
+
clearIcon?: React__default.ReactNode;
|
|
3563
|
+
className?: string;
|
|
3564
|
+
};
|
|
3565
|
+
declare function Chips({ children, prefix, allowClear, clearIcon, className, }: SelectMultipleChipsProps): react_jsx_runtime.JSX.Element;
|
|
3566
|
+
type SelectMultipleValueProps = {
|
|
3567
|
+
placeholder?: React__default.ReactNode;
|
|
3568
|
+
maxTagCount?: number | 'responsive';
|
|
3569
|
+
showChipRemove?: boolean;
|
|
3570
|
+
optionLabelProp?: string;
|
|
3571
|
+
'aria-label'?: string;
|
|
3572
|
+
onBlur?: (event: BaseUIEvent<React__default.FocusEvent<HTMLInputElement, Element>>) => void;
|
|
3573
|
+
};
|
|
3574
|
+
type SelectMultipleChipProps = {
|
|
3575
|
+
value: OptionValue;
|
|
3576
|
+
showRemove?: boolean;
|
|
3577
|
+
children?: React__default.ReactNode;
|
|
3578
|
+
className?: string;
|
|
3579
|
+
};
|
|
3580
|
+
declare function Chip({ value, showRemove, children, className, }: SelectMultipleChipProps): react_jsx_runtime.JSX.Element;
|
|
3581
|
+
type SelectMultipleChipsInputProps = Combobox.Input.Props;
|
|
3582
|
+
type SelectMultipleContentProps = {
|
|
3583
|
+
children?: React__default.ReactNode;
|
|
3584
|
+
className?: string;
|
|
3585
|
+
container?: Combobox.Portal.Props['container'];
|
|
3586
|
+
onScroll?: (event: BaseUIEvent<React__default.UIEvent<HTMLDivElement, UIEvent>>) => void;
|
|
3587
|
+
} & Pick<Combobox.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset'>;
|
|
3588
|
+
declare function Content({ children, className, container, onScroll, side, align, sideOffset, alignOffset, }: SelectMultipleContentProps): react_jsx_runtime.JSX.Element;
|
|
3589
|
+
type SelectMultipleListProps = {
|
|
3590
|
+
children: ((item: SelectOption) => React__default.ReactNode) | React__default.ReactNode;
|
|
3591
|
+
className?: string;
|
|
3592
|
+
};
|
|
3593
|
+
declare function List({ children, className }: SelectMultipleListProps): react_jsx_runtime.JSX.Element;
|
|
3594
|
+
type SelectMultipleItemProps = {
|
|
3595
|
+
value: OptionValue;
|
|
3596
|
+
disabled?: boolean;
|
|
3597
|
+
icon?: React__default.ReactNode;
|
|
3598
|
+
children?: React__default.ReactNode;
|
|
3599
|
+
className?: string;
|
|
3600
|
+
};
|
|
3601
|
+
declare function Item({ value, disabled, icon, children, className, }: SelectMultipleItemProps): react_jsx_runtime.JSX.Element;
|
|
3602
|
+
type SelectMultipleCreateItemProps = {
|
|
3603
|
+
hint?: React__default.ReactNode;
|
|
3604
|
+
className?: string;
|
|
3605
|
+
};
|
|
3606
|
+
declare function CreateItem({ hint, className, }: SelectMultipleCreateItemProps): react_jsx_runtime.JSX.Element | null;
|
|
3607
|
+
type SelectMultipleEmptyProps = {
|
|
3608
|
+
children?: React__default.ReactNode;
|
|
3609
|
+
className?: string;
|
|
3610
|
+
};
|
|
3611
|
+
declare function Empty({ children, className }: SelectMultipleEmptyProps): react_jsx_runtime.JSX.Element | null;
|
|
3612
|
+
declare const SelectMultiple: {
|
|
3613
|
+
Root: typeof Root;
|
|
3614
|
+
Chips: typeof Chips;
|
|
3615
|
+
Value: React__default.ForwardRefExoticComponent<SelectMultipleValueProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
3616
|
+
Chip: typeof Chip;
|
|
3617
|
+
ChipsInput: React__default.ForwardRefExoticComponent<Omit<_base_ui_react.AutocompleteInputProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
3618
|
+
Content: typeof Content;
|
|
3619
|
+
List: typeof List;
|
|
3620
|
+
Item: typeof Item;
|
|
3621
|
+
CreateItem: typeof CreateItem;
|
|
3622
|
+
Empty: typeof Empty;
|
|
3623
|
+
};
|
|
3624
|
+
|
|
3625
|
+
type DatePickerLocale = 'pt-BR' | 'en-US' | 'es';
|
|
3626
|
+
type TriggerSize = 'small' | 'medium';
|
|
3627
|
+
|
|
3628
|
+
type DatePickerProps = Omit<React.ComponentPropsWithoutRef<'input'>, 'value' | 'defaultValue' | 'onChange' | 'onBlur' | 'size' | 'prefix'> & {
|
|
3629
|
+
value?: Date | null;
|
|
3630
|
+
defaultValue?: Date | null;
|
|
3631
|
+
onChange?: (date: Date | null) => void;
|
|
3632
|
+
onBlur?: () => void;
|
|
3633
|
+
placeholder?: string;
|
|
3634
|
+
size?: TriggerSize;
|
|
3635
|
+
invalid?: boolean;
|
|
3636
|
+
loading?: boolean;
|
|
3637
|
+
clearable?: boolean;
|
|
3638
|
+
disabledDate?: (date: Date) => boolean;
|
|
3639
|
+
locale?: DatePickerLocale;
|
|
3640
|
+
format?: string;
|
|
3641
|
+
};
|
|
3642
|
+
declare const DatePicker: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "size" | "defaultValue" | "prefix" | "onBlur" | "onChange" | "value"> & {
|
|
3643
|
+
value?: Date | null;
|
|
3644
|
+
defaultValue?: Date | null;
|
|
3645
|
+
onChange?: (date: Date | null) => void;
|
|
3646
|
+
onBlur?: () => void;
|
|
3647
|
+
placeholder?: string;
|
|
3648
|
+
size?: TriggerSize;
|
|
3649
|
+
invalid?: boolean;
|
|
3650
|
+
loading?: boolean;
|
|
3651
|
+
clearable?: boolean;
|
|
3652
|
+
disabledDate?: (date: Date) => boolean;
|
|
3653
|
+
locale?: DatePickerLocale;
|
|
3654
|
+
format?: string;
|
|
3655
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
3656
|
+
|
|
3657
|
+
type RangeValue = [Date | null, Date | null];
|
|
3658
|
+
type QuickDate = {
|
|
3659
|
+
label: string;
|
|
3660
|
+
range: [Date, Date];
|
|
3661
|
+
disabled?: boolean;
|
|
3662
|
+
};
|
|
3663
|
+
type RangePickerProps = Omit<DatePickerProps, 'value' | 'defaultValue' | 'onChange' | 'placeholder' | 'disabled'> & {
|
|
3664
|
+
value?: RangeValue;
|
|
3665
|
+
defaultValue?: RangeValue;
|
|
3666
|
+
onChange?: (value: RangeValue) => void;
|
|
3667
|
+
rangePlaceholder?: [string, string];
|
|
3668
|
+
quickDates?: QuickDate[];
|
|
3669
|
+
disabled?: boolean | [boolean, boolean];
|
|
3670
|
+
open?: boolean;
|
|
3671
|
+
defaultOpen?: boolean;
|
|
3672
|
+
onOpenChange?: (open: boolean) => void;
|
|
3673
|
+
};
|
|
3674
|
+
declare const RangePicker: React.ForwardRefExoticComponent<Omit<DatePickerProps, "defaultValue" | "onChange" | "disabled" | "value" | "placeholder"> & {
|
|
3675
|
+
value?: RangeValue;
|
|
3676
|
+
defaultValue?: RangeValue;
|
|
3677
|
+
onChange?: (value: RangeValue) => void;
|
|
3678
|
+
rangePlaceholder?: [string, string];
|
|
3679
|
+
quickDates?: QuickDate[];
|
|
3680
|
+
disabled?: boolean | [boolean, boolean];
|
|
3681
|
+
open?: boolean;
|
|
3682
|
+
defaultOpen?: boolean;
|
|
3683
|
+
onOpenChange?: (open: boolean) => void;
|
|
3684
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
3685
|
+
|
|
3686
|
+
type TimePickerProps = Omit<React.ComponentPropsWithoutRef<'input'>, 'value' | 'defaultValue' | 'onChange' | 'onBlur' | 'size' | 'prefix'> & {
|
|
3687
|
+
value?: string;
|
|
3688
|
+
defaultValue?: string;
|
|
3689
|
+
onChange?: (value?: string) => void;
|
|
3690
|
+
onBlur?: () => void;
|
|
3691
|
+
placeholder?: string;
|
|
3692
|
+
size?: TriggerSize;
|
|
3693
|
+
step?: number;
|
|
3694
|
+
clearable?: boolean;
|
|
3695
|
+
side?: 'top' | 'bottom';
|
|
3696
|
+
align?: 'start' | 'center' | 'end';
|
|
3697
|
+
invalid?: boolean;
|
|
3698
|
+
loading?: boolean;
|
|
3699
|
+
};
|
|
3700
|
+
declare const TimePicker: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "size" | "defaultValue" | "prefix" | "onBlur" | "onChange" | "value"> & {
|
|
3701
|
+
value?: string;
|
|
3702
|
+
defaultValue?: string;
|
|
3703
|
+
onChange?: (value?: string) => void;
|
|
3704
|
+
onBlur?: () => void;
|
|
3705
|
+
placeholder?: string;
|
|
3706
|
+
size?: TriggerSize;
|
|
3707
|
+
step?: number;
|
|
3708
|
+
clearable?: boolean;
|
|
3709
|
+
side?: "top" | "bottom";
|
|
3710
|
+
align?: "start" | "center" | "end";
|
|
3711
|
+
invalid?: boolean;
|
|
3712
|
+
loading?: boolean;
|
|
3713
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
3022
3714
|
|
|
3023
|
-
export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, type CardProps, Checkbox, CheckboxCard, type CheckboxCardProps, type CheckboxProps, Chips, type ChipsProps, type CircleProps, Collapsible, type CollapsibleContentProps, type CollapsibleItemProps, type CollapsibleTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type ExpandedProps, GoToCard, type GoToCardProps, Indicator, type IndicatorProps, Input, InputDescription, type InputDescriptionProps, type InputProps, Label, type LabelProps, Loading, type LoadingProps, Message, MessageContainer, type MessageProps, MessageType, Popover, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, type ProgressIndicatorProps, Radio, type RadioCardProps, type RadioGroupProps, type RadioItemProps, Scope, type ScopeGroupProps, type ScopeItemProps,
|
|
3715
|
+
export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, type CardProps, Checkbox, CheckboxCard, type CheckboxCardProps, type CheckboxProps, Chips$1 as Chips, type ChipsProps, type CircleProps, Collapsible, type CollapsibleContentProps, type CollapsibleItemProps, type CollapsibleTriggerProps, DatePicker, type DatePickerLocale, type DatePickerProps, DropdownMenuNamespace as DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuCollapsible, DropdownMenuCollapsibleContent, type DropdownMenuCollapsibleContentProps, type DropdownMenuCollapsibleProps, DropdownMenuCollapsibleTrigger, type DropdownMenuCollapsibleTriggerProps, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuPortal, type DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type ExpandedProps, Field, type FieldContentProps, type FieldDescriptionProps, type FieldErrorProps, type FieldGroupProps, type FieldLabelProps, type FieldLegendProps, type FieldProps, type FieldSeparatorProps, type FieldSetProps, type FieldTitleProps, GoToCard, type GoToCardProps, Indicator, type IndicatorProps, Input, InputDescription, type InputDescriptionProps, InputGroup, type InputGroupAddonProps, type InputGroupButtonProps, type InputGroupCountProps, type InputGroupInputProps, type InputGroupRootProps, type InputGroupTextProps, type InputGroupTextareaProps, type InputProps, Label, type LabelProps, Loading, type LoadingProps, Message, MessageContainer, type MessageProps, MessageType, Popover, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, type ProgressIndicatorProps, type QuickDate, Radio, type RadioCardProps, type RadioGroupProps, type RadioItemProps, RangePicker, type RangePickerProps, type RangeValue, Scope, type ScopeGroupProps, type ScopeItemProps, SearchScope, type SearchScopeOption, type SearchScopeProps, type SearchScopeSelect, Select, SelectCard, type SelectCardGroupProps, type SelectContentProps, type SelectEmptyProps, type SelectGroup$1 as SelectGroup, type SelectInputProps, type SelectItemProps, type SelectListProps, SelectMultiple, type SelectMultipleChipProps, type SelectMultipleChipsInputProps, type SelectMultipleChipsProps, type SelectMultipleContentProps, type SelectMultipleCreateItemProps, type SelectMultipleEmptyProps, type SelectMultipleItemProps, type SelectMultipleListProps, type SelectMultipleRootProps, type SelectMultipleValueProps, type SelectOption$1 as SelectOption, type SelectRootProps, Sheet, type SheetBodyProps, type SheetCloseProps, type SheetContentProps, type SheetHeaderProps, type SheetOverlayProps, type SheetPortalProps, type SheetPushConfig, type SheetRootProps, type SheetSide, type SheetTriggerProps, type SheetVariants, Skeleton, type SkeletonProps, Status, type StatusMenuProps, type StatusOption, type StatusSimpleProps, Switch, type SwitchProps, type TabItem, TabsLayout as Tabs, type TabsLayoutProps, Text, type TextProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, TipCard, type TipCardProps, Toggle, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip, type TooltipProps, TooltipProvider };
|