@mui-toolpad-extended-tuni/main 3.5.0 → 3.5.1

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/README.md CHANGED
@@ -260,3 +260,4 @@ If you're migrating from the deprecated `mui-toolpad-extended-tuni` package:
260
260
  ## License
261
261
 
262
262
  MIT
263
+
@@ -0,0 +1,8 @@
1
+ import { ToolSelectorItem } from './types';
2
+ interface ToolSelectorProps {
3
+ show: boolean;
4
+ title: string;
5
+ navigationItems: ToolSelectorItem[];
6
+ }
7
+ declare const ToolSelector: ({ show, title, navigationItems }: ToolSelectorProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default ToolSelector;
@@ -0,0 +1,3 @@
1
+ /** @format */
2
+ export { default as ToolSelector } from './ToolSelector';
3
+ export type { ToolSelectorItem } from './types';
@@ -0,0 +1,7 @@
1
+ /** @format */
2
+ export type ToolSelectorItem = {
3
+ path: string;
4
+ icon: React.ReactNode;
5
+ label: string;
6
+ description: string;
7
+ };