runlify 0.0.764-update-react-admin.5 → 0.0.764-update-react-admin.6

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.
@@ -12,7 +12,7 @@ const uiGetMenuIconsTmpl = (args) => {
12
12
  .map((icon) => `import ${icon} from '@mui/icons-material/${icon}';`)
13
13
  .join('\n');
14
14
  const iconsObject = uniqueIcons.map((icon) => `\t${icon},`).join('\n');
15
- return `import {AdditionalMenuIcons} from '../../adm/additionalMenuIcons';
15
+ return `import {additionalMenuIcons} from '../../adm/additionalMenuIcons';
16
16
 
17
17
  import {type SvgIconComponent} from '@mui/icons-material';
18
18
  ${imports}
@@ -22,7 +22,7 @@ export const menuIcons = {
22
22
  ${iconsObject}
23
23
  } as const satisfies Record<string, SvgIconComponent>
24
24
 
25
- export type MuiMenuIconName = keyof typeof MenuIcons;
25
+ export type MuiMenuIconName = keyof typeof menuIcons;
26
26
 
27
27
  `;
28
28
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "runlify",
3
- "version": "0.0.764-update-react-admin.5",
3
+ "version": "0.0.764-update-react-admin.6",
4
4
  "description": "runlify CLI",
5
5
  "private": false,
6
6
  "main": "build/index.js",