@abdellatifui/react 3.2.165 → 3.2.166
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.d.ts +12 -1
- package/dist/nextgen.js +980 -979
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -169,7 +169,17 @@ export declare interface AutocompeleteProps extends InputProps_2 {
|
|
|
169
169
|
|
|
170
170
|
export declare const AutoComplete: default_2.MemoExoticComponent<(props: AutocompeleteProps) => JSX.Element>;
|
|
171
171
|
|
|
172
|
-
export declare const BadgeLegend: (props:
|
|
172
|
+
export declare const BadgeLegend: (props: BadgeLegendProps) => JSX.Element;
|
|
173
|
+
|
|
174
|
+
export declare interface BadgeLegendProps {
|
|
175
|
+
title?: string;
|
|
176
|
+
className?: string;
|
|
177
|
+
content?: default_2.ReactNode;
|
|
178
|
+
children?: default_2.ReactNode;
|
|
179
|
+
outline?: boolean;
|
|
180
|
+
variant?: 'primary' | 'secondary' | 'outline' | 'minimal' | 'ghost';
|
|
181
|
+
rounded?: 'full' | 'sm' | 'md' | false;
|
|
182
|
+
}
|
|
173
183
|
|
|
174
184
|
declare const Body_2: default_2.ForwardRefExoticComponent<default_2.RefAttributes<unknown>>;
|
|
175
185
|
export { Body_2 as Body }
|
|
@@ -1014,6 +1024,7 @@ declare interface PanelProps_2 {
|
|
|
1014
1024
|
defaultMaximized?: boolean;
|
|
1015
1025
|
ref: MutableRefObject<any>;
|
|
1016
1026
|
draggable?: boolean;
|
|
1027
|
+
minimizedHeader?: default_2.ReactNode;
|
|
1017
1028
|
}
|
|
1018
1029
|
|
|
1019
1030
|
export declare interface PropertiesItemProps {
|