react-crud-mui 0.2.77 → 0.2.78
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/components/panel-select/PanelSelect.d.ts +4 -1
- package/dist/coreui.js +999 -997
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StackProps } from '@mui/material';
|
|
2
|
-
import { PanelSelectItemProps } from './PanelSelectItem';
|
|
2
|
+
import { default as PanelSelectItem, PanelSelectItemProps } from './PanelSelectItem';
|
|
3
3
|
export type PanelSelectData = {
|
|
4
4
|
value: string | number;
|
|
5
5
|
} & Pick<PanelSelectItemProps, 'deleteable' | 'helperText' | 'icon' | 'rightContent' | 'selectedIcon' | 'label' | 'sx' | 'disabled' | 'children'>;
|
|
@@ -16,4 +16,7 @@ export interface PanelSelectProps extends Omit<StackProps, 'onChange' | 'directi
|
|
|
16
16
|
selectInitialOption?: boolean | ((data: PanelSelectData) => boolean);
|
|
17
17
|
}
|
|
18
18
|
declare function PanelSelect({ onDelete, data, onChange, value, disabled, size, direction, selectInitialOption, ...stackProps }: PanelSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare namespace PanelSelect {
|
|
20
|
+
var Item: typeof PanelSelectItem;
|
|
21
|
+
}
|
|
19
22
|
export default PanelSelect;
|