@abdellatifui/react 3.2.18 → 3.2.19
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/nextgen.css +1 -1
- package/dist/nextgen.d.ts +7 -7
- package/dist/nextgen.js +2713 -2700
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -549,7 +549,7 @@ export declare interface MenuButtonProps extends ButtonProps {
|
|
|
549
549
|
}>;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
|
-
export declare const Model: default_2.
|
|
552
|
+
export declare const Model: default_2.NamedExoticComponent<ModelProps_2 & default_2.RefAttributes<ModelHandle_2>>;
|
|
553
553
|
|
|
554
554
|
export declare const ModelContext: Context< {}>;
|
|
555
555
|
|
|
@@ -585,6 +585,7 @@ declare interface ModelProps_2 {
|
|
|
585
585
|
hideOnContextMenu?: boolean;
|
|
586
586
|
onBodyClick?: (event: default_2.MouseEvent<HTMLDivElement>) => void;
|
|
587
587
|
blur?: boolean;
|
|
588
|
+
container?: MutableRefObject<HTMLDivElement>;
|
|
588
589
|
}
|
|
589
590
|
|
|
590
591
|
export declare const MuiTable: (props: any) => JSX.Element;
|
|
@@ -907,7 +908,7 @@ export declare const Sidebar: default_2.ForwardRefExoticComponent<Omit<SidebarPr
|
|
|
907
908
|
|
|
908
909
|
export declare type SidebarDirection = 'left' | 'right';
|
|
909
910
|
|
|
910
|
-
declare type SidebarDirection_2 =
|
|
911
|
+
declare type SidebarDirection_2 = "left" | "right";
|
|
911
912
|
|
|
912
913
|
export declare interface SidebarEvent {
|
|
913
914
|
isOpen: boolean;
|
|
@@ -943,7 +944,7 @@ declare interface SidebarHandle_2 {
|
|
|
943
944
|
|
|
944
945
|
export declare type SidebarModelProps = Partial<Omit<ModelProps, 'children'>>;
|
|
945
946
|
|
|
946
|
-
declare type SidebarModelProps_2 = Partial<Omit<ModelProps_2,
|
|
947
|
+
declare type SidebarModelProps_2 = Partial<Omit<ModelProps_2, "children">>;
|
|
947
948
|
|
|
948
949
|
export declare interface SidebarProps {
|
|
949
950
|
variant?: SidebarVariant;
|
|
@@ -964,9 +965,9 @@ export declare interface SidebarProps {
|
|
|
964
965
|
|
|
965
966
|
declare interface SidebarProps_2 {
|
|
966
967
|
variant?: SidebarVariant_2;
|
|
967
|
-
rounded?:
|
|
968
|
+
rounded?: "none" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
968
969
|
padding?: boolean;
|
|
969
|
-
margin?:
|
|
970
|
+
margin?: "none" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
970
971
|
direction?: SidebarDirection_2;
|
|
971
972
|
defaultOpen?: boolean;
|
|
972
973
|
children?: ReactNode;
|
|
@@ -977,12 +978,11 @@ declare interface SidebarProps_2 {
|
|
|
977
978
|
className?: string;
|
|
978
979
|
style?: default_2.CSSProperties;
|
|
979
980
|
ref?: default_2.RefObject<HTMLDivElement>;
|
|
980
|
-
container?: MutableRefObject<HTMLDivElement>;
|
|
981
981
|
}
|
|
982
982
|
|
|
983
983
|
export declare type SidebarVariant = 'default';
|
|
984
984
|
|
|
985
|
-
declare type SidebarVariant_2 =
|
|
985
|
+
declare type SidebarVariant_2 = "default";
|
|
986
986
|
|
|
987
987
|
export declare interface SizeVariants {
|
|
988
988
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|