@unifiedsoftware/react-ui 2.0.0-beta.9 → 2.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +420 -244
- package/dist/index.js +33 -1
- package/package.json +12 -9
package/dist/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
4
4
|
import { VirtualizerOptions as VirtualizerOptions$1, Virtualizer as Virtualizer$1, ListItemProps as ListItemProps$1, ResultProps as ResultProps$1 } from '@unifiedsoftware/react-ui';
|
|
5
5
|
import { FloatingRootContext } from '@floating-ui/react';
|
|
6
6
|
|
|
7
|
-
interface Props$
|
|
7
|
+
interface Props$O {
|
|
8
8
|
}
|
|
9
|
-
type NativeAttrs$
|
|
10
|
-
type DividerProps = Props$
|
|
11
|
-
declare const Divider: react.ForwardRefExoticComponent<Props$
|
|
9
|
+
type NativeAttrs$Q = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$O>;
|
|
10
|
+
type DividerProps = Props$O & NativeAttrs$Q;
|
|
11
|
+
declare const Divider: react.ForwardRefExoticComponent<Props$O & NativeAttrs$Q & react.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
|
|
13
13
|
type BoxShadow = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
14
14
|
type BorderRadius = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -36,7 +36,7 @@ interface AccordionArrow {
|
|
|
36
36
|
position?: 'start' | 'end';
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
interface Props$
|
|
39
|
+
interface Props$N {
|
|
40
40
|
value?: any[];
|
|
41
41
|
defaultValue?: any[];
|
|
42
42
|
expandMode?: 'single' | 'multiple';
|
|
@@ -53,9 +53,9 @@ interface Props$M {
|
|
|
53
53
|
}) => React.ReactNode;
|
|
54
54
|
onChange?: (value: any[]) => void;
|
|
55
55
|
}
|
|
56
|
-
type NativeAttrs$
|
|
57
|
-
type AccordionProps = Props$
|
|
58
|
-
declare const Accordion: react.ForwardRefExoticComponent<Props$
|
|
56
|
+
type NativeAttrs$P = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$N>;
|
|
57
|
+
type AccordionProps = Props$N & NativeAttrs$P;
|
|
58
|
+
declare const Accordion: react.ForwardRefExoticComponent<Props$N & NativeAttrs$P & react.RefAttributes<HTMLDivElement>>;
|
|
59
59
|
|
|
60
60
|
interface AccordionItemContextValue {
|
|
61
61
|
value: string;
|
|
@@ -64,7 +64,7 @@ interface AccordionItemContextValue {
|
|
|
64
64
|
}) => React.ReactNode;
|
|
65
65
|
}
|
|
66
66
|
declare const useAccordionItem: () => AccordionItemContextValue;
|
|
67
|
-
interface Props$
|
|
67
|
+
interface Props$M {
|
|
68
68
|
value?: any;
|
|
69
69
|
variant?: AccordionVariant;
|
|
70
70
|
color?: AccordionColor;
|
|
@@ -72,11 +72,11 @@ interface Props$L {
|
|
|
72
72
|
isOpen: boolean;
|
|
73
73
|
}) => React.ReactNode;
|
|
74
74
|
}
|
|
75
|
-
type NativeAttrs$
|
|
76
|
-
type AccordionItemProps = Props$
|
|
77
|
-
declare const AccordionItem: react.ForwardRefExoticComponent<Props$
|
|
75
|
+
type NativeAttrs$O = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$M>;
|
|
76
|
+
type AccordionItemProps = Props$M & NativeAttrs$O;
|
|
77
|
+
declare const AccordionItem: react.ForwardRefExoticComponent<Props$M & NativeAttrs$O & react.RefAttributes<HTMLDivElement>>;
|
|
78
78
|
|
|
79
|
-
interface Props$
|
|
79
|
+
interface Props$L {
|
|
80
80
|
as?: React.ElementType;
|
|
81
81
|
title?: React.ReactNode;
|
|
82
82
|
subtitle?: React.ReactNode;
|
|
@@ -94,9 +94,9 @@ interface Props$K {
|
|
|
94
94
|
subtitle?: React.HTMLAttributes<HTMLDivElement>;
|
|
95
95
|
};
|
|
96
96
|
}
|
|
97
|
-
type NativeAttrs$
|
|
98
|
-
type AccordionHeaderProps = Props$
|
|
99
|
-
declare const AccordionHeader: react.ForwardRefExoticComponent<Props$
|
|
97
|
+
type NativeAttrs$N = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$L>;
|
|
98
|
+
type AccordionHeaderProps = Props$L & NativeAttrs$N;
|
|
99
|
+
declare const AccordionHeader: react.ForwardRefExoticComponent<Props$L & NativeAttrs$N & react.RefAttributes<HTMLDivElement>>;
|
|
100
100
|
|
|
101
101
|
type AccordionBodyProps = React.HTMLAttributes<HTMLDivElement>;
|
|
102
102
|
declare const AccordionBody: react.ForwardRefExoticComponent<AccordionBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -401,21 +401,17 @@ interface UseContainerMediaQueryOptions<TElement extends HTMLElement = HTMLEleme
|
|
|
401
401
|
}
|
|
402
402
|
declare function useContainerMediaQuery<TElement extends HTMLElement = HTMLElement>(options: UseContainerMediaQueryOptions<TElement>): ContainerMediaQuery | undefined;
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
format?: 'datetime' | 'short datetime' | 'date' | 'time';
|
|
416
|
-
locales?: Intl.LocalesArgument;
|
|
417
|
-
options?: Intl.DateTimeFormatOptions;
|
|
418
|
-
}
|
|
404
|
+
declare const scrollToItem: (parentElement: Element, currentElement: Element) => void;
|
|
405
|
+
|
|
406
|
+
type ClassDictionary = Record<string, any>;
|
|
407
|
+
type ClassArray = ClassValue[];
|
|
408
|
+
type ClassValue = ClassArray | ClassDictionary | string | number | null | boolean | undefined;
|
|
409
|
+
declare function clsx(...inputs: ClassValue[]): string;
|
|
410
|
+
|
|
411
|
+
type ReactRef<T> = React.RefCallback<T> | React.MutableRefObject<T>;
|
|
412
|
+
declare function assignRef<T = any>(ref: ReactRef<T> | null | undefined, value: T): void;
|
|
413
|
+
declare function mergeRefs<T>(...refs: (ReactRef<T> | null | undefined)[]): (node: T | null) => void;
|
|
414
|
+
|
|
419
415
|
interface FormatBooleanOptions {
|
|
420
416
|
type: 'boolean';
|
|
421
417
|
value?: boolean | null;
|
|
@@ -424,6 +420,7 @@ interface FormatBooleanOptions {
|
|
|
424
420
|
false?: string;
|
|
425
421
|
};
|
|
426
422
|
}
|
|
423
|
+
|
|
427
424
|
interface FormatCurrencyOptions {
|
|
428
425
|
type: 'currency';
|
|
429
426
|
value?: number | bigint | Intl.StringNumericLiteral | null;
|
|
@@ -431,6 +428,43 @@ interface FormatCurrencyOptions {
|
|
|
431
428
|
locales?: Intl.LocalesArgument;
|
|
432
429
|
options?: Intl.NumberFormatOptions;
|
|
433
430
|
}
|
|
431
|
+
declare function formatCurrency(value: number | bigint | Intl.StringNumericLiteral, currency?: string, locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;
|
|
432
|
+
|
|
433
|
+
interface FormatDateOptions {
|
|
434
|
+
type: 'date';
|
|
435
|
+
value?: Date | string | number | null;
|
|
436
|
+
format?: 'datetime' | 'short datetime' | 'date' | 'time';
|
|
437
|
+
locales?: Intl.LocalesArgument;
|
|
438
|
+
options?: Intl.DateTimeFormatOptions;
|
|
439
|
+
}
|
|
440
|
+
declare function formatDate(value: Date | string | number, locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
441
|
+
declare function formatDateTime(value: Date | string | number, locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
442
|
+
declare function formatShortDateTime(value: Date | string | number, locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
443
|
+
declare function formatTime(value: Date | string | number, locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
444
|
+
|
|
445
|
+
type UnitSystem = 'si' | 'iec';
|
|
446
|
+
type ForcedUnit = 'B' | 'KB' | 'MB' | 'GB' | 'TB' | 'PB' | 'EB' | 'ZB' | 'YB' | 'KiB' | 'MiB' | 'GiB' | 'TiB' | 'PiB' | 'EiB' | 'ZiB' | 'YiB';
|
|
447
|
+
interface FileSizeFormatOptions {
|
|
448
|
+
system?: UnitSystem;
|
|
449
|
+
maximumFractionDigits?: number;
|
|
450
|
+
minimumFractionDigits?: number;
|
|
451
|
+
unit?: ForcedUnit;
|
|
452
|
+
spacer?: string;
|
|
453
|
+
lowercase?: boolean;
|
|
454
|
+
}
|
|
455
|
+
interface FormatFileSizeOptions {
|
|
456
|
+
type: 'file-size';
|
|
457
|
+
value?: number;
|
|
458
|
+
locales?: Intl.LocalesArgument;
|
|
459
|
+
options?: FileSizeFormatOptions;
|
|
460
|
+
}
|
|
461
|
+
declare function formatFileSize(bytes: number, locales?: Intl.LocalesArgument, { system, maximumFractionDigits, minimumFractionDigits, unit, spacer, lowercase, }?: FileSizeFormatOptions): string;
|
|
462
|
+
|
|
463
|
+
interface FormatNumberOptions {
|
|
464
|
+
type: 'number';
|
|
465
|
+
value?: number | string | null;
|
|
466
|
+
}
|
|
467
|
+
|
|
434
468
|
interface FormatPercentOptions {
|
|
435
469
|
type: 'percent';
|
|
436
470
|
value?: number | string | null;
|
|
@@ -438,7 +472,53 @@ interface FormatPercentOptions {
|
|
|
438
472
|
locales?: Intl.LocalesArgument;
|
|
439
473
|
options?: Intl.NumberFormatOptions;
|
|
440
474
|
}
|
|
441
|
-
|
|
475
|
+
declare function formatPercent(value: any, decimals?: number, locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;
|
|
476
|
+
|
|
477
|
+
interface FormatStringOptions {
|
|
478
|
+
type?: 'string';
|
|
479
|
+
value?: string | null;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
type FormatOptions = FormatStringOptions | FormatNumberOptions | FormatDateOptions | FormatBooleanOptions | FormatCurrencyOptions | FormatPercentOptions | FormatFileSizeOptions;
|
|
483
|
+
declare function format(options: FormatOptions): string | undefined;
|
|
484
|
+
|
|
485
|
+
type SelectionValue<TItem extends Record<string, any>, TKeyField extends keyof TItem, TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = TMultiple extends true ? TClearable extends true ? TItem[TKeyField][] | null : TItem[TKeyField][] : TClearable extends true ? TItem[TKeyField] | null : TItem[TKeyField];
|
|
486
|
+
type SelectionItem<TData extends Record<string, any>, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> = TMultiple extends true ? TClearable extends true ? TData[] | null : TData[] : TClearable extends true ? TData | null : TData;
|
|
487
|
+
type SelectionOnChange<TData extends Record<string, any>, TKeyField extends keyof TData, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> = (value: SelectionValue<TData, TKeyField, TMultiple, TClearable>, item: SelectionItem<TData, TMultiple, TClearable>) => void;
|
|
488
|
+
interface SelectionProps<TItem extends Record<string, any>, TKeyField extends keyof TItem, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> {
|
|
489
|
+
data: TItem[];
|
|
490
|
+
isMultiple?: TMultiple;
|
|
491
|
+
clearable?: TClearable;
|
|
492
|
+
keyField?: TKeyField;
|
|
493
|
+
value?: SelectionValue<TItem, TKeyField, TMultiple, TClearable>;
|
|
494
|
+
onChange?: SelectionOnChange<TItem, TKeyField, TMultiple, TClearable>;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
declare const valueToValues: <TItem extends Record<string, any>, TKeyField extends keyof TItem, TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false>(value?: SelectionValue<TItem, TKeyField, TMultiple, TClearable>) => TItem[TKeyField][];
|
|
498
|
+
declare const valuesToValue: <TItem extends Record<string, any>, TKeyField extends keyof TItem>(values: TItem[TKeyField][]) => TItem[TKeyField] | null;
|
|
499
|
+
|
|
500
|
+
declare function areArraysEqual<T extends string | number | symbol>(arr1: T[], arr2: T[]): boolean;
|
|
501
|
+
|
|
502
|
+
declare function toLocalDateString(date: Date): string;
|
|
503
|
+
declare function toLocalDateTimeString(date: Date): string;
|
|
504
|
+
declare function toAlphaString(value: string): string;
|
|
505
|
+
declare function toNumericString(value: string): string;
|
|
506
|
+
declare function toAlphanumericString(value: string): string;
|
|
507
|
+
declare function toPlainTextString(value: string): string;
|
|
508
|
+
declare function toNotEmojisString(value: string): string;
|
|
509
|
+
declare const STRING_RULES: readonly ["allow-emojis", "not-allow-emojis", "only-alpha", "only-numeric", "only-alphanumeric", "only-plain-text"];
|
|
510
|
+
type StringRules = Array<(typeof STRING_RULES)[number]>;
|
|
511
|
+
declare function toRulesString(rules: StringRules, value: string): string;
|
|
512
|
+
|
|
513
|
+
declare function isEmpty<T>(value?: T | null): value is null | undefined;
|
|
514
|
+
declare function isEmptyString(value?: string | null): value is null | undefined;
|
|
515
|
+
declare function isNumeric(value: string): boolean;
|
|
516
|
+
declare function isAlphanumeric(value: string): boolean;
|
|
517
|
+
declare function containsPlainText(value: string): boolean;
|
|
518
|
+
declare function doesNotContainEmojis(value: string): boolean;
|
|
519
|
+
declare function validateRules(rules: StringRules, value: string): string | boolean;
|
|
520
|
+
|
|
521
|
+
declare function generateId(): string;
|
|
442
522
|
|
|
443
523
|
declare function useFormat(options: FormatOptions): {
|
|
444
524
|
value: string | undefined;
|
|
@@ -475,37 +555,26 @@ type Responsive<T> = T | {
|
|
|
475
555
|
'2xl'?: T;
|
|
476
556
|
};
|
|
477
557
|
|
|
478
|
-
type SelectionValue<TItem extends Record<string, any>, TKeyField extends keyof TItem, TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = TMultiple extends true ? TClearable extends true ? TItem[TKeyField][] | null : TItem[TKeyField][] : TClearable extends true ? TItem[TKeyField] | null : TItem[TKeyField];
|
|
479
|
-
type SelectionItem<TData extends Record<string, any>, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> = TMultiple extends true ? TClearable extends true ? TData[] | null : TData[] : TClearable extends true ? TData | null : TData;
|
|
480
|
-
type SelectionOnChange<TData extends Record<string, any>, TKeyField extends keyof TData, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> = (value: SelectionValue<TData, TKeyField, TMultiple, TClearable>, item: SelectionItem<TData, TMultiple, TClearable>) => void;
|
|
481
|
-
interface SelectionProps<TItem extends Record<string, any>, TKeyField extends keyof TItem, TMultiple extends boolean | undefined, TClearable extends boolean | undefined> {
|
|
482
|
-
data: TItem[];
|
|
483
|
-
isMultiple?: TMultiple;
|
|
484
|
-
clearable?: TClearable;
|
|
485
|
-
keyField?: TKeyField;
|
|
486
|
-
value?: SelectionValue<TItem, TKeyField, TMultiple, TClearable>;
|
|
487
|
-
onChange?: SelectionOnChange<TItem, TKeyField, TMultiple, TClearable>;
|
|
488
|
-
}
|
|
489
|
-
|
|
490
558
|
type InputSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
491
559
|
type InputColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'light';
|
|
492
560
|
type InputVariant = 'filled' | 'outlined' | 'flat' | 'text';
|
|
493
561
|
|
|
494
|
-
interface Props$
|
|
562
|
+
interface Props$K {
|
|
495
563
|
}
|
|
496
|
-
type NativeAttrs$
|
|
497
|
-
type InputGroupProps = Props$
|
|
498
|
-
declare const InputGroup: react.ForwardRefExoticComponent<Props$
|
|
564
|
+
type NativeAttrs$M = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$K>;
|
|
565
|
+
type InputGroupProps = Props$K & NativeAttrs$M;
|
|
566
|
+
declare const InputGroup: react.ForwardRefExoticComponent<Props$K & NativeAttrs$M & react.RefAttributes<HTMLDivElement>>;
|
|
499
567
|
|
|
500
568
|
type ListSize = 'sm' | 'md' | 'lg';
|
|
501
569
|
|
|
502
570
|
interface ListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
503
571
|
as?: React.ElementType;
|
|
504
572
|
size?: ListSize;
|
|
573
|
+
divider?: boolean;
|
|
505
574
|
}
|
|
506
575
|
declare const List: react.ForwardRefExoticComponent<ListProps & react.RefAttributes<HTMLDivElement>>;
|
|
507
576
|
|
|
508
|
-
interface Props$
|
|
577
|
+
interface Props$J {
|
|
509
578
|
as?: react__default.ElementType;
|
|
510
579
|
title?: react__default.ReactNode;
|
|
511
580
|
subtitle?: react__default.ReactNode;
|
|
@@ -523,11 +592,11 @@ interface Props$I {
|
|
|
523
592
|
subtitle?: react__default.HTMLAttributes<HTMLDivElement>;
|
|
524
593
|
};
|
|
525
594
|
}
|
|
526
|
-
type NativeAttrs$
|
|
527
|
-
type ListItemProps = Props$
|
|
528
|
-
declare const ListItem: react__default.ForwardRefExoticComponent<Props$
|
|
595
|
+
type NativeAttrs$L = Omit<react__default.HTMLAttributes<HTMLDivElement>, keyof Props$J>;
|
|
596
|
+
type ListItemProps = Props$J & NativeAttrs$L;
|
|
597
|
+
declare const ListItem: react__default.ForwardRefExoticComponent<Props$J & NativeAttrs$L & react__default.RefAttributes<HTMLDivElement>>;
|
|
529
598
|
|
|
530
|
-
interface Props$
|
|
599
|
+
interface Props$I {
|
|
531
600
|
expandVisible?: boolean;
|
|
532
601
|
expandPosition?: 'start' | 'end';
|
|
533
602
|
isOpen?: boolean;
|
|
@@ -535,9 +604,9 @@ interface Props$H {
|
|
|
535
604
|
onClose?: () => void;
|
|
536
605
|
onToggle?: () => void;
|
|
537
606
|
}
|
|
538
|
-
type NativeAttrs$
|
|
539
|
-
type ListGroupProps = Props$
|
|
540
|
-
declare const ListGroup: react.ForwardRefExoticComponent<Props$
|
|
607
|
+
type NativeAttrs$K = Omit<ListItemProps, keyof Props$I>;
|
|
608
|
+
type ListGroupProps = Props$I & NativeAttrs$K;
|
|
609
|
+
declare const ListGroup: react.ForwardRefExoticComponent<Props$I & NativeAttrs$K & react.RefAttributes<HTMLDivElement>>;
|
|
541
610
|
|
|
542
611
|
interface ListSubheaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
543
612
|
as?: React.ElementType;
|
|
@@ -567,7 +636,7 @@ declare const Result: React.FC<ResultProps>;
|
|
|
567
636
|
|
|
568
637
|
type AutocompleteMultiple = false;
|
|
569
638
|
type AutocompleteClearable = true;
|
|
570
|
-
type NativeAttrs$
|
|
639
|
+
type NativeAttrs$J<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key'> = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$H<TItem, TKeyField>>;
|
|
571
640
|
type BaseProps$1<TItem extends Record<string, any>> = {
|
|
572
641
|
textField?: keyof TItem;
|
|
573
642
|
placeholder?: string;
|
|
@@ -587,8 +656,8 @@ type BaseProps$1<TItem extends Record<string, any>> = {
|
|
|
587
656
|
renderItem?: (item: TItem, props: ListItemProps) => React.ReactNode;
|
|
588
657
|
renderNoData?: (props: ResultProps) => React.ReactNode;
|
|
589
658
|
};
|
|
590
|
-
type Props$
|
|
591
|
-
type AutocompleteProps<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = Props$
|
|
659
|
+
type Props$H<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = BaseProps$1<TItem> & SelectionProps<TItem, TKeyField, TMultiple, TClearable>;
|
|
660
|
+
type AutocompleteProps<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = Props$H<TItem, TKeyField, TMultiple, TClearable> & NativeAttrs$J<TItem, TKeyField>;
|
|
592
661
|
|
|
593
662
|
declare const Autocomplete: <TItem extends Record<string, any>, TKeyField extends keyof TItem = "key", TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = true>(props: AutocompleteProps<TItem, TKeyField, TMultiple, TClearable>) => react_jsx_runtime.JSX.Element;
|
|
594
663
|
|
|
@@ -611,7 +680,7 @@ declare const useAutocomplete: () => AutocompleteContextValue<Record<string, any
|
|
|
611
680
|
type BackdropPlacement = 'top' | 'left' | 'center' | 'right' | 'bottom';
|
|
612
681
|
type BackdropVariant = 'opaque' | 'blur' | 'transparent';
|
|
613
682
|
|
|
614
|
-
interface Props$
|
|
683
|
+
interface Props$G {
|
|
615
684
|
isOpen: boolean;
|
|
616
685
|
closable?: boolean;
|
|
617
686
|
placement?: BackdropPlacement;
|
|
@@ -620,14 +689,14 @@ interface Props$F {
|
|
|
620
689
|
scrollArea?: boolean;
|
|
621
690
|
onClose(): void;
|
|
622
691
|
}
|
|
623
|
-
type NativeAttrs$
|
|
624
|
-
type BackdropProps = Props$
|
|
625
|
-
declare const Backdrop: react.ForwardRefExoticComponent<Props$
|
|
692
|
+
type NativeAttrs$I = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$G>;
|
|
693
|
+
type BackdropProps = Props$G & NativeAttrs$I;
|
|
694
|
+
declare const Backdrop: react.ForwardRefExoticComponent<Props$G & NativeAttrs$I & react.RefAttributes<HTMLDivElement>>;
|
|
626
695
|
|
|
627
696
|
type BadgeColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger';
|
|
628
697
|
type BadgePlacement = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
629
698
|
|
|
630
|
-
interface Props$
|
|
699
|
+
interface Props$F {
|
|
631
700
|
/**
|
|
632
701
|
* The placement of the badge relative to its content.
|
|
633
702
|
*/
|
|
@@ -645,8 +714,8 @@ interface Props$E {
|
|
|
645
714
|
wrapper?: React.HTMLAttributes<HTMLDivElement>;
|
|
646
715
|
};
|
|
647
716
|
}
|
|
648
|
-
type NativeAttrs$
|
|
649
|
-
type BadgeProps = Props$
|
|
717
|
+
type NativeAttrs$H = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$F>;
|
|
718
|
+
type BadgeProps = Props$F & NativeAttrs$H;
|
|
650
719
|
declare const Badge: React.FC<BadgeProps>;
|
|
651
720
|
|
|
652
721
|
type DataListItem = Record<string, any>;
|
|
@@ -663,7 +732,7 @@ interface DataListMultipleProps<TDataListItem extends DataListItem, TDataListKey
|
|
|
663
732
|
onChange?: (value: TDataListItem[]) => void;
|
|
664
733
|
onValueChange?: (value: TDataListItem[TDataListKeyField][]) => void;
|
|
665
734
|
}
|
|
666
|
-
type Props$
|
|
735
|
+
type Props$E<TDataListItem extends DataListItem, TDataListKeyField extends DataListKeyField<TDataListItem> = 'key'> = {
|
|
667
736
|
data: TDataListItem[];
|
|
668
737
|
keyField?: TDataListKeyField;
|
|
669
738
|
textField?: keyof DataListItem;
|
|
@@ -678,8 +747,8 @@ type Props$D<TDataListItem extends DataListItem, TDataListKeyField extends DataL
|
|
|
678
747
|
renderItem?: (item: TDataListItem, props: ListItemProps$1) => React.ReactNode;
|
|
679
748
|
renderNoData?: (props: ResultProps$1) => React.ReactNode;
|
|
680
749
|
} & (DataListSingleProps<TDataListItem, TDataListKeyField> | DataListMultipleProps<TDataListItem, TDataListKeyField>);
|
|
681
|
-
type NativeAttrs$
|
|
682
|
-
type DataListProps<TDataListItem extends DataListItem, TDataListKeyField extends DataListKeyField<TDataListItem> = 'key'> = Props$
|
|
750
|
+
type NativeAttrs$G<TDataListItem extends DataListItem, TDataListKeyField extends DataListKeyField<TDataListItem> = 'key'> = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$E<TDataListItem, TDataListKeyField>>;
|
|
751
|
+
type DataListProps<TDataListItem extends DataListItem, TDataListKeyField extends DataListKeyField<TDataListItem> = 'key'> = Props$E<TDataListItem, TDataListKeyField> & NativeAttrs$G<TDataListItem, TDataListKeyField>;
|
|
683
752
|
|
|
684
753
|
declare const DataList: <TDataListItem extends DataListItem, TDataListKeyField extends DataListKeyField<TDataListItem> = "key">(props: DataListProps<TDataListItem, TDataListKeyField>) => react_jsx_runtime.JSX.Element;
|
|
685
754
|
|
|
@@ -688,7 +757,7 @@ type ButtonColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'd
|
|
|
688
757
|
type ButtonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
689
758
|
type ButtonGroupDirection = 'row' | 'col';
|
|
690
759
|
|
|
691
|
-
interface Props$
|
|
760
|
+
interface Props$D {
|
|
692
761
|
/**
|
|
693
762
|
* The HTML element type or React component to render as the button.
|
|
694
763
|
*/
|
|
@@ -733,20 +802,20 @@ interface Props$C {
|
|
|
733
802
|
fontStyle?: React.CSSProperties['fontStyle'];
|
|
734
803
|
};
|
|
735
804
|
}
|
|
736
|
-
type NativeAttrs$
|
|
737
|
-
type ButtonProps = Props$
|
|
738
|
-
declare const Button: react.ForwardRefExoticComponent<Props$
|
|
805
|
+
type NativeAttrs$F = Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, keyof Props$D>;
|
|
806
|
+
type ButtonProps = Props$D & NativeAttrs$F;
|
|
807
|
+
declare const Button: react.ForwardRefExoticComponent<Props$D & NativeAttrs$F & react.RefAttributes<HTMLButtonElement>>;
|
|
739
808
|
|
|
740
|
-
interface Props$
|
|
809
|
+
interface Props$C {
|
|
741
810
|
direction?: ButtonGroupDirection;
|
|
742
811
|
variant?: ButtonVariant;
|
|
743
812
|
color?: ButtonColor;
|
|
744
813
|
size?: ButtonSize;
|
|
745
814
|
disabled?: boolean;
|
|
746
815
|
}
|
|
747
|
-
type NativeAttrs$
|
|
748
|
-
type ButtonGroupProps = Props$
|
|
749
|
-
declare const ButtonGroup: react.ForwardRefExoticComponent<Props$
|
|
816
|
+
type NativeAttrs$E = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$C>;
|
|
817
|
+
type ButtonGroupProps = Props$C & NativeAttrs$E;
|
|
818
|
+
declare const ButtonGroup: react.ForwardRefExoticComponent<Props$C & NativeAttrs$E & react.RefAttributes<HTMLDivElement>>;
|
|
750
819
|
|
|
751
820
|
interface ButtonGroupContextValue {
|
|
752
821
|
direction: ButtonGroupDirection;
|
|
@@ -760,7 +829,7 @@ declare const useButtonGroup: () => ButtonGroupContextValue | null;
|
|
|
760
829
|
|
|
761
830
|
type CardSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
762
831
|
|
|
763
|
-
interface Props$
|
|
832
|
+
interface Props$B {
|
|
764
833
|
as?: React.ElementType;
|
|
765
834
|
size?: CardSize;
|
|
766
835
|
hoverable?: boolean;
|
|
@@ -770,14 +839,14 @@ interface Props$A {
|
|
|
770
839
|
divider?: boolean;
|
|
771
840
|
css?: BoxCSS;
|
|
772
841
|
}
|
|
773
|
-
type NativeAttrs$
|
|
774
|
-
type CardProps = Props$
|
|
775
|
-
declare const Card: react.ForwardRefExoticComponent<Props$
|
|
842
|
+
type NativeAttrs$D = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$B>;
|
|
843
|
+
type CardProps = Props$B & NativeAttrs$D;
|
|
844
|
+
declare const Card: react.ForwardRefExoticComponent<Props$B & NativeAttrs$D & react.RefAttributes<HTMLDivElement>>;
|
|
776
845
|
|
|
777
846
|
type CardBodyProps = React.HTMLAttributes<HTMLDivElement>;
|
|
778
847
|
declare const CardBody: react.ForwardRefExoticComponent<CardBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
779
848
|
|
|
780
|
-
interface Props$
|
|
849
|
+
interface Props$A {
|
|
781
850
|
as?: React.ElementType;
|
|
782
851
|
title?: React.ReactNode;
|
|
783
852
|
subtitle?: React.ReactNode;
|
|
@@ -803,11 +872,11 @@ interface Props$z {
|
|
|
803
872
|
subtitle?: React.HTMLAttributes<HTMLDivElement>;
|
|
804
873
|
};
|
|
805
874
|
}
|
|
806
|
-
type NativeAttrs$
|
|
807
|
-
type CardHeaderProps = Props$
|
|
808
|
-
declare const CardHeader: react.ForwardRefExoticComponent<Props$
|
|
875
|
+
type NativeAttrs$C = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$A>;
|
|
876
|
+
type CardHeaderProps = Props$A & NativeAttrs$C;
|
|
877
|
+
declare const CardHeader: react.ForwardRefExoticComponent<Props$A & NativeAttrs$C & react.RefAttributes<HTMLDivElement>>;
|
|
809
878
|
|
|
810
|
-
interface Props$
|
|
879
|
+
interface Props$z {
|
|
811
880
|
as?: React.ElementType;
|
|
812
881
|
/**
|
|
813
882
|
* @deprecated Use `underlined` instead
|
|
@@ -815,9 +884,9 @@ interface Props$y {
|
|
|
815
884
|
bordered?: boolean;
|
|
816
885
|
underlined?: boolean;
|
|
817
886
|
}
|
|
818
|
-
type NativeAttrs$
|
|
819
|
-
type CardFooterProps = Props$
|
|
820
|
-
declare const CardFooter: react.ForwardRefExoticComponent<Props$
|
|
887
|
+
type NativeAttrs$B = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$z>;
|
|
888
|
+
type CardFooterProps = Props$z & NativeAttrs$B;
|
|
889
|
+
declare const CardFooter: react.ForwardRefExoticComponent<Props$z & NativeAttrs$B & react.RefAttributes<HTMLDivElement>>;
|
|
821
890
|
|
|
822
891
|
type CardMediaProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
823
892
|
topLeftContent?: React.ReactNode;
|
|
@@ -828,28 +897,28 @@ declare const CardMedia: react.ForwardRefExoticComponent<react.HTMLAttributes<HT
|
|
|
828
897
|
topRightContent?: React.ReactNode;
|
|
829
898
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
830
899
|
|
|
831
|
-
interface Props$
|
|
900
|
+
interface Props$y {
|
|
832
901
|
as?: React.ElementType;
|
|
833
902
|
centered?: boolean;
|
|
834
903
|
css?: BoxCSS;
|
|
835
904
|
}
|
|
836
|
-
type NativeAttrs$
|
|
837
|
-
type CardTitleProps = Props$
|
|
838
|
-
declare const CardTitle: react.ForwardRefExoticComponent<Props$
|
|
905
|
+
type NativeAttrs$A = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$y>;
|
|
906
|
+
type CardTitleProps = Props$y & NativeAttrs$A;
|
|
907
|
+
declare const CardTitle: react.ForwardRefExoticComponent<Props$y & NativeAttrs$A & react.RefAttributes<HTMLDivElement>>;
|
|
839
908
|
|
|
840
|
-
interface Props$
|
|
909
|
+
interface Props$x {
|
|
841
910
|
as?: React.ElementType;
|
|
842
911
|
css?: BoxCSS;
|
|
843
912
|
}
|
|
844
|
-
type NativeAttrs$
|
|
845
|
-
type CardSubtitleProps = Props$
|
|
846
|
-
declare const CardSubtitle: react.ForwardRefExoticComponent<Props$
|
|
913
|
+
type NativeAttrs$z = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$x>;
|
|
914
|
+
type CardSubtitleProps = Props$x & NativeAttrs$z;
|
|
915
|
+
declare const CardSubtitle: react.ForwardRefExoticComponent<Props$x & NativeAttrs$z & react.RefAttributes<HTMLDivElement>>;
|
|
847
916
|
|
|
848
917
|
type ChipVariant = 'filled' | 'outlined' | 'flat' | 'text' | 'plain' | 'bordered';
|
|
849
918
|
type ChipColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger';
|
|
850
919
|
type ChipSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
851
920
|
|
|
852
|
-
interface Props$
|
|
921
|
+
interface Props$w {
|
|
853
922
|
/**
|
|
854
923
|
* The HTML element type or React component to render as the chip.
|
|
855
924
|
*/
|
|
@@ -887,9 +956,9 @@ interface Props$v {
|
|
|
887
956
|
};
|
|
888
957
|
onClose?: () => void;
|
|
889
958
|
}
|
|
890
|
-
type NativeAttrs$
|
|
891
|
-
type ChipProps = Props$
|
|
892
|
-
declare const Chip: react.ForwardRefExoticComponent<Props$
|
|
959
|
+
type NativeAttrs$y = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$w>;
|
|
960
|
+
type ChipProps = Props$w & NativeAttrs$y;
|
|
961
|
+
declare const Chip: react.ForwardRefExoticComponent<Props$w & NativeAttrs$y & react.RefAttributes<HTMLDivElement>>;
|
|
893
962
|
|
|
894
963
|
interface CollapseProps {
|
|
895
964
|
children: React.ReactNode;
|
|
@@ -934,7 +1003,7 @@ interface DrawerClose {
|
|
|
934
1003
|
}
|
|
935
1004
|
type DrawerBackdrop = BackdropVariant;
|
|
936
1005
|
|
|
937
|
-
interface Props$
|
|
1006
|
+
interface Props$v {
|
|
938
1007
|
isOpen: boolean;
|
|
939
1008
|
size?: DrawerSize;
|
|
940
1009
|
backdrop?: DrawerBackdrop;
|
|
@@ -951,11 +1020,11 @@ interface Props$u {
|
|
|
951
1020
|
onClose: () => void;
|
|
952
1021
|
onAfterClose?: () => void;
|
|
953
1022
|
}
|
|
954
|
-
type NativeAttrs$
|
|
955
|
-
type DrawerProps = Props$
|
|
956
|
-
declare const Drawer: react.ForwardRefExoticComponent<Props$
|
|
1023
|
+
type NativeAttrs$x = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$v>;
|
|
1024
|
+
type DrawerProps = Props$v & NativeAttrs$x;
|
|
1025
|
+
declare const Drawer: react.ForwardRefExoticComponent<Props$v & NativeAttrs$x & react.RefAttributes<HTMLDivElement>>;
|
|
957
1026
|
|
|
958
|
-
interface Props$
|
|
1027
|
+
interface Props$u {
|
|
959
1028
|
as?: React.ElementType;
|
|
960
1029
|
title?: React.ReactNode;
|
|
961
1030
|
subtitle?: React.ReactNode;
|
|
@@ -971,20 +1040,20 @@ interface Props$t {
|
|
|
971
1040
|
subtitle?: React.HTMLAttributes<HTMLDivElement>;
|
|
972
1041
|
};
|
|
973
1042
|
}
|
|
974
|
-
type NativeAttrs$
|
|
975
|
-
type DrawerHeaderProps = Props$
|
|
976
|
-
declare const DrawerHeader: react.ForwardRefExoticComponent<Props$
|
|
1043
|
+
type NativeAttrs$w = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$u>;
|
|
1044
|
+
type DrawerHeaderProps = Props$u & NativeAttrs$w;
|
|
1045
|
+
declare const DrawerHeader: react.ForwardRefExoticComponent<Props$u & NativeAttrs$w & react.RefAttributes<HTMLDivElement>>;
|
|
977
1046
|
|
|
978
1047
|
type DrawerBodyProps = React.HTMLAttributes<HTMLDivElement>;
|
|
979
1048
|
declare const DrawerBody: react.ForwardRefExoticComponent<DrawerBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
980
1049
|
|
|
981
|
-
interface Props$
|
|
1050
|
+
interface Props$t {
|
|
982
1051
|
as?: React.ElementType;
|
|
983
1052
|
bordered?: boolean;
|
|
984
1053
|
}
|
|
985
|
-
type NativeAttrs$
|
|
986
|
-
type DrawerFooterProps = Props$
|
|
987
|
-
declare const DrawerFooter: react.ForwardRefExoticComponent<Props$
|
|
1054
|
+
type NativeAttrs$v = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$t>;
|
|
1055
|
+
type DrawerFooterProps = Props$t & NativeAttrs$v;
|
|
1056
|
+
declare const DrawerFooter: react.ForwardRefExoticComponent<Props$t & NativeAttrs$v & react.RefAttributes<HTMLDivElement>>;
|
|
988
1057
|
|
|
989
1058
|
interface DrawerContextValue {
|
|
990
1059
|
isOpen: boolean;
|
|
@@ -999,16 +1068,27 @@ interface FieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
999
1068
|
declare const Field: react.ForwardRefExoticComponent<FieldProps & react.RefAttributes<HTMLDivElement>>;
|
|
1000
1069
|
|
|
1001
1070
|
type IconColor = 'inherit' | 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger';
|
|
1002
|
-
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1071
|
+
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
1003
1072
|
|
|
1004
1073
|
interface IconProps {
|
|
1005
1074
|
children: React.ReactNode;
|
|
1006
1075
|
color?: IconColor;
|
|
1007
1076
|
size?: IconSize;
|
|
1077
|
+
className?: string;
|
|
1078
|
+
style?: React.CSSProperties;
|
|
1079
|
+
cssVars?: {
|
|
1080
|
+
color?: string;
|
|
1081
|
+
fontSize?: number | string;
|
|
1082
|
+
};
|
|
1083
|
+
cssUtils?: {
|
|
1084
|
+
opacity?: number;
|
|
1085
|
+
pointer?: boolean;
|
|
1086
|
+
hoverOpacity?: number;
|
|
1087
|
+
};
|
|
1008
1088
|
}
|
|
1009
1089
|
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<unknown>>;
|
|
1010
1090
|
|
|
1011
|
-
interface Props$
|
|
1091
|
+
interface Props$s {
|
|
1012
1092
|
/**
|
|
1013
1093
|
* The HTML element type or React component to render as the menu item.
|
|
1014
1094
|
*/
|
|
@@ -1034,9 +1114,9 @@ interface Props$r {
|
|
|
1034
1114
|
*/
|
|
1035
1115
|
disabled?: boolean;
|
|
1036
1116
|
}
|
|
1037
|
-
type NativeAttrs$
|
|
1038
|
-
type MenuItemProps = Props$
|
|
1039
|
-
declare const MenuItem: react.ForwardRefExoticComponent<Props$
|
|
1117
|
+
type NativeAttrs$u = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$s | 'items'>;
|
|
1118
|
+
type MenuItemProps = Props$s & NativeAttrs$u;
|
|
1119
|
+
declare const MenuItem: react.ForwardRefExoticComponent<Props$s & NativeAttrs$u & react.RefAttributes<HTMLDivElement>>;
|
|
1040
1120
|
|
|
1041
1121
|
type MenuSubmenuProps = Omit<MenuItemProps, 'items'> & {
|
|
1042
1122
|
items?: MenuItemType[];
|
|
@@ -1060,7 +1140,7 @@ type MenuItemType = (MenuGroupProps & {
|
|
|
1060
1140
|
}) | (MenuItemProps & {
|
|
1061
1141
|
type?: 'item';
|
|
1062
1142
|
});
|
|
1063
|
-
interface Props$
|
|
1143
|
+
interface Props$r {
|
|
1064
1144
|
/**
|
|
1065
1145
|
* The currently selected value of the menu.
|
|
1066
1146
|
*/
|
|
@@ -1096,8 +1176,8 @@ interface Props$q {
|
|
|
1096
1176
|
*/
|
|
1097
1177
|
onItemSelect?: (props: MenuItemProps) => void;
|
|
1098
1178
|
}
|
|
1099
|
-
type NativeAttrs$
|
|
1100
|
-
type MenuProps = Props$
|
|
1179
|
+
type NativeAttrs$t = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$r | 'items'>;
|
|
1180
|
+
type MenuProps = Props$r & NativeAttrs$t & {
|
|
1101
1181
|
items?: MenuItemType[];
|
|
1102
1182
|
};
|
|
1103
1183
|
declare const Menu: React.FC<MenuProps>;
|
|
@@ -1134,6 +1214,7 @@ declare const Popover: React.FC<PopoverProps>;
|
|
|
1134
1214
|
|
|
1135
1215
|
interface PopoverContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1136
1216
|
sectionValue?: string;
|
|
1217
|
+
excludeTargets?: string[];
|
|
1137
1218
|
}
|
|
1138
1219
|
declare const PopoverContent: react.ForwardRefExoticComponent<PopoverContentProps & react.RefAttributes<HTMLDivElement>>;
|
|
1139
1220
|
|
|
@@ -1172,7 +1253,7 @@ declare const ScrollArea: react.ForwardRefExoticComponent<ScrollAreaProps & reac
|
|
|
1172
1253
|
|
|
1173
1254
|
type SelectMultiple = false;
|
|
1174
1255
|
type SelectClearable = false;
|
|
1175
|
-
type NativeAttrs$
|
|
1256
|
+
type NativeAttrs$s<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key'> = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$q<TItem, TKeyField>>;
|
|
1176
1257
|
type BaseProps<TItem extends Record<string, any>> = {
|
|
1177
1258
|
textField?: keyof TItem;
|
|
1178
1259
|
placeholder?: string;
|
|
@@ -1190,8 +1271,8 @@ type BaseProps<TItem extends Record<string, any>> = {
|
|
|
1190
1271
|
renderItem?: (item: TItem, props: ListItemProps) => React.ReactNode;
|
|
1191
1272
|
renderNoData?: (props: ResultProps) => React.ReactNode;
|
|
1192
1273
|
};
|
|
1193
|
-
type Props$
|
|
1194
|
-
type SelectProps<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = Props$
|
|
1274
|
+
type Props$q<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = BaseProps<TItem> & SelectionProps<TItem, TKeyField, TMultiple, TClearable>;
|
|
1275
|
+
type SelectProps<TItem extends Record<string, any>, TKeyField extends keyof TItem = 'key', TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false> = Props$q<TItem, TKeyField, TMultiple, TClearable> & NativeAttrs$s<TItem, TKeyField>;
|
|
1195
1276
|
|
|
1196
1277
|
declare const Select: <TItem extends Record<string, any>, TKeyField extends keyof TItem = "key", TMultiple extends boolean | undefined = false, TClearable extends boolean | undefined = false>(props: SelectProps<TItem, TKeyField, TMultiple, TClearable>) => react_jsx_runtime.JSX.Element;
|
|
1197
1278
|
|
|
@@ -1215,20 +1296,21 @@ type SwitchSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
1215
1296
|
type SwitchLabelPlacement = 'before' | 'after';
|
|
1216
1297
|
type SwitchColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'light';
|
|
1217
1298
|
|
|
1218
|
-
interface Props$
|
|
1299
|
+
interface Props$p {
|
|
1219
1300
|
size?: SwitchSize;
|
|
1220
1301
|
labelPlacement?: SwitchLabelPlacement;
|
|
1221
1302
|
color?: SwitchColor;
|
|
1222
1303
|
}
|
|
1223
|
-
type NativeAttrs$
|
|
1224
|
-
type SwitchProps = Props$
|
|
1225
|
-
declare const Switch: react.ForwardRefExoticComponent<Props$
|
|
1304
|
+
type NativeAttrs$r = Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof Props$p | 'value' | 'defaultValue'>;
|
|
1305
|
+
type SwitchProps = Props$p & NativeAttrs$r;
|
|
1306
|
+
declare const Switch: react.ForwardRefExoticComponent<Props$p & NativeAttrs$r & react.RefAttributes<HTMLInputElement>>;
|
|
1226
1307
|
|
|
1227
1308
|
type TabsVariant = 'underlined' | 'outlined' | 'pills';
|
|
1228
1309
|
type TabValue = string | number | symbol;
|
|
1229
1310
|
type TabsAlignment = 'start' | 'center' | 'end' | 'stretch';
|
|
1311
|
+
type TabsSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1230
1312
|
|
|
1231
|
-
interface Props$
|
|
1313
|
+
interface Props$o<TTabValue extends TabValue = TabValue> {
|
|
1232
1314
|
/**
|
|
1233
1315
|
* The HTML element type or React component to render as the tab.
|
|
1234
1316
|
*/
|
|
@@ -1254,11 +1336,11 @@ interface Props$n<TTabValue extends TabValue = TabValue> {
|
|
|
1254
1336
|
*/
|
|
1255
1337
|
endContent?: React.ReactNode;
|
|
1256
1338
|
}
|
|
1257
|
-
type NativeAttrs$
|
|
1258
|
-
type TabProps<TTabValue extends TabValue = TabValue> = Props$
|
|
1259
|
-
declare const Tab: react.ForwardRefExoticComponent<Props$
|
|
1339
|
+
type NativeAttrs$q = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$o>;
|
|
1340
|
+
type TabProps<TTabValue extends TabValue = TabValue> = Props$o<TTabValue> & NativeAttrs$q;
|
|
1341
|
+
declare const Tab: react.ForwardRefExoticComponent<Props$o<TabValue> & NativeAttrs$q & react.RefAttributes<HTMLDivElement>>;
|
|
1260
1342
|
|
|
1261
|
-
interface Props$
|
|
1343
|
+
interface Props$n<TTabValue extends TabValue = TabValue> {
|
|
1262
1344
|
/**
|
|
1263
1345
|
* The currently selected value of the tabs.
|
|
1264
1346
|
*/
|
|
@@ -1272,6 +1354,10 @@ interface Props$m<TTabValue extends TabValue = TabValue> {
|
|
|
1272
1354
|
* The alignment of the tabs.
|
|
1273
1355
|
*/
|
|
1274
1356
|
alignment?: TabsAlignment;
|
|
1357
|
+
/**
|
|
1358
|
+
* The size of the tabs.
|
|
1359
|
+
*/
|
|
1360
|
+
size?: TabsSize;
|
|
1275
1361
|
/**
|
|
1276
1362
|
* A callback function called when the selected tab value changes.
|
|
1277
1363
|
*/
|
|
@@ -1281,11 +1367,13 @@ interface Props$m<TTabValue extends TabValue = TabValue> {
|
|
|
1281
1367
|
*/
|
|
1282
1368
|
onClose?: (value: TTabValue) => void;
|
|
1283
1369
|
}
|
|
1284
|
-
type NativeAttrs$
|
|
1285
|
-
type TabsProps<TTabValue extends TabValue = TabValue> = Props$
|
|
1286
|
-
declare const Tabs: <TTabValue extends TabValue = TabValue>(props: Props$
|
|
1370
|
+
type NativeAttrs$p = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$n>;
|
|
1371
|
+
type TabsProps<TTabValue extends TabValue = TabValue> = Props$n<TTabValue> & NativeAttrs$p;
|
|
1372
|
+
declare const Tabs: <TTabValue extends TabValue = TabValue>(props: Props$n<TTabValue> & NativeAttrs$p & react.RefAttributes<HTMLDivElement>) => ReturnType<React.FunctionComponent>;
|
|
1287
1373
|
|
|
1288
|
-
interface Props$
|
|
1374
|
+
interface Props$m {
|
|
1375
|
+
value?: string;
|
|
1376
|
+
defaultValue?: string;
|
|
1289
1377
|
inputRef?: React.RefObject<HTMLInputElement>;
|
|
1290
1378
|
variant?: InputVariant;
|
|
1291
1379
|
color?: InputColor;
|
|
@@ -1293,14 +1381,16 @@ interface Props$l {
|
|
|
1293
1381
|
startContent?: React.ReactNode;
|
|
1294
1382
|
endContent?: React.ReactNode;
|
|
1295
1383
|
css?: BoxCSS;
|
|
1384
|
+
rules?: StringRules;
|
|
1385
|
+
autoFormatRules?: boolean;
|
|
1296
1386
|
}
|
|
1297
|
-
type NativeAttrs$
|
|
1298
|
-
type TextInputProps = Props$
|
|
1299
|
-
declare const TextInput: react.ForwardRefExoticComponent<Props$
|
|
1387
|
+
type NativeAttrs$o = Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof Props$m>;
|
|
1388
|
+
type TextInputProps = Props$m & NativeAttrs$o;
|
|
1389
|
+
declare const TextInput: react.ForwardRefExoticComponent<Props$m & NativeAttrs$o & react.RefAttributes<HTMLInputElement>>;
|
|
1300
1390
|
|
|
1301
1391
|
type ToolbarSize = 'auto' | 'sm' | 'md' | 'lg';
|
|
1302
1392
|
|
|
1303
|
-
interface Props$
|
|
1393
|
+
interface Props$l {
|
|
1304
1394
|
size?: ToolbarSize;
|
|
1305
1395
|
title?: React.ReactNode;
|
|
1306
1396
|
subtitle?: React.ReactNode;
|
|
@@ -1322,8 +1412,8 @@ interface Props$k {
|
|
|
1322
1412
|
subtitle?: React.HTMLAttributes<HTMLDivElement>;
|
|
1323
1413
|
};
|
|
1324
1414
|
}
|
|
1325
|
-
type NativeAttrs$
|
|
1326
|
-
type ToolbarProps = Props$
|
|
1415
|
+
type NativeAttrs$n = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$l>;
|
|
1416
|
+
type ToolbarProps = Props$l & NativeAttrs$n;
|
|
1327
1417
|
declare const Toolbar: React.FC<ToolbarProps>;
|
|
1328
1418
|
|
|
1329
1419
|
interface TransitionProps extends React.HTMLAttributes<HTMLElement> {
|
|
@@ -1338,22 +1428,22 @@ interface TransitionProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
1338
1428
|
}
|
|
1339
1429
|
declare const Transition: React.FC<TransitionProps>;
|
|
1340
1430
|
|
|
1341
|
-
interface Props$
|
|
1431
|
+
interface Props$k {
|
|
1342
1432
|
/**
|
|
1343
1433
|
* The HTML element type or React component to render as the tab.
|
|
1344
1434
|
*/
|
|
1345
1435
|
as?: React.ElementType;
|
|
1346
1436
|
width?: number;
|
|
1347
1437
|
}
|
|
1348
|
-
type NativeAttrs$
|
|
1349
|
-
type SwipeItemProps = Props$
|
|
1350
|
-
declare const SwipeItem: react.ForwardRefExoticComponent<Props$
|
|
1438
|
+
type NativeAttrs$m = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$k>;
|
|
1439
|
+
type SwipeItemProps = Props$k & NativeAttrs$m;
|
|
1440
|
+
declare const SwipeItem: react.ForwardRefExoticComponent<Props$k & NativeAttrs$m & {
|
|
1351
1441
|
children?: react.ReactNode | undefined;
|
|
1352
1442
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
1353
1443
|
|
|
1354
1444
|
type SwiperAlignmet = 'start' | 'center' | 'end';
|
|
1355
1445
|
|
|
1356
|
-
interface Props$
|
|
1446
|
+
interface Props$j {
|
|
1357
1447
|
gap?: number;
|
|
1358
1448
|
alignment?: SwiperAlignmet;
|
|
1359
1449
|
autoHide?: boolean;
|
|
@@ -1363,8 +1453,8 @@ interface Props$i {
|
|
|
1363
1453
|
arrowRightButton?: ButtonProps;
|
|
1364
1454
|
};
|
|
1365
1455
|
}
|
|
1366
|
-
type NativeAttrs$
|
|
1367
|
-
type SwipeProps = Props$
|
|
1456
|
+
type NativeAttrs$l = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$j>;
|
|
1457
|
+
type SwipeProps = Props$j & NativeAttrs$l;
|
|
1368
1458
|
declare const Swipe: React.FC<SwipeProps>;
|
|
1369
1459
|
|
|
1370
1460
|
type ModalSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
@@ -1374,9 +1464,9 @@ interface ModalClose {
|
|
|
1374
1464
|
position?: 'start' | 'end';
|
|
1375
1465
|
}
|
|
1376
1466
|
type ModalScrollBehavior = 'inside' | 'outside';
|
|
1377
|
-
type ModalBackdrop = BackdropVariant;
|
|
1467
|
+
type ModalBackdrop = BackdropVariant | boolean;
|
|
1378
1468
|
|
|
1379
|
-
interface Props$
|
|
1469
|
+
interface Props$i {
|
|
1380
1470
|
isOpen: boolean;
|
|
1381
1471
|
size?: ModalSize;
|
|
1382
1472
|
backdrop?: ModalBackdrop;
|
|
@@ -1388,18 +1478,23 @@ interface Props$h {
|
|
|
1388
1478
|
slotProps?: {
|
|
1389
1479
|
wrapper?: React.HTMLAttributes<HTMLDivElement>;
|
|
1390
1480
|
};
|
|
1481
|
+
content?: boolean;
|
|
1391
1482
|
onClose: () => void;
|
|
1392
1483
|
onAfterClose?: () => void;
|
|
1393
1484
|
}
|
|
1394
|
-
type NativeAttrs$
|
|
1395
|
-
type ModalProps = Props$
|
|
1396
|
-
declare const Modal: react.ForwardRefExoticComponent<Props$
|
|
1485
|
+
type NativeAttrs$k = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$i>;
|
|
1486
|
+
type ModalProps = Props$i & NativeAttrs$k;
|
|
1487
|
+
declare const Modal: react.ForwardRefExoticComponent<Props$i & NativeAttrs$k & react.RefAttributes<HTMLDivElement>>;
|
|
1397
1488
|
|
|
1398
1489
|
type ModalBodyProps = React.HTMLAttributes<HTMLDivElement>;
|
|
1399
1490
|
declare const ModalBody: React.FC<ModalBodyProps>;
|
|
1400
1491
|
|
|
1401
1492
|
interface ModalContextValue {
|
|
1493
|
+
nodeRef: React.MutableRefObject<null>;
|
|
1402
1494
|
isOpen: boolean;
|
|
1495
|
+
size: ModalSize;
|
|
1496
|
+
placement: ModalPlacement;
|
|
1497
|
+
fullscreen: boolean;
|
|
1403
1498
|
scrollBehavior: ModalScrollBehavior;
|
|
1404
1499
|
scrollArea: boolean;
|
|
1405
1500
|
closable: boolean;
|
|
@@ -1408,15 +1503,15 @@ interface ModalContextValue {
|
|
|
1408
1503
|
}
|
|
1409
1504
|
declare function useModal(): ModalContextValue;
|
|
1410
1505
|
|
|
1411
|
-
interface Props$
|
|
1506
|
+
interface Props$h {
|
|
1412
1507
|
as?: React.ElementType;
|
|
1413
1508
|
bordered?: boolean;
|
|
1414
1509
|
}
|
|
1415
|
-
type NativeAttrs$
|
|
1416
|
-
type ModalFooterProps = Props$
|
|
1417
|
-
declare const ModalFooter: react.ForwardRefExoticComponent<Props$
|
|
1510
|
+
type NativeAttrs$j = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$h>;
|
|
1511
|
+
type ModalFooterProps = Props$h & NativeAttrs$j;
|
|
1512
|
+
declare const ModalFooter: react.ForwardRefExoticComponent<Props$h & NativeAttrs$j & react.RefAttributes<HTMLDivElement>>;
|
|
1418
1513
|
|
|
1419
|
-
interface Props$
|
|
1514
|
+
interface Props$g {
|
|
1420
1515
|
as?: React.ElementType;
|
|
1421
1516
|
title?: React.ReactNode;
|
|
1422
1517
|
subtitle?: React.ReactNode;
|
|
@@ -1432,9 +1527,12 @@ interface Props$f {
|
|
|
1432
1527
|
subtitle?: React.HTMLAttributes<HTMLDivElement>;
|
|
1433
1528
|
};
|
|
1434
1529
|
}
|
|
1435
|
-
type NativeAttrs$
|
|
1436
|
-
type ModalHeaderProps = Props$
|
|
1437
|
-
declare const ModalHeader: react.ForwardRefExoticComponent<Props$
|
|
1530
|
+
type NativeAttrs$i = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$g>;
|
|
1531
|
+
type ModalHeaderProps = Props$g & NativeAttrs$i;
|
|
1532
|
+
declare const ModalHeader: react.ForwardRefExoticComponent<Props$g & NativeAttrs$i & react.RefAttributes<HTMLDivElement>>;
|
|
1533
|
+
|
|
1534
|
+
type ModalContentProps = React.HTMLAttributes<HTMLDivElement>;
|
|
1535
|
+
declare const ModalContent: react.ForwardRefExoticComponent<ModalContentProps & react.RefAttributes<HTMLDivElement>>;
|
|
1438
1536
|
|
|
1439
1537
|
type CheckboxValue = string | number | symbol;
|
|
1440
1538
|
type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -1443,18 +1541,18 @@ type CheckboxGroupDirection = 'row' | 'col';
|
|
|
1443
1541
|
type CheckboxGroupAlignment = 'start' | 'center' | 'end' | 'stretch';
|
|
1444
1542
|
type CheckboxColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'light';
|
|
1445
1543
|
|
|
1446
|
-
interface Props$
|
|
1544
|
+
interface Props$f<TCheckboxValue extends CheckboxValue = CheckboxValue> {
|
|
1447
1545
|
value?: TCheckboxValue;
|
|
1448
1546
|
size?: CheckboxSize;
|
|
1449
1547
|
labelPlacement?: CheckboxLabelPlacement;
|
|
1450
1548
|
color?: CheckboxColor;
|
|
1451
1549
|
indeterminate?: boolean;
|
|
1452
1550
|
}
|
|
1453
|
-
type NativeAttrs$
|
|
1454
|
-
type CheckboxProps<TCheckboxValue extends CheckboxValue = CheckboxValue> = Props$
|
|
1455
|
-
declare const Checkbox: <TCheckboxValue extends CheckboxValue = CheckboxValue>(props: Props$
|
|
1551
|
+
type NativeAttrs$h = Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof Props$f | 'defaultValue'>;
|
|
1552
|
+
type CheckboxProps<TCheckboxValue extends CheckboxValue = CheckboxValue> = Props$f<TCheckboxValue> & NativeAttrs$h;
|
|
1553
|
+
declare const Checkbox: <TCheckboxValue extends CheckboxValue = CheckboxValue>(props: Props$f<TCheckboxValue> & NativeAttrs$h & react.RefAttributes<HTMLInputElement>) => ReturnType<React.FunctionComponent>;
|
|
1456
1554
|
|
|
1457
|
-
interface Props$
|
|
1555
|
+
interface Props$e<TCheckboxValue extends CheckboxValue = CheckboxValue> {
|
|
1458
1556
|
value?: TCheckboxValue[];
|
|
1459
1557
|
defaultValue?: TCheckboxValue[];
|
|
1460
1558
|
disabled?: boolean;
|
|
@@ -1466,9 +1564,9 @@ interface Props$d<TCheckboxValue extends CheckboxValue = CheckboxValue> {
|
|
|
1466
1564
|
color?: CheckboxColor;
|
|
1467
1565
|
onChange?: (value: TCheckboxValue[]) => void;
|
|
1468
1566
|
}
|
|
1469
|
-
type NativeAttrs$
|
|
1470
|
-
type CheckboxGroupProps<TCheckboxValue extends CheckboxValue = CheckboxValue> = Props$
|
|
1471
|
-
declare const CheckboxGroup: <TCheckboxValue extends CheckboxValue = CheckboxValue>(props: Props$
|
|
1567
|
+
type NativeAttrs$g = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$e>;
|
|
1568
|
+
type CheckboxGroupProps<TCheckboxValue extends CheckboxValue = CheckboxValue> = Props$e<TCheckboxValue> & NativeAttrs$g;
|
|
1569
|
+
declare const CheckboxGroup: <TCheckboxValue extends CheckboxValue = CheckboxValue>(props: Props$e<TCheckboxValue> & NativeAttrs$g & react.RefAttributes<HTMLTableElement>) => ReturnType<React.FunctionComponent>;
|
|
1472
1570
|
|
|
1473
1571
|
interface CheckboxGroupContextValue<TCheckboxValue extends CheckboxValue = CheckboxValue> {
|
|
1474
1572
|
value: TCheckboxValue[];
|
|
@@ -1490,7 +1588,7 @@ type RadioGroupDirection = 'row' | 'col';
|
|
|
1490
1588
|
type RadioGroupAlignment = 'start' | 'center' | 'end' | 'stretch';
|
|
1491
1589
|
type RadioColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'light';
|
|
1492
1590
|
|
|
1493
|
-
interface Props$
|
|
1591
|
+
interface Props$d<TRadioValue extends RadioValue = RadioValue> {
|
|
1494
1592
|
value?: TRadioValue;
|
|
1495
1593
|
disabled?: boolean;
|
|
1496
1594
|
readOnly?: boolean;
|
|
@@ -1498,11 +1596,11 @@ interface Props$c<TRadioValue extends RadioValue = RadioValue> {
|
|
|
1498
1596
|
labelPlacement?: RadioLabelPlacement;
|
|
1499
1597
|
colorScheme?: ColorScheme;
|
|
1500
1598
|
}
|
|
1501
|
-
type NativeAttrs$
|
|
1502
|
-
type RadioProps<TRadioValue extends RadioValue = RadioValue> = Props$
|
|
1503
|
-
declare const Radio: <TRadioValue extends RadioValue = RadioValue>(props: Props$
|
|
1599
|
+
type NativeAttrs$f = Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof Props$d | 'defaultValue' | 'checked' | 'defaultChecked' | 'onChange'>;
|
|
1600
|
+
type RadioProps<TRadioValue extends RadioValue = RadioValue> = Props$d<TRadioValue> & NativeAttrs$f;
|
|
1601
|
+
declare const Radio: <TRadioValue extends RadioValue = RadioValue>(props: Props$d<TRadioValue> & NativeAttrs$f & react.RefAttributes<HTMLInputElement>) => ReturnType<React.FunctionComponent>;
|
|
1504
1602
|
|
|
1505
|
-
interface Props$
|
|
1603
|
+
interface Props$c<TRadioValue extends RadioValue = RadioValue> {
|
|
1506
1604
|
name?: string;
|
|
1507
1605
|
value?: TRadioValue;
|
|
1508
1606
|
defaultValue?: TRadioValue;
|
|
@@ -1515,9 +1613,9 @@ interface Props$b<TRadioValue extends RadioValue = RadioValue> {
|
|
|
1515
1613
|
color?: RadioColor;
|
|
1516
1614
|
onChange?: (value: TRadioValue) => void;
|
|
1517
1615
|
}
|
|
1518
|
-
type NativeAttrs$
|
|
1519
|
-
type RadioGroupProps<TRadioValue extends RadioValue = RadioValue> = Props$
|
|
1520
|
-
declare const RadioGroup: <TRadioValue extends RadioValue = RadioValue>(props: Props$
|
|
1616
|
+
type NativeAttrs$e = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$c>;
|
|
1617
|
+
type RadioGroupProps<TRadioValue extends RadioValue = RadioValue> = Props$c<TRadioValue> & NativeAttrs$e;
|
|
1618
|
+
declare const RadioGroup: <TRadioValue extends RadioValue = RadioValue>(props: Props$c<TRadioValue> & NativeAttrs$e & react.RefAttributes<HTMLDivElement>) => ReturnType<React.FunctionComponent>;
|
|
1521
1619
|
|
|
1522
1620
|
interface RadioGroupContextValue {
|
|
1523
1621
|
name: string;
|
|
@@ -1535,16 +1633,16 @@ declare const useRadioGroup: () => RadioGroupContextValue;
|
|
|
1535
1633
|
|
|
1536
1634
|
type NavRailPlacement = 'left' | 'right';
|
|
1537
1635
|
|
|
1538
|
-
interface Props$
|
|
1636
|
+
interface Props$b {
|
|
1539
1637
|
startContent?: React.ReactNode;
|
|
1540
1638
|
endContent?: React.ReactNode;
|
|
1541
1639
|
placement?: NavRailPlacement;
|
|
1542
1640
|
}
|
|
1543
|
-
type NativeAttrs$
|
|
1544
|
-
type NavRailProps = Props$
|
|
1641
|
+
type NativeAttrs$d = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$b>;
|
|
1642
|
+
type NavRailProps = Props$b & NativeAttrs$d;
|
|
1545
1643
|
declare const NavRail: React.FC<NavRailProps>;
|
|
1546
1644
|
|
|
1547
|
-
interface Props$
|
|
1645
|
+
interface Props$a {
|
|
1548
1646
|
as?: React.ElementType;
|
|
1549
1647
|
icon?: React.ReactNode;
|
|
1550
1648
|
media?: React.ReactNode;
|
|
@@ -1554,11 +1652,11 @@ interface Props$9 {
|
|
|
1554
1652
|
label?: React.HTMLAttributes<HTMLDivElement>;
|
|
1555
1653
|
};
|
|
1556
1654
|
}
|
|
1557
|
-
type NativeAttrs$
|
|
1558
|
-
type NavRailItemProps = Props$
|
|
1559
|
-
declare const NavRailItem: react.ForwardRefExoticComponent<Props$
|
|
1655
|
+
type NativeAttrs$c = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$a>;
|
|
1656
|
+
type NavRailItemProps = Props$a & NativeAttrs$c;
|
|
1657
|
+
declare const NavRailItem: react.ForwardRefExoticComponent<Props$a & NativeAttrs$c & react.RefAttributes<HTMLDivElement>>;
|
|
1560
1658
|
|
|
1561
|
-
type Props$
|
|
1659
|
+
type Props$9 = {
|
|
1562
1660
|
as?: React.ElementType;
|
|
1563
1661
|
label: React.ReactNode;
|
|
1564
1662
|
span?: Responsive<number>;
|
|
@@ -1574,20 +1672,20 @@ type Props$8 = {
|
|
|
1574
1672
|
mq: ContainerMediaQuery;
|
|
1575
1673
|
}) => React.ReactNode;
|
|
1576
1674
|
} & FormatOptions;
|
|
1577
|
-
type NativeAttrs$
|
|
1578
|
-
type DescriptionProps = Props$
|
|
1675
|
+
type NativeAttrs$b = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$9 | 'children'>;
|
|
1676
|
+
type DescriptionProps = Props$9 & NativeAttrs$b;
|
|
1579
1677
|
declare const Description: react.ForwardRefExoticComponent<DescriptionProps & react.RefAttributes<HTMLDivElement>>;
|
|
1580
1678
|
|
|
1581
|
-
type NativeAttrs$
|
|
1582
|
-
type DescriptionEmptyProps = NativeAttrs$
|
|
1583
|
-
declare const DescriptionEmpty: react.ForwardRefExoticComponent<NativeAttrs$
|
|
1679
|
+
type NativeAttrs$a = React.HTMLAttributes<HTMLDivElement>;
|
|
1680
|
+
type DescriptionEmptyProps = NativeAttrs$a;
|
|
1681
|
+
declare const DescriptionEmpty: react.ForwardRefExoticComponent<NativeAttrs$a & react.RefAttributes<HTMLDivElement>>;
|
|
1584
1682
|
|
|
1585
1683
|
type DescriptionsLayout = 'row' | 'col';
|
|
1586
1684
|
type DescriptionsSize = 'sm' | 'md' | 'lg';
|
|
1587
1685
|
type DescriptionsAlign = React.CSSProperties['textAlign'];
|
|
1588
1686
|
type DescriptionsMode = 'container' | 'screen' | 'css';
|
|
1589
1687
|
|
|
1590
|
-
interface Props$
|
|
1688
|
+
interface Props$8 {
|
|
1591
1689
|
as?: React.ElementType;
|
|
1592
1690
|
mode?: DescriptionsMode;
|
|
1593
1691
|
items?: DescriptionProps[];
|
|
@@ -1598,9 +1696,9 @@ interface Props$7 {
|
|
|
1598
1696
|
labelAlign?: Responsive<DescriptionsAlign>;
|
|
1599
1697
|
contentAlign?: Responsive<DescriptionsAlign>;
|
|
1600
1698
|
}
|
|
1601
|
-
type NativeAttrs$
|
|
1602
|
-
type DescriptionsProps = Props$
|
|
1603
|
-
declare const Descriptions: react.ForwardRefExoticComponent<Props$
|
|
1699
|
+
type NativeAttrs$9 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$8 | 'children'>;
|
|
1700
|
+
type DescriptionsProps = Props$8 & NativeAttrs$9;
|
|
1701
|
+
declare const Descriptions: react.ForwardRefExoticComponent<Props$8 & NativeAttrs$9 & react.RefAttributes<HTMLDivElement>>;
|
|
1604
1702
|
|
|
1605
1703
|
interface DescriptionsContextValue {
|
|
1606
1704
|
mq: ContainerMediaQuery;
|
|
@@ -1613,9 +1711,9 @@ interface DescriptionsContextValue {
|
|
|
1613
1711
|
declare const DescriptionsContext: react.Context<DescriptionsContextValue | null>;
|
|
1614
1712
|
declare const useDescriptionsContext: () => DescriptionsContextValue;
|
|
1615
1713
|
|
|
1616
|
-
type NativeAttrs$
|
|
1617
|
-
type DescriptionTextProps = NativeAttrs$
|
|
1618
|
-
declare const DescriptionText: react.ForwardRefExoticComponent<NativeAttrs$
|
|
1714
|
+
type NativeAttrs$8 = React.HTMLAttributes<HTMLDivElement>;
|
|
1715
|
+
type DescriptionTextProps = NativeAttrs$8;
|
|
1716
|
+
declare const DescriptionText: react.ForwardRefExoticComponent<NativeAttrs$8 & react.RefAttributes<HTMLDivElement>>;
|
|
1619
1717
|
|
|
1620
1718
|
declare function reactNodeToText(node: React.ReactNode): string;
|
|
1621
1719
|
|
|
@@ -1635,14 +1733,14 @@ interface ResponsiveProps$2 {
|
|
|
1635
1733
|
justifyContent?: Responsive<React.CSSProperties['justifyContent']>;
|
|
1636
1734
|
alignItems?: Responsive<React.CSSProperties['alignItems']>;
|
|
1637
1735
|
}
|
|
1638
|
-
type Props$
|
|
1736
|
+
type Props$7 = {
|
|
1639
1737
|
as?: React.ElementType;
|
|
1640
1738
|
} & ResponsiveProps$2;
|
|
1641
|
-
type NativeAttrs$
|
|
1642
|
-
type GridItemProps = Props$
|
|
1739
|
+
type NativeAttrs$7 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$7>;
|
|
1740
|
+
type GridItemProps = Props$7 & NativeAttrs$7;
|
|
1643
1741
|
declare const GridItem: react.ForwardRefExoticComponent<{
|
|
1644
1742
|
as?: React.ElementType;
|
|
1645
|
-
} & ResponsiveProps$2 & NativeAttrs$
|
|
1743
|
+
} & ResponsiveProps$2 & NativeAttrs$7 & react.RefAttributes<HTMLDivElement>>;
|
|
1646
1744
|
|
|
1647
1745
|
interface ResponsiveProps$1 {
|
|
1648
1746
|
cols?: Responsive<number>;
|
|
@@ -1660,14 +1758,14 @@ interface ResponsiveProps$1 {
|
|
|
1660
1758
|
justifyContent?: Responsive<React.CSSProperties['justifyContent']>;
|
|
1661
1759
|
alignItems?: Responsive<React.CSSProperties['alignItems']>;
|
|
1662
1760
|
}
|
|
1663
|
-
type Props$
|
|
1761
|
+
type Props$6 = {
|
|
1664
1762
|
items?: GridItemProps[];
|
|
1665
1763
|
} & ResponsiveProps$1;
|
|
1666
|
-
type NativeAttrs$
|
|
1667
|
-
type GridSubProps = Props$
|
|
1764
|
+
type NativeAttrs$6 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$6>;
|
|
1765
|
+
type GridSubProps = Props$6 & NativeAttrs$6;
|
|
1668
1766
|
declare const GridSub: react.ForwardRefExoticComponent<{
|
|
1669
1767
|
items?: GridItemProps[];
|
|
1670
|
-
} & ResponsiveProps$1 & NativeAttrs$
|
|
1768
|
+
} & ResponsiveProps$1 & NativeAttrs$6 & react.RefAttributes<HTMLDivElement>>;
|
|
1671
1769
|
|
|
1672
1770
|
type GridMode = 'container' | 'screen' | 'css';
|
|
1673
1771
|
|
|
@@ -1689,16 +1787,16 @@ interface ResponsiveProps {
|
|
|
1689
1787
|
wrapper?: React.HTMLAttributes<HTMLDivElement>;
|
|
1690
1788
|
};
|
|
1691
1789
|
}
|
|
1692
|
-
type Props$
|
|
1790
|
+
type Props$5 = {
|
|
1693
1791
|
mode?: GridMode;
|
|
1694
1792
|
items?: (GridItemProps | GridSubProps)[];
|
|
1695
1793
|
} & ResponsiveProps;
|
|
1696
|
-
type NativeAttrs$
|
|
1697
|
-
type GridProps = Props$
|
|
1794
|
+
type NativeAttrs$5 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$5>;
|
|
1795
|
+
type GridProps = Props$5 & NativeAttrs$5;
|
|
1698
1796
|
declare const Grid: react.ForwardRefExoticComponent<{
|
|
1699
1797
|
mode?: GridMode;
|
|
1700
1798
|
items?: (GridItemProps | GridSubProps)[];
|
|
1701
|
-
} & ResponsiveProps & NativeAttrs$
|
|
1799
|
+
} & ResponsiveProps & NativeAttrs$5 & react.RefAttributes<HTMLDivElement>>;
|
|
1702
1800
|
|
|
1703
1801
|
interface GridContextValue {
|
|
1704
1802
|
mq: ContainerMediaQuery;
|
|
@@ -1718,7 +1816,7 @@ declare const Html: React.FC<HtmlProps>;
|
|
|
1718
1816
|
|
|
1719
1817
|
type StepColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger';
|
|
1720
1818
|
|
|
1721
|
-
interface Props$
|
|
1819
|
+
interface Props$4 {
|
|
1722
1820
|
value?: string | number | symbol;
|
|
1723
1821
|
title: React.ReactNode;
|
|
1724
1822
|
subtitle: React.ReactNode;
|
|
@@ -1726,18 +1824,18 @@ interface Props$3 {
|
|
|
1726
1824
|
color?: StepColor;
|
|
1727
1825
|
disabled?: boolean;
|
|
1728
1826
|
}
|
|
1729
|
-
type NativeAttrs$
|
|
1730
|
-
type StepProps = Props$
|
|
1827
|
+
type NativeAttrs$4 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$4>;
|
|
1828
|
+
type StepProps = Props$4 & NativeAttrs$4;
|
|
1731
1829
|
declare const Step: React.FC<StepProps>;
|
|
1732
1830
|
|
|
1733
|
-
interface Props$
|
|
1831
|
+
interface Props$3 {
|
|
1734
1832
|
direction?: 'horizontal' | 'vertical';
|
|
1735
1833
|
value?: number | string | symbol;
|
|
1736
1834
|
color?: StepColor;
|
|
1737
1835
|
markPreviousAsChecked?: boolean;
|
|
1738
1836
|
}
|
|
1739
|
-
type NativeAttrs$
|
|
1740
|
-
type StepsProps = Props$
|
|
1837
|
+
type NativeAttrs$3 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$3>;
|
|
1838
|
+
type StepsProps = Props$3 & NativeAttrs$3;
|
|
1741
1839
|
declare const Steps: React.FC<StepsProps>;
|
|
1742
1840
|
|
|
1743
1841
|
interface StepsContextValue {
|
|
@@ -1765,19 +1863,22 @@ interface TreeItemValue {
|
|
|
1765
1863
|
}
|
|
1766
1864
|
interface TreeItemBase {
|
|
1767
1865
|
value: string;
|
|
1866
|
+
icon?: React.ReactNode;
|
|
1768
1867
|
items?: TreeItemBase[];
|
|
1769
1868
|
}
|
|
1770
1869
|
interface TreeItemData {
|
|
1771
1870
|
value: string;
|
|
1772
1871
|
parents: string[];
|
|
1872
|
+
levelRaw: number;
|
|
1873
|
+
levelAlignment: number;
|
|
1773
1874
|
}
|
|
1774
1875
|
|
|
1775
|
-
interface Props$
|
|
1876
|
+
interface Props$2 extends TreeItemBase {
|
|
1776
1877
|
title: string;
|
|
1777
|
-
items?: Props$
|
|
1878
|
+
items?: Props$2[];
|
|
1778
1879
|
}
|
|
1779
|
-
type NativeAttrs$
|
|
1780
|
-
type TreeItemProps = Props$
|
|
1880
|
+
type NativeAttrs$2 = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props$2 | 'items'>;
|
|
1881
|
+
type TreeItemProps = Props$2 & NativeAttrs$2;
|
|
1781
1882
|
declare const TreeItem: (props: TreeItemProps) => react_jsx_runtime.JSX.Element;
|
|
1782
1883
|
|
|
1783
1884
|
interface TreeProps$1 {
|
|
@@ -1801,6 +1902,7 @@ declare const TreeContext: react.Context<TreeContextValue>;
|
|
|
1801
1902
|
interface TreeProps {
|
|
1802
1903
|
items?: TreeItemBase[];
|
|
1803
1904
|
value?: TreeItemValue[];
|
|
1905
|
+
checkable?: boolean;
|
|
1804
1906
|
onChange?: (value: TreeItemValue[]) => void;
|
|
1805
1907
|
onSelect?: (value: string) => void;
|
|
1806
1908
|
onUnselect?: (value: string) => void;
|
|
@@ -1816,9 +1918,22 @@ declare function useTree(props: TreeProps): {
|
|
|
1816
1918
|
};
|
|
1817
1919
|
|
|
1818
1920
|
declare function initializeTreeValues(items: TreeItemData[]): TreeItemValue[];
|
|
1819
|
-
declare function flattenTree(tree: TreeItemBase[], parents?: string[]
|
|
1921
|
+
declare function flattenTree(tree: TreeItemBase[], parents?: string[], levelRaw?: number, levelAlignment?: number, parentIndicators?: {
|
|
1922
|
+
icon: boolean;
|
|
1923
|
+
chevron: boolean;
|
|
1924
|
+
}, checkable?: boolean): TreeItemData[];
|
|
1820
1925
|
declare function updateTreeValues(values: TreeItemValue[], value: string, action: 'select' | 'unselect' | 'check' | 'uncheck', items: TreeItemData[]): TreeItemValue[];
|
|
1821
1926
|
|
|
1927
|
+
interface DropdownProps {
|
|
1928
|
+
isOpen?: boolean;
|
|
1929
|
+
onOpen?: () => void;
|
|
1930
|
+
onClose?: () => void;
|
|
1931
|
+
children: ((options: {
|
|
1932
|
+
isOpen: boolean;
|
|
1933
|
+
}) => React.ReactNode) | React.ReactNode;
|
|
1934
|
+
}
|
|
1935
|
+
declare const Dropdown: (props: DropdownProps) => react_jsx_runtime.JSX.Element;
|
|
1936
|
+
|
|
1822
1937
|
interface DropdownContentProps {
|
|
1823
1938
|
children: React.ReactNode;
|
|
1824
1939
|
}
|
|
@@ -1848,10 +1963,10 @@ interface DropdownContextValue {
|
|
|
1848
1963
|
declare const DropdownContext: react.Context<DropdownContextValue | null>;
|
|
1849
1964
|
declare const useDropdownContext: () => DropdownContextValue;
|
|
1850
1965
|
|
|
1851
|
-
interface Props {
|
|
1966
|
+
interface Props$1 {
|
|
1852
1967
|
}
|
|
1853
|
-
type NativeAttrs = Omit<ListItemProps, keyof Props>;
|
|
1854
|
-
type DropdownItemProps = Props & NativeAttrs;
|
|
1968
|
+
type NativeAttrs$1 = Omit<ListItemProps, keyof Props$1>;
|
|
1969
|
+
type DropdownItemProps = Props$1 & NativeAttrs$1;
|
|
1855
1970
|
declare const DropdownItem: (props: DropdownItemProps) => react_jsx_runtime.JSX.Element;
|
|
1856
1971
|
|
|
1857
1972
|
interface DropdownTriggerProps {
|
|
@@ -1859,27 +1974,88 @@ interface DropdownTriggerProps {
|
|
|
1859
1974
|
}
|
|
1860
1975
|
declare const DropdownTrigger: (props: DropdownTriggerProps) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
|
|
1861
1976
|
|
|
1862
|
-
|
|
1977
|
+
interface ListTreeItemIndentationProps {
|
|
1978
|
+
level: number;
|
|
1979
|
+
}
|
|
1980
|
+
declare const INDENT_SIZE = 18;
|
|
1981
|
+
declare const ListTreeItemIndentation: ({ level }: ListTreeItemIndentationProps) => react_jsx_runtime.JSX.Element;
|
|
1982
|
+
interface Props extends TreeItemBase {
|
|
1983
|
+
icon?: React.ReactNode;
|
|
1984
|
+
}
|
|
1985
|
+
type NativeAttrs = Omit<ListItemProps, keyof Props | 'items' | 'startContent'>;
|
|
1986
|
+
type ListTreeItemProps = Props & NativeAttrs & {
|
|
1987
|
+
items?: ListTreeItemProps[];
|
|
1988
|
+
};
|
|
1989
|
+
declare const ListTreeItem: (props: ListTreeItemProps) => react_jsx_runtime.JSX.Element;
|
|
1863
1990
|
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1991
|
+
interface ListTreeProps {
|
|
1992
|
+
items?: ListTreeItemProps[];
|
|
1993
|
+
value?: TreeItemValue[];
|
|
1994
|
+
selectable?: boolean;
|
|
1995
|
+
checkable?: boolean;
|
|
1996
|
+
onChange?: (value: TreeItemValue[]) => void;
|
|
1997
|
+
onSelect?: (value: string) => void;
|
|
1998
|
+
onUnselect?: (value: string) => void;
|
|
1999
|
+
}
|
|
2000
|
+
declare const ListTree: (props: ListTreeProps) => react_jsx_runtime.JSX.Element;
|
|
1868
2001
|
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
2002
|
+
interface ListTreeContextValue {
|
|
2003
|
+
selectable: boolean;
|
|
2004
|
+
checkable: boolean;
|
|
2005
|
+
}
|
|
2006
|
+
declare const ListTreeContext: react.Context<ListTreeContextValue>;
|
|
1872
2007
|
|
|
1873
|
-
declare
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
declare
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
2008
|
+
declare const DraggableTrigger: ({ children }: {
|
|
2009
|
+
children: react__default.ReactNode;
|
|
2010
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2011
|
+
type DraggableContentProps = react__default.HTMLAttributes<HTMLDivElement>;
|
|
2012
|
+
declare const DraggableContent: (props: DraggableContentProps) => react_jsx_runtime.JSX.Element;
|
|
2013
|
+
type DraggableContent = react__default.HTMLAttributes<HTMLDivElement> & {
|
|
2014
|
+
bounces?: 'screen' | 'scroll';
|
|
2015
|
+
placement?: 'center';
|
|
2016
|
+
children: react__default.ReactNode;
|
|
2017
|
+
};
|
|
2018
|
+
declare const Draggable: ({ bounces: bouncesProp, placement, ...props }: DraggableContent) => react_jsx_runtime.JSX.Element;
|
|
1881
2019
|
|
|
1882
|
-
|
|
1883
|
-
|
|
2020
|
+
interface UploadFileData {
|
|
2021
|
+
id: string;
|
|
2022
|
+
name: string;
|
|
2023
|
+
size: number;
|
|
2024
|
+
file: File;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
interface UploadFileProps {
|
|
2028
|
+
data: UploadFileData[];
|
|
2029
|
+
readOnly?: boolean;
|
|
2030
|
+
accept?: string;
|
|
2031
|
+
max?: number;
|
|
2032
|
+
multiple?: boolean;
|
|
2033
|
+
disabled?: boolean;
|
|
2034
|
+
onChange: (value: UploadFileData[]) => void;
|
|
2035
|
+
}
|
|
2036
|
+
declare const UploadFiles: ({ data, max, readOnly, disabled, accept, multiple, onChange }: UploadFileProps) => react_jsx_runtime.JSX.Element;
|
|
2037
|
+
|
|
2038
|
+
type WindowMeta = {
|
|
2039
|
+
id: string;
|
|
2040
|
+
title: string;
|
|
2041
|
+
content?: react__default.ReactNode;
|
|
2042
|
+
x?: number;
|
|
2043
|
+
y?: number;
|
|
2044
|
+
width?: number;
|
|
2045
|
+
height?: number;
|
|
2046
|
+
minimized?: boolean;
|
|
2047
|
+
maximized?: boolean;
|
|
2048
|
+
closed?: boolean;
|
|
2049
|
+
};
|
|
2050
|
+
type DesktopWindowSystemProps = {
|
|
2051
|
+
windows: WindowMeta[];
|
|
2052
|
+
onChange: (windows: WindowMeta[]) => void;
|
|
2053
|
+
parentRef?: react__default.RefObject<HTMLDivElement>;
|
|
2054
|
+
children: react__default.ReactNode | ((options: {
|
|
2055
|
+
content: react__default.ReactNode;
|
|
2056
|
+
taskbar: react__default.ReactNode;
|
|
2057
|
+
}) => react__default.ReactNode);
|
|
2058
|
+
};
|
|
2059
|
+
declare function WindowManager({ parentRef: externalParentRef, windows, onChange, children }: DesktopWindowSystemProps): react_jsx_runtime.JSX.Element;
|
|
1884
2060
|
|
|
1885
|
-
export { Accordion, type AccordionArrow, AccordionBody, type AccordionBodyProps, type AccordionColor, AccordionContent, type AccordionContentProps, AccordionContext, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Autocomplete, type AutocompleteClearable, AutocompleteContext, type AutocompleteContextValue, type AutocompleteMultiple, type AutocompleteProps, Backdrop, type BackdropPlacement, type BackdropProps, type BackdropVariant, Badge, type BadgeProps, Button, type ButtonColor, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupDirection, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, CardSubtitle, type CardSubtitleProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxColor, CheckboxGroup, type CheckboxGroupAlignment, CheckboxGroupContext, type CheckboxGroupContextValue, type CheckboxGroupDirection, type CheckboxGroupProps, type CheckboxLabelPlacement, type CheckboxProps, type CheckboxSize, type CheckboxValue, Chip, type ChipProps, Collapse, CollapseContent, type CollapseContentProps, CollapseContext, type CollapseContextValue, type CollapseProps, CollapseTrigger, type CollapseTriggerProps, type ColorScheme, type ContainerBreakpoints, ContainerMediaQuery, DataList, type DataListItem, type DataListKeyField, type DataListMultipleProps, type DataListProps, type DataListSingleProps, Description, DescriptionEmpty, type DescriptionEmptyProps, type DescriptionProps, DescriptionText, type DescriptionTextProps, Descriptions, type DescriptionsAlign, DescriptionsContext, type DescriptionsContextValue, type DescriptionsLayout, type DescriptionsMode, type DescriptionsProps, type DescriptionsSize, type Disclosure, Divider, type DividerProps, Drawer, type DrawerBackdrop, DrawerBody, type DrawerBodyProps, type DrawerClose, DrawerContext, type DrawerContextValue, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerPlacement, type DrawerPosition, type DrawerProps, type DrawerSize, DropdownContent, type DropdownContentProps, DropdownContext, type DropdownContextValue, DropdownItem, type DropdownItemProps, DropdownTrigger, type DropdownTriggerProps, Field, type FieldProps, type FormatBooleanOptions, type FormatCurrencyOptions, type FormatDateOptions, type FormatNumberOptions, type FormatOptions, type FormatPercentOptions, type FormatStringOptions, Grid, GridContext, type GridContextValue, GridItem, type GridItemProps, type GridMode, type GridProps, GridSub, type GridSubProps, Html, type HtmlProps, Icon, type IconColor, type IconProps, type IconSize, Iframe, type IframeProps, type InfiniteData, type InfiniteQueryFunction, type InfiniteQueryOptions, type InfiniteQueryRefetchOptions, type InputColor, InputGroup, type InputGroupProps, type InputSize, type InputVariant, List, ListGroup, type ListGroupProps, ListItem, type ListItemProps, type ListProps, type ListSize, ListSubheader, type ListSubheaderProps, type MediaQuery, Menu, MenuContext, type MenuContextValue, MenuGroup, type MenuGroupItemType, type MenuGroupProps, MenuItem, type MenuItemProps, type MenuItemType, type MenuProps, MenuSubmenu, type MenuSubmenuProps, MenuValueContext, Modal, type ModalBackdrop, ModalBody, type ModalBodyProps, type ModalClose, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalPlacement, type ModalProps, type ModalScrollBehavior, type ModalSize, type MutationError, type MutationFunction, type MutationOK, type MutationResult, MutationStatus, NavRail, NavRailItem, type NavRailItemProps, type NavRailPlacement, type NavRailProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type QueryFunction, QueryStatus, Radio, type RadioColor, RadioGroup, type RadioGroupAlignment, RadioGroupContext, type RadioGroupContextValue, type RadioGroupDirection, type RadioGroupProps, type RadioLabelPlacement, type RadioProps, type RadioSize, type RadioValue, type ReactRef, type Resize, type Responsive, Result, type ResultProps, type ResultStatus, type ScrollAlignment, ScrollArea, type ScrollAreaProps, type ScrollBehavior, type ScrollToOptions, Select, type SelectClearable, SelectContext, type SelectContextValue, type SelectMultiple, type SelectProps, type SelectionItem, type SelectionOnChange, type SelectionProps, type SelectionValue, Step, type StepColor, type StepProps, Steps, StepsContext, type StepsContextValue, type StepsProps, Swipe, SwipeItem, type SwipeItemProps, type SwipeProps, Switch, type SwitchColor, type SwitchLabelPlacement, type SwitchProps, type SwitchSize, Tab, type TabProps, Tabs, type TabsAlignment, type TabsProps, type TabsVariant, TextInput, type TextInputProps, Toolbar, type ToolbarProps, type ToolbarSize, Transition, type TransitionProps, Tree, TreeContext, type TreeContextValue, TreeItem, type TreeItemBase, type TreeItemData, type TreeItemProps, type TreeItemValue, type TreeProps$1 as TreeProps, type UseContainerMediaQueryOptions, type UseInfiniteQueryOptions, type UseInfiniteQueryResult, type UseMutationOptions, type UseMutationResult, type UseQueryOptions, type UseQueryResult, type UseResizeObserverOptions, type VirtualItem, type Virtualizer, type VirtualizerOptions, assignRef, breakpointsMap, clsx,
|
|
2061
|
+
export { Accordion, type AccordionArrow, AccordionBody, type AccordionBodyProps, type AccordionColor, AccordionContent, type AccordionContentProps, AccordionContext, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Autocomplete, type AutocompleteClearable, AutocompleteContext, type AutocompleteContextValue, type AutocompleteMultiple, type AutocompleteProps, Backdrop, type BackdropPlacement, type BackdropProps, type BackdropVariant, Badge, type BadgeProps, Button, type ButtonColor, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupDirection, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, CardSubtitle, type CardSubtitleProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxColor, CheckboxGroup, type CheckboxGroupAlignment, CheckboxGroupContext, type CheckboxGroupContextValue, type CheckboxGroupDirection, type CheckboxGroupProps, type CheckboxLabelPlacement, type CheckboxProps, type CheckboxSize, type CheckboxValue, Chip, type ChipProps, Collapse, CollapseContent, type CollapseContentProps, CollapseContext, type CollapseContextValue, type CollapseProps, CollapseTrigger, type CollapseTriggerProps, type ColorScheme, type ContainerBreakpoints, ContainerMediaQuery, DataList, type DataListItem, type DataListKeyField, type DataListMultipleProps, type DataListProps, type DataListSingleProps, Description, DescriptionEmpty, type DescriptionEmptyProps, type DescriptionProps, DescriptionText, type DescriptionTextProps, Descriptions, type DescriptionsAlign, DescriptionsContext, type DescriptionsContextValue, type DescriptionsLayout, type DescriptionsMode, type DescriptionsProps, type DescriptionsSize, type Disclosure, Divider, type DividerProps, Draggable, DraggableContent, type DraggableContentProps, DraggableTrigger, Drawer, type DrawerBackdrop, DrawerBody, type DrawerBodyProps, type DrawerClose, DrawerContext, type DrawerContextValue, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerPlacement, type DrawerPosition, type DrawerProps, type DrawerSize, Dropdown, DropdownContent, type DropdownContentProps, DropdownContext, type DropdownContextValue, DropdownItem, type DropdownItemProps, type DropdownProps, DropdownTrigger, type DropdownTriggerProps, Field, type FieldProps, type FormatBooleanOptions, type FormatCurrencyOptions, type FormatDateOptions, type FormatFileSizeOptions, type FormatNumberOptions, type FormatOptions, type FormatPercentOptions, type FormatStringOptions, Grid, GridContext, type GridContextValue, GridItem, type GridItemProps, type GridMode, type GridProps, GridSub, type GridSubProps, Html, type HtmlProps, INDENT_SIZE, Icon, type IconColor, type IconProps, type IconSize, Iframe, type IframeProps, type InfiniteData, type InfiniteQueryFunction, type InfiniteQueryOptions, type InfiniteQueryRefetchOptions, type InputColor, InputGroup, type InputGroupProps, type InputSize, type InputVariant, List, ListGroup, type ListGroupProps, ListItem, type ListItemProps, type ListProps, type ListSize, ListSubheader, type ListSubheaderProps, ListTree, ListTreeContext, type ListTreeContextValue, ListTreeItem, ListTreeItemIndentation, type ListTreeItemProps, type ListTreeProps, type MediaQuery, Menu, MenuContext, type MenuContextValue, MenuGroup, type MenuGroupItemType, type MenuGroupProps, MenuItem, type MenuItemProps, type MenuItemType, type MenuProps, MenuSubmenu, type MenuSubmenuProps, MenuValueContext, Modal, type ModalBackdrop, ModalBody, type ModalBodyProps, type ModalClose, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalPlacement, type ModalProps, type ModalScrollBehavior, type ModalSize, type MutationError, type MutationFunction, type MutationOK, type MutationResult, MutationStatus, NavRail, NavRailItem, type NavRailItemProps, type NavRailPlacement, type NavRailProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type QueryFunction, QueryStatus, Radio, type RadioColor, RadioGroup, type RadioGroupAlignment, RadioGroupContext, type RadioGroupContextValue, type RadioGroupDirection, type RadioGroupProps, type RadioLabelPlacement, type RadioProps, type RadioSize, type RadioValue, type ReactRef, type Resize, type Responsive, Result, type ResultProps, type ResultStatus, STRING_RULES, type ScrollAlignment, ScrollArea, type ScrollAreaProps, type ScrollBehavior, type ScrollToOptions, Select, type SelectClearable, SelectContext, type SelectContextValue, type SelectMultiple, type SelectProps, type SelectionItem, type SelectionOnChange, type SelectionProps, type SelectionValue, Step, type StepColor, type StepProps, Steps, StepsContext, type StepsContextValue, type StepsProps, type StringRules, Swipe, SwipeItem, type SwipeItemProps, type SwipeProps, Switch, type SwitchColor, type SwitchLabelPlacement, type SwitchProps, type SwitchSize, Tab, type TabProps, Tabs, type TabsAlignment, type TabsProps, type TabsVariant, TextInput, type TextInputProps, Toolbar, type ToolbarProps, type ToolbarSize, Transition, type TransitionProps, Tree, TreeContext, type TreeContextValue, TreeItem, type TreeItemBase, type TreeItemData, type TreeItemProps, type TreeItemValue, type TreeProps$1 as TreeProps, type UploadFileData, type UploadFileProps, UploadFiles, type UseContainerMediaQueryOptions, type UseInfiniteQueryOptions, type UseInfiniteQueryResult, type UseMutationOptions, type UseMutationResult, type UseQueryOptions, type UseQueryResult, type UseResizeObserverOptions, type VirtualItem, type Virtualizer, type VirtualizerOptions, WindowManager, type WindowMeta, areArraysEqual, assignRef, breakpointsMap, clsx, containsPlainText, defaultBreakpoints, doesNotContainEmojis, flattenTree, format, formatCurrency, formatDate, formatDateTime, formatFileSize, formatPercent, formatShortDateTime, formatTime, generateId, getOpenValuesByPathname, hasResizeObserver, initializeTreeValues, isAlphanumeric, isEmpty, isEmptyString, isNumeric, mergeRefs, reactNodeToText, scrollToItem, toAlphaString, toAlphanumericString, toLocalDateString, toLocalDateTimeString, toNotEmojisString, toNumericString, toPlainTextString, toRulesString, updateTreeValues, useAccordion, useAccordionItem, useAutocomplete, useButtonGroup, useCheckboxGroup, useCollapse, useContainerMediaQuery, useDebounce, useDescriptionsContext, useDisclosure, useDrawer, useDropdownContext, useEffectEvent, useElementSize, useFormat, useGridContext, useInfiniteQuery, useLocalStorage, useMediaQuery, useMenu, useMenuItemValue, useModal, useMutation, useOnClickOutside, usePopover, usePrevious, useQuery, useRadioGroup, useResizeObserver, useSelect, useStep, useStepsContext, useTree, useValueEffect, useVirtualizer, validateRules, valueToValues, valuesToValue };
|