@acvl/frontend-components 0.0.15 → 0.0.16
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/cjs/index.js +9 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/v1/badges/StatusBadge/StatusBadge.d.ts +4 -1
- package/dist/cjs/types/src/components/v1/datagrids/wrappers/CreateGridWrapper.d.ts +1 -0
- package/dist/esm/index.js +9 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/v1/badges/StatusBadge/StatusBadge.d.ts +4 -1
- package/dist/esm/types/src/components/v1/datagrids/wrappers/CreateGridWrapper.d.ts +1 -0
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { AlertProps } from "@mui/material";
|
|
1
|
+
import { AlertProps, BoxProps } from "@mui/material";
|
|
2
2
|
import React from "react";
|
|
3
3
|
interface StatusBadgeProps {
|
|
4
4
|
severity?: AlertProps['severity'];
|
|
5
5
|
title: string;
|
|
6
|
+
slotProps?: {
|
|
7
|
+
box?: Partial<BoxProps>;
|
|
8
|
+
};
|
|
6
9
|
}
|
|
7
10
|
declare const StatusBadge: React.FC<StatusBadgeProps>;
|
|
8
11
|
export default StatusBadge;
|
|
@@ -16,6 +16,7 @@ export interface CreateGridWrapperProps extends CreateGridAPIProps {
|
|
|
16
16
|
renderFunction: (props: any) => JSX.Element;
|
|
17
17
|
dataGridProps?: Partial<MyDataGridProps>;
|
|
18
18
|
pathname: string;
|
|
19
|
+
navigation?: string;
|
|
19
20
|
}
|
|
20
21
|
declare const CreateGridWrapper: (props: CreateGridWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
22
|
export default CreateGridWrapper;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _mui_material from '@mui/material';
|
|
2
|
-
import { ButtonProps, ButtonGroupProps, AlertProps, AutocompleteProps, SliderProps, SwitchProps, GridProps,
|
|
2
|
+
import { ButtonProps, ButtonGroupProps, AlertProps, BoxProps, AutocompleteProps, SliderProps, SwitchProps, GridProps, MenuProps, DrawerProps, IconButtonProps, PaletteColorOptions } from '@mui/material';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import React__default, { ReactNode, Dispatch, SetStateAction, JSX, RefObject } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -94,6 +94,9 @@ declare const ButtonWithDrawer: React__default.FC<ButtonWithDrawerProps>;
|
|
|
94
94
|
interface StatusBadgeProps {
|
|
95
95
|
severity?: AlertProps['severity'];
|
|
96
96
|
title: string;
|
|
97
|
+
slotProps?: {
|
|
98
|
+
box?: Partial<BoxProps>;
|
|
99
|
+
};
|
|
97
100
|
}
|
|
98
101
|
declare const StatusBadge: React__default.FC<StatusBadgeProps>;
|
|
99
102
|
|
package/package.json
CHANGED