@gomeniucivan/ui 1.0.74 → 1.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +115 -92
- package/dist/index.d.ts +115 -92
- package/dist/index.js +309 -343
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +351 -385
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -2
package/dist/index.d.mts
CHANGED
|
@@ -40,7 +40,6 @@ import * as _base_ui_react_select from '@base-ui/react/select';
|
|
|
40
40
|
import { Select as Select$1 } from '@base-ui/react/select';
|
|
41
41
|
import { Components, Options } from 'react-markdown';
|
|
42
42
|
import { Pluggable } from 'unified';
|
|
43
|
-
import { MermaidConfig } from 'mermaid';
|
|
44
43
|
import { Node } from 'unist';
|
|
45
44
|
import { Root } from 'hast';
|
|
46
45
|
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
@@ -578,12 +577,12 @@ declare const Tooltip: FC<TooltipProps>;
|
|
|
578
577
|
|
|
579
578
|
declare const TooltipGroup: FC<TooltipGroupProps>;
|
|
580
579
|
|
|
581
|
-
interface
|
|
580
|
+
interface ButtonIconSizeConfig extends IconSizeConfig {
|
|
582
581
|
blockSize?: number | string;
|
|
583
582
|
borderRadius?: number | string;
|
|
584
583
|
}
|
|
585
|
-
type
|
|
586
|
-
interface
|
|
584
|
+
type ButtonIconSize = number | IconSizeType | ButtonIconSizeConfig;
|
|
585
|
+
interface ButtonIconProps extends Partial<LucideIconProps>, Omit<FlexProps, 'title' | 'children'> {
|
|
587
586
|
active?: boolean;
|
|
588
587
|
cy?: string;
|
|
589
588
|
danger?: boolean;
|
|
@@ -593,14 +592,14 @@ interface ActionIconProps extends Partial<LucideIconProps>, Omit<FlexProps, 'tit
|
|
|
593
592
|
loading?: boolean;
|
|
594
593
|
ref?: Ref<HTMLDivElement>;
|
|
595
594
|
shadow?: boolean;
|
|
596
|
-
size?:
|
|
595
|
+
size?: ButtonIconSize;
|
|
597
596
|
spin?: boolean;
|
|
598
597
|
title?: TooltipProps['title'];
|
|
599
598
|
tooltipProps?: Omit<TooltipProps, 'children' | 'title'>;
|
|
600
599
|
variant?: 'borderless' | 'filled' | 'outlined';
|
|
601
600
|
}
|
|
602
601
|
|
|
603
|
-
declare const
|
|
602
|
+
declare const ButtonIcon: react.NamedExoticComponent<ButtonIconProps>;
|
|
604
603
|
|
|
605
604
|
/**
|
|
606
605
|
* Checkbox menu item shared by DropdownMenu / ContextMenu.
|
|
@@ -739,7 +738,7 @@ interface DropdownMenuProps<Payload = unknown> extends Omit<MenuRootProps<Payloa
|
|
|
739
738
|
triggerProps?: Omit<MenuTriggerProps<Payload>, 'children'>;
|
|
740
739
|
}
|
|
741
740
|
|
|
742
|
-
declare const DROPDOWN_MENU_CONTAINER_ATTR = "data-
|
|
741
|
+
declare const DROPDOWN_MENU_CONTAINER_ATTR = "data-dropdown-menu-container";
|
|
743
742
|
declare const DropdownMenuRoot: typeof Menu$1.Root;
|
|
744
743
|
declare const DropdownMenuSubmenuRoot: typeof Menu$1.SubmenuRoot;
|
|
745
744
|
declare const DropdownMenuCheckboxItemIndicator: react__default.ForwardRefExoticComponent<_base_ui_react_menu.MenuCheckboxItemIndicatorProps & react__default.RefAttributes<HTMLSpanElement>>;
|
|
@@ -833,22 +832,22 @@ declare const DropdownMenuSubmenuArrow: {
|
|
|
833
832
|
|
|
834
833
|
declare const DropdownMenu: react.NamedExoticComponent<DropdownMenuProps<unknown>>;
|
|
835
834
|
|
|
836
|
-
type
|
|
837
|
-
interface
|
|
835
|
+
type ButtonIconGroupEvent = Pick<MenuInfo, 'key' | 'keyPath' | 'domEvent'>;
|
|
836
|
+
interface ButtonIconGroupProps extends Omit<FlexProps, 'children'> {
|
|
838
837
|
cy?: string;
|
|
839
|
-
actionIconProps?: Partial<Omit<
|
|
838
|
+
actionIconProps?: Partial<Omit<ButtonIconProps, 'icon' | 'size' | 'ref'>>;
|
|
840
839
|
disabled?: boolean;
|
|
841
840
|
glass?: boolean;
|
|
842
841
|
items?: MenuItemType[];
|
|
843
842
|
menu?: DropdownMenuProps['items'];
|
|
844
|
-
onActionClick?: (action:
|
|
843
|
+
onActionClick?: (action: ButtonIconGroupEvent) => void;
|
|
845
844
|
ref?: Ref<HTMLDivElement>;
|
|
846
845
|
shadow?: boolean;
|
|
847
|
-
size?:
|
|
846
|
+
size?: ButtonIconProps['size'];
|
|
848
847
|
variant?: 'filled' | 'outlined' | 'borderless';
|
|
849
848
|
}
|
|
850
849
|
|
|
851
|
-
declare const
|
|
850
|
+
declare const ButtonIconGroup: FC<ButtonIconGroupProps>;
|
|
852
851
|
|
|
853
852
|
type AlertClassNames = NonNullable<AlertProps$1['classNames']>;
|
|
854
853
|
type AlertStyles = NonNullable<AlertProps$1['styles']>;
|
|
@@ -944,7 +943,7 @@ interface BurgerProps {
|
|
|
944
943
|
drawerProps?: Partial<Omit<DrawerProps$1, 'items' | 'opened' | 'setOpened'>>;
|
|
945
944
|
fullscreen?: boolean;
|
|
946
945
|
headerHeight?: number;
|
|
947
|
-
iconProps?: Partial<
|
|
946
|
+
iconProps?: Partial<ButtonIconProps>;
|
|
948
947
|
items: MenuProps$1['items'];
|
|
949
948
|
onClick?: MenuProps$1['onClick'];
|
|
950
949
|
openKeys?: MenuProps$1['openKeys'];
|
|
@@ -953,9 +952,9 @@ interface BurgerProps {
|
|
|
953
952
|
rootClassName?: string;
|
|
954
953
|
selectedKeys?: MenuProps$1['selectedKeys'];
|
|
955
954
|
setOpened: (state: boolean) => void;
|
|
956
|
-
size?:
|
|
955
|
+
size?: ButtonIconProps['size'];
|
|
957
956
|
style?: CSSProperties;
|
|
958
|
-
variant?:
|
|
957
|
+
variant?: ButtonIconProps['variant'];
|
|
959
958
|
}
|
|
960
959
|
|
|
961
960
|
declare const Burger: react.NamedExoticComponent<BurgerProps>;
|
|
@@ -974,15 +973,15 @@ declare const Button: FC<ButtonProps>;
|
|
|
974
973
|
interface CardFormProps extends Omit<FlexProps, 'title'> {
|
|
975
974
|
cy?: string;
|
|
976
975
|
actions?: ReactNode;
|
|
977
|
-
backButtonProps?: Omit<
|
|
978
|
-
backIcon?:
|
|
976
|
+
backButtonProps?: Omit<ButtonIconProps, 'icon' | 'onClick'>;
|
|
977
|
+
backIcon?: ButtonIconProps['icon'];
|
|
979
978
|
contentClassName?: string;
|
|
980
979
|
contentStyle?: CSSProperties;
|
|
981
980
|
continueButtonProps?: Omit<ButtonProps, 'children' | 'onClick'>;
|
|
982
981
|
continueText?: ReactNode;
|
|
983
982
|
headerClassName?: string;
|
|
984
983
|
headerStyle?: CSSProperties;
|
|
985
|
-
onBack?:
|
|
984
|
+
onBack?: ButtonIconProps['onClick'];
|
|
986
985
|
onSave?: ButtonProps['onClick'];
|
|
987
986
|
onSaveAndContinue?: ButtonProps['onClick'];
|
|
988
987
|
ref?: Ref<HTMLDivElement>;
|
|
@@ -997,6 +996,88 @@ interface CardFormProps extends Omit<FlexProps, 'title'> {
|
|
|
997
996
|
|
|
998
997
|
declare const CardForm: react.NamedExoticComponent<CardFormProps>;
|
|
999
998
|
|
|
999
|
+
interface CircleStepperTokens {
|
|
1000
|
+
/**
|
|
1001
|
+
* @description Active/completed segment color — use a token value (e.g. `token.colorText`)
|
|
1002
|
+
*/
|
|
1003
|
+
colorFilled: string;
|
|
1004
|
+
/**
|
|
1005
|
+
* @description Inactive segment color — use a token value (e.g. `token.colorBorder`)
|
|
1006
|
+
*/
|
|
1007
|
+
colorEmpty: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* @description Center label text color — use a token value (e.g. `token.colorText`)
|
|
1010
|
+
*/
|
|
1011
|
+
colorText: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* @description Canvas diameter in px
|
|
1014
|
+
* @default 120
|
|
1015
|
+
*/
|
|
1016
|
+
size: number;
|
|
1017
|
+
/**
|
|
1018
|
+
* @description Orbit radius of the arc segments
|
|
1019
|
+
* @default 48
|
|
1020
|
+
*/
|
|
1021
|
+
trackRadius: number;
|
|
1022
|
+
/**
|
|
1023
|
+
* @description Thickness of each segment
|
|
1024
|
+
* @default 7
|
|
1025
|
+
*/
|
|
1026
|
+
lineWidth: number;
|
|
1027
|
+
/**
|
|
1028
|
+
* @description Gap between segments in radians
|
|
1029
|
+
* @default 0.22
|
|
1030
|
+
*/
|
|
1031
|
+
gap: number;
|
|
1032
|
+
/**
|
|
1033
|
+
* @description Font weight for center label
|
|
1034
|
+
* @default 500
|
|
1035
|
+
*/
|
|
1036
|
+
fontWeight: number;
|
|
1037
|
+
/**
|
|
1038
|
+
* @description Font size for center label in px
|
|
1039
|
+
* @default 13
|
|
1040
|
+
*/
|
|
1041
|
+
fontSize: number;
|
|
1042
|
+
/**
|
|
1043
|
+
* @description Font family for center label
|
|
1044
|
+
* @default 'sans-serif'
|
|
1045
|
+
*/
|
|
1046
|
+
fontFamily: string;
|
|
1047
|
+
}
|
|
1048
|
+
interface CircleStepperProps {
|
|
1049
|
+
/**
|
|
1050
|
+
* @description Current completed step (1-based)
|
|
1051
|
+
*/
|
|
1052
|
+
current: number;
|
|
1053
|
+
/**
|
|
1054
|
+
* @description Total number of steps
|
|
1055
|
+
*/
|
|
1056
|
+
total: number;
|
|
1057
|
+
/**
|
|
1058
|
+
* @description Custom token overrides for visual aspects
|
|
1059
|
+
*/
|
|
1060
|
+
tokens?: Partial<CircleStepperTokens>;
|
|
1061
|
+
/**
|
|
1062
|
+
* @description Additional CSS class
|
|
1063
|
+
*/
|
|
1064
|
+
className?: string;
|
|
1065
|
+
/**
|
|
1066
|
+
* @description Additional inline styles
|
|
1067
|
+
*/
|
|
1068
|
+
style?: CSSProperties;
|
|
1069
|
+
/**
|
|
1070
|
+
* @description Data attribute for testing
|
|
1071
|
+
*/
|
|
1072
|
+
cy?: string;
|
|
1073
|
+
/**
|
|
1074
|
+
* @description Ref forwarded to the canvas element
|
|
1075
|
+
*/
|
|
1076
|
+
ref?: Ref<HTMLCanvasElement>;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
declare const CircleStepper: react.NamedExoticComponent<CircleStepperProps>;
|
|
1080
|
+
|
|
1000
1081
|
interface TextProps extends DivProps {
|
|
1001
1082
|
cy?: string;
|
|
1002
1083
|
align?: 'left' | 'center' | 'right';
|
|
@@ -1456,12 +1537,12 @@ declare const showContextMenu: (items: ContextMenuItem[], options?: ShowContextM
|
|
|
1456
1537
|
declare const updateContextMenuItems: (items: ContextMenuItem[]) => void;
|
|
1457
1538
|
declare const closeContextMenu: () => void;
|
|
1458
1539
|
|
|
1459
|
-
interface
|
|
1540
|
+
interface ButtonCopyProps extends Omit<ButtonIconProps, 'content'> {
|
|
1460
1541
|
cy?: string;
|
|
1461
1542
|
content: string | (() => string);
|
|
1462
1543
|
}
|
|
1463
1544
|
|
|
1464
|
-
declare const
|
|
1545
|
+
declare const ButtonCopy: react.NamedExoticComponent<ButtonCopyProps>;
|
|
1465
1546
|
|
|
1466
1547
|
type ConfirmationModalType = 'danger' | 'info' | 'warning' | 'error';
|
|
1467
1548
|
type ConfirmationModalProps = Omit<ModalFuncProps, 'type' | 'okType'> & {
|
|
@@ -1503,7 +1584,7 @@ interface DatePickerProps extends DatePickerProps$1 {
|
|
|
1503
1584
|
|
|
1504
1585
|
declare const DatePicker: react.NamedExoticComponent<DatePickerProps>;
|
|
1505
1586
|
|
|
1506
|
-
interface DownloadButtonProps extends
|
|
1587
|
+
interface DownloadButtonProps extends ButtonIconProps {
|
|
1507
1588
|
cy?: string;
|
|
1508
1589
|
blobUrl?: string;
|
|
1509
1590
|
fileName?: string;
|
|
@@ -1898,7 +1979,7 @@ interface DrawerProps extends Omit<DrawerProps$1, 'styles' | 'classNames'> {
|
|
|
1898
1979
|
sidebarContent?: string;
|
|
1899
1980
|
title?: string;
|
|
1900
1981
|
};
|
|
1901
|
-
closeIconProps?:
|
|
1982
|
+
closeIconProps?: ButtonIconProps;
|
|
1902
1983
|
containerMaxWidth?: number | string;
|
|
1903
1984
|
footer?: ReactNode;
|
|
1904
1985
|
noHeader?: boolean;
|
|
@@ -1947,7 +2028,7 @@ interface ControlInputProps extends Omit<InputProps, 'onChange' | 'value' | 'onA
|
|
|
1947
2028
|
onChange?: (value: string) => void;
|
|
1948
2029
|
onChangeEnd?: (value: string) => void;
|
|
1949
2030
|
onValueChanging?: (value: string) => void;
|
|
1950
|
-
submitIcon?:
|
|
2031
|
+
submitIcon?: ButtonIconProps['icon'];
|
|
1951
2032
|
texts?: {
|
|
1952
2033
|
reset?: string;
|
|
1953
2034
|
submit?: string;
|
|
@@ -2304,7 +2385,7 @@ type PopoverGroupProps = PopoverGroupSharedProps & {
|
|
|
2304
2385
|
};
|
|
2305
2386
|
declare const PopoverGroup: FC<PopoverGroupProps>;
|
|
2306
2387
|
|
|
2307
|
-
declare const POPOVER_CONTAINER_ATTR = "data-
|
|
2388
|
+
declare const POPOVER_CONTAINER_ATTR = "data-popover-container";
|
|
2308
2389
|
declare const usePopoverPortalContainer: (root?: HTMLElement | ShadowRoot | null) => HTMLElement | null;
|
|
2309
2390
|
|
|
2310
2391
|
interface AvatarUploaderProps {
|
|
@@ -3268,14 +3349,14 @@ interface GuideCardProps extends Omit<FlexProps, 'title'> {
|
|
|
3268
3349
|
cover?: string;
|
|
3269
3350
|
};
|
|
3270
3351
|
closable?: boolean;
|
|
3271
|
-
closeIconProps?: Omit<
|
|
3352
|
+
closeIconProps?: Omit<ButtonIconProps, 'icon' | 'onClick'>;
|
|
3272
3353
|
cover?: string;
|
|
3273
3354
|
coverProps?: ImgProps & ImageProps$2 & {
|
|
3274
3355
|
priority?: boolean;
|
|
3275
3356
|
};
|
|
3276
3357
|
desc?: ReactNode;
|
|
3277
3358
|
height?: number;
|
|
3278
|
-
onClose?:
|
|
3359
|
+
onClose?: ButtonIconProps['onClick'];
|
|
3279
3360
|
ref?: Ref<HTMLDivElement>;
|
|
3280
3361
|
shadow?: boolean;
|
|
3281
3362
|
styles?: {
|
|
@@ -3322,9 +3403,9 @@ interface SyntaxHighlighterProps extends DivProps {
|
|
|
3322
3403
|
}
|
|
3323
3404
|
interface HighlighterProps extends Omit<FlexProps, 'children' | 'wrap'> {
|
|
3324
3405
|
cy?: string;
|
|
3325
|
-
actionIconSize?:
|
|
3406
|
+
actionIconSize?: ButtonIconProps['size'];
|
|
3326
3407
|
actionsRender?: (props: {
|
|
3327
|
-
actionIconSize:
|
|
3408
|
+
actionIconSize: ButtonIconProps['size'];
|
|
3328
3409
|
content: string;
|
|
3329
3410
|
getContent: () => string;
|
|
3330
3411
|
language: string;
|
|
@@ -3714,62 +3795,6 @@ declare const SwitchIcon: {
|
|
|
3714
3795
|
|
|
3715
3796
|
declare const Switch: react.NamedExoticComponent<SwitchProps>;
|
|
3716
3797
|
|
|
3717
|
-
interface MermaidThemeItem {
|
|
3718
|
-
background?: string;
|
|
3719
|
-
displayName: string;
|
|
3720
|
-
id: string;
|
|
3721
|
-
}
|
|
3722
|
-
declare const mermaidThemes: MermaidThemeItem[];
|
|
3723
|
-
|
|
3724
|
-
interface SyntaxMermaidProps {
|
|
3725
|
-
animated?: boolean;
|
|
3726
|
-
children: string;
|
|
3727
|
-
className?: string;
|
|
3728
|
-
fallbackClassName?: string;
|
|
3729
|
-
ref?: Ref<HTMLDivElement>;
|
|
3730
|
-
style?: CSSProperties;
|
|
3731
|
-
theme?: MermaidProps['theme'];
|
|
3732
|
-
variant?: MermaidProps['variant'];
|
|
3733
|
-
}
|
|
3734
|
-
interface MermaidProps extends DivProps {
|
|
3735
|
-
actionIconSize?: ActionIconProps['size'];
|
|
3736
|
-
actionsRender?: (props: {
|
|
3737
|
-
actionIconSize: ActionIconProps['size'];
|
|
3738
|
-
content: string;
|
|
3739
|
-
getContent: () => string;
|
|
3740
|
-
originalNode: ReactNode;
|
|
3741
|
-
}) => ReactNode;
|
|
3742
|
-
animated?: boolean;
|
|
3743
|
-
bodyRender?: (props: {
|
|
3744
|
-
content: string;
|
|
3745
|
-
originalNode: ReactNode;
|
|
3746
|
-
}) => ReactNode;
|
|
3747
|
-
children: string;
|
|
3748
|
-
classNames?: {
|
|
3749
|
-
body?: string;
|
|
3750
|
-
content?: string;
|
|
3751
|
-
header?: string;
|
|
3752
|
-
};
|
|
3753
|
-
copyable?: boolean;
|
|
3754
|
-
defaultExpand?: boolean;
|
|
3755
|
-
fileName?: string;
|
|
3756
|
-
fullFeatured?: boolean;
|
|
3757
|
-
language?: string;
|
|
3758
|
-
shadow?: boolean;
|
|
3759
|
-
showLanguage?: boolean;
|
|
3760
|
-
styles?: {
|
|
3761
|
-
body?: CSSProperties;
|
|
3762
|
-
content?: CSSProperties;
|
|
3763
|
-
header?: CSSProperties;
|
|
3764
|
-
};
|
|
3765
|
-
theme?: 'lobe-theme' | MermaidConfig['theme'];
|
|
3766
|
-
variant?: 'filled' | 'outlined' | 'borderless';
|
|
3767
|
-
}
|
|
3768
|
-
|
|
3769
|
-
declare const Mermaid: react.NamedExoticComponent<MermaidProps>;
|
|
3770
|
-
|
|
3771
|
-
declare const SyntaxMermaid: react.NamedExoticComponent<SyntaxMermaidProps>;
|
|
3772
|
-
|
|
3773
3798
|
interface TagProps extends Omit<TagProps$1, 'color' | 'variant'> {
|
|
3774
3799
|
cy?: string;
|
|
3775
3800
|
color?: TagProps$1['color'] | 'info';
|
|
@@ -3870,7 +3895,6 @@ interface SyntaxMarkdownProps {
|
|
|
3870
3895
|
a?: Partial<AProps & AnchorProps>;
|
|
3871
3896
|
highlight?: Partial<HighlighterProps>;
|
|
3872
3897
|
img?: Partial<ImageProps>;
|
|
3873
|
-
mermaid?: Partial<MermaidProps>;
|
|
3874
3898
|
pre?: Partial<PreProps>;
|
|
3875
3899
|
video?: Partial<VideoProps>;
|
|
3876
3900
|
};
|
|
@@ -3878,7 +3902,6 @@ interface SyntaxMarkdownProps {
|
|
|
3878
3902
|
enableCustomFootnotes?: boolean;
|
|
3879
3903
|
enableGithubAlert?: boolean;
|
|
3880
3904
|
enableLatex?: boolean;
|
|
3881
|
-
enableMermaid?: boolean;
|
|
3882
3905
|
enableStream?: boolean;
|
|
3883
3906
|
fullFeaturedCodeBlock?: boolean;
|
|
3884
3907
|
reactMarkdownProps?: Omit<Readonly<Options>, 'components' | 'rehypePlugins' | 'remarkPlugins'>;
|
|
@@ -4233,7 +4256,7 @@ interface SliderWithInputProps extends Omit<SliderSingleProps, 'classNames' | 's
|
|
|
4233
4256
|
|
|
4234
4257
|
declare const SliderWithInput: react.NamedExoticComponent<SliderWithInputProps>;
|
|
4235
4258
|
|
|
4236
|
-
declare const DragHandle: react.NamedExoticComponent<
|
|
4259
|
+
declare const DragHandle: react.NamedExoticComponent<ButtonIconProps>;
|
|
4237
4260
|
|
|
4238
4261
|
interface SortableItemProps extends Omit<FlexProps, 'id'> {
|
|
4239
4262
|
id: string | number;
|
|
@@ -4328,7 +4351,7 @@ interface TableProps<TData> extends AntdTablePropsBase<TData> {
|
|
|
4328
4351
|
reload?: boolean;
|
|
4329
4352
|
filterable?: boolean;
|
|
4330
4353
|
selectable?: boolean;
|
|
4331
|
-
height?: number | string;
|
|
4354
|
+
height?: number | string | ['auto', number];
|
|
4332
4355
|
rowHeight?: number;
|
|
4333
4356
|
overscan?: number;
|
|
4334
4357
|
defaultPageSize?: number;
|
|
@@ -4810,10 +4833,10 @@ interface ThemeSwitchProps extends DivProps {
|
|
|
4810
4833
|
light: string;
|
|
4811
4834
|
};
|
|
4812
4835
|
onThemeSwitch: (themeMode: ThemeMode) => void;
|
|
4813
|
-
size?:
|
|
4836
|
+
size?: ButtonIconProps['size'];
|
|
4814
4837
|
themeMode: ThemeMode;
|
|
4815
4838
|
type?: 'icon' | 'select';
|
|
4816
|
-
variant?:
|
|
4839
|
+
variant?: ButtonIconProps['variant'];
|
|
4817
4840
|
}
|
|
4818
4841
|
|
|
4819
4842
|
declare const ThemeSwitch: FC<ThemeSwitchProps>;
|
|
@@ -5586,4 +5609,4 @@ declare const useToken: () => {
|
|
|
5586
5609
|
motionDurationSlow: string;
|
|
5587
5610
|
};
|
|
5588
5611
|
|
|
5589
|
-
export { A, type AProps, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps,
|
|
5612
|
+
export { A, type AProps, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, Alert, type AlertProps, AutoComplete, type AutoCompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type BaseMenuItemType, Block, type BlockProps, Burger, type BurgerProps, Button, ButtonCopy, type ButtonCopyProps, ButtonIcon, ButtonIconGroup, type ButtonIconGroupEvent, type MenuItemType as ButtonIconGroupItemType, type ButtonIconGroupProps, type ButtonIconProps, type ButtonIconSize, type ButtonProps, type CDN, CLASSNAMES, CUSTOM_SELECT_CONTAINER_ATTR, CardForm, type CardFormProps, Checkbox, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, CircleStepper, type CircleStepperProps, type CircleStepperTokens, CodeDiff, type CodeDiffProps, CodeEditor, type CodeEditorProps, Collapse, type CollapseItemType, type CollapseProps, type ColorPalettes, type ColorPalettesAlpha, ColorPicker, type ColorPickerProps, ColorSwatches, type ColorSwatchesProps, type ColorToken, type Config, ConfigProvider, ConfirmationModal, type ConfirmationModalAPI, type ConfirmationModalInstance, type ConfirmationModalProps, type ConfirmationModalType, type ContextMenuCheckboxItem, ContextMenuHost, type ContextMenuItem, ContextMenuTrigger, DROPDOWN_MENU_CONTAINER_ATTR, DatePicker, type DatePickerProps, type DiffViewMode, type DivProps, DownloadButton, type DownloadButtonProps, DraggablePanel, DraggablePanelBody, type DraggablePanelBodyProps, DraggablePanelContainer, type DraggablePanelContainerProps, DraggablePanelFooter, type DraggablePanelFooterProps, DraggablePanelHeader, type DraggablePanelHeaderProps, type DraggablePanelProps, DraggableSideNav, type DraggableSideNavProps, Drawer, type DrawerProps, Dropdown, type DropdownItem, DropdownMenu, type DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, DropdownMenuCheckboxItemPrimitive, DropdownMenuGroup, DropdownMenuGroupLabel, type DropdownMenuGroupLabelProps, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuItemExtra, type DropdownMenuItemExtraProps, DropdownMenuItemIcon, type DropdownMenuItemIconProps, DropdownMenuItemLabel, type DropdownMenuItemLabelProps, type DropdownMenuItemProps, type MenuItemType as DropdownMenuItemType, type DropdownMenuPlacement, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, DropdownMenuPositioner, type DropdownMenuPositionerProps, type DropdownMenuProps, DropdownMenuRoot, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSubmenuArrow, type DropdownMenuSubmenuArrowProps, DropdownMenuSubmenuRoot, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type DropdownProps, EditableText, type EditableTextProps, EditorSlashMenu, EditorSlashMenuGroup$1 as EditorSlashMenuGroup, type EditorSlashMenuItems, type EditorSlashMenuOption, EmojiPicker, type EmojiPickerProps, Empty, type EmptyProps, FileTypeIcon, type FileTypeIconProps, Flex, type FlexDirection, type FlexProps, FluentEmoji, type FluentEmojiProps, FolderIcon, FolderTree, type FolderTreeNode, type FolderTreeProps, FontLoader, type FontLoaderProps, Footer, type FooterProps, FormComponentImpl as Form, FormBlock, type FormBlockProps, FormCheckbox, FormColorPicker, type FormConfig, FormDatePicker, FormDescription, FormError, type FormFieldRules, FormGroup, FormInput, FormInputMask, FormInputNumber, FormInputPassword, type FormInstance, FormLabel, FormModal, type FormModalProps, type FormProps, FormRadio, FormSegment, FormSelect, type FormState, FormSwitch, FormTextarea, FormTimePicker, type GenericItemType, Grid, type GridProps, GroupAvatar, type GroupAvatarProps, GuideCard, type GuideCardProps, Header, type HeaderProps, Highlighter, type HighlighterProps, Hotkey, HotkeyInput, type HotkeyInputProps, type HotkeyProps, I18nProvider, type I18nProviderProps, Icon, type IconProps$1 as IconProps, IconProvider, type IconSize, Image, type ImageProps$1 as ImageProps, ImageSelect, type ImageSelectItem, type ImageSelectProps, type ImgProps, type ImperativeModalProps, Input, InputMask, type InputMaskProps, InputNumber, type InputNumberProps, InputOPT, type InputOPTProps, InputPassword, type InputPasswordProps, type InputProps, type ItemType, KeyMapEnum, Layout, LayoutFooter, type LayoutFooterProps, LayoutHeader, type LayoutHeaderProps, LayoutMain, type LayoutMainProps, type LayoutProps, LayoutSidebar, LayoutSidebarInner, type LayoutSidebarInnerProps, type LayoutSidebarProps, LayoutToc, type LayoutTocProps, A as Link, List, ListItem, type ListItemProps, type ListProps, type LobeCustomStylish, type LobeCustomToken, I18nProvider as LobeUIProvider, Markdown, type MarkdownProps, MaskShadow, type MaskShadowProps, MaterialFileTypeIcon, type MaterialFileTypeIconProps, Menu, type MenuCheckboxItemType, type MenuItemType, type MenuProps, Meta, type MetaProps, Modal, ModalHost, type ModalHostProps, type ModalInstance, type ModalProps, ModalProvider, MotionComponent, type MotionComponentType, MotionProvider, type NeutralColors, type NeutralColorsObj, POPOVER_CONTAINER_ATTR, PatchDiff, type PatchDiffProps, type Placement, type PlacementConfig, Popover, PopoverArrow, type PopoverArrowAtomProps, PopoverArrowIcon, PopoverBackdrop, type PopoverContextValue, PopoverGroup, type PopoverPlacement, PopoverPopup, type PopoverPopupAtomProps, PopoverPortal, type PopoverPortalAtomProps, PopoverPositioner, type PopoverPositionerAtomProps, type PopoverProps, PopoverProvider, PopoverRoot, type PopoverTrigger, PopoverTriggerElement, type PopoverTriggerElementProps, PopoverViewport, type PopoverViewportAtomProps, type PresetColorKey, type PresetColorType, type PresetSystemColorKey, type PresetSystemColorType, PreviewGroup, type PreviewGroupProps, type PrimaryColors, type PrimaryColorsObj, Radio, type RadioGroupProps, type RadioProps, type RawModalComponent, type RawModalComponentProps, type RawModalInstance, type RawModalKeyOptions, type RawModalOptions, SELECT_CONTAINER_ATTR, ScrollArea, ScrollAreaContent, type ScrollAreaContentProps, ScrollAreaCorner, type ScrollAreaCornerProps, type ScrollAreaProps, ScrollAreaRoot, type ScrollAreaRootProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, ScrollAreaViewport, type ScrollAreaViewportProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchResultCards, type SearchResultCardsProps, Segmented, type SegmentedProps, Select, SelectArrow, type SelectArrowProps, SelectBackdrop, type SelectBehaviorVariant, type SelectClassNames, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, type SelectIndicatorVariant, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectList, type SelectListProps, type SelectOption, type SelectOptionGroup, type SelectOptions, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, SelectPositioner, type SelectPositionerProps, type SelectProps, SelectRoot, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, _default as ShikiLobeTheme, SideNav, type SideNavProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonBlock, type SkeletonBlockProps, SkeletonButton, type SkeletonButtonProps, SkeletonParagraph, type SkeletonParagraphProps, type SkeletonProps, SkeletonTags, type SkeletonTagsProps, SkeletonTitle, type SkeletonTitleProps, SliderWithInput, type SliderWithInputProps, Snippet, type SnippetProps, SortableList, type SortableListProps, type SpanProps, type SvgProps, Switch, type SwitchChangeEventHandler, type SwitchClassNames, type SwitchClickEventHandler, type SwitchContextType, SwitchIcon, type SwitchIconPosition, type SwitchIconProps, type SwitchProps, SwitchRoot, type SwitchRootProps, type SwitchSize, type SwitchStyles, SwitchThumb, type SwitchThumbProps, SyntaxHighlighter, type SyntaxHighlighterProps, type SystemColorToken, Table, type TableColumn, type TableDataSource, type TablePageSizeConfig, type TableProps, type TableReadConfig, Tabs, type TabsProps, Tag, type TagProps, Text, TextArea, type TextAreaProps, type TextProps, ThemeProvider, type ThemeProviderProps, ThemeSwitch, type ThemeSwitchProps, TimePicker, type Meridiem as TimePickerMeridiem, type TimePickerProps, type TimeValue as TimePickerValue, type ToastAPI, ToastHost, type ToastHostProps, type ToastInstance, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastProps, type ToastType, Toc, type TocProps, Tooltip, TooltipGroup, type TooltipProps, type Trigger, Typography, type TypographyProps, type UseFormReturn, Video, type VideoProps$1 as VideoProps, closeContextMenu, combineKeys, confirmConfirmationModal, copyToClipboard, createModal, createRawModal, createStyles, cx, findCustomThemeName, genCdnUrl, generateColorNeutralPalette, generateColorPalette, highlighterThemes, generateCustomStylish as lobeCustomStylish, generateCustomToken as lobeCustomToken, staticStylish as lobeStaticStylish, styles as menuSharedStyles, neutralColors, neutralColorsSwatches, placementMap, preprocessMarkdownContent, preventDefault, preventDefaultAndStopPropagation, primaryColors, primaryColorsSwatches, rehypeCustomFootnotes, rehypeKatexDir, rehypeStreamAnimated, remarkBr, remarkColor, remarkCustomFootnotes, remarkGfmPlus, remarkVideo, renderDropdownMenuItems, runRules, showContextMenu, stopPropagation, toFloatingUIPlacement, toast, updateContextMenuItems, useCdnFn, useCy, useForm, useModalContext, useMotionComponent, usePopoverContext, usePopoverPortalContainer, useSwitchContext, useToast, useToken, useTranslation };
|