@pdg/react-admin-layout 1.0.16 → 1.0.18

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.
Files changed (30) hide show
  1. package/README.md +1 -1
  2. package/dist/@types/index.d.ts +1 -1
  3. package/dist/@types/types.d.ts +13 -13
  4. package/dist/CardLayout/CardLayout.d.ts +4 -4
  5. package/dist/CardLayout/CardLayout.types.d.ts +7 -7
  6. package/dist/CardLayout/index.d.ts +3 -3
  7. package/dist/DefaultLayout/DefaultLayout.d.ts +4 -4
  8. package/dist/DefaultLayout/DefaultLayout.style.d.ts +17 -17
  9. package/dist/DefaultLayout/DefaultLayout.types.d.ts +29 -29
  10. package/dist/DefaultLayout/DefaultLayout.types.private.d.ts +9 -9
  11. package/dist/DefaultLayout/SideMenu/SideMenu.d.ts +4 -4
  12. package/dist/DefaultLayout/SideMenu/SideMenu.style.d.ts +5 -5
  13. package/dist/DefaultLayout/SideMenu/SideMenu.types.d.ts +5 -5
  14. package/dist/DefaultLayout/SideMenu/index.d.ts +4 -4
  15. package/dist/DefaultLayout/SideMenuList/SideMenuList.d.ts +4 -4
  16. package/dist/DefaultLayout/SideMenuList/SideMenuList.style.d.ts +4 -4
  17. package/dist/DefaultLayout/SideMenuList/SideMenuList.types.d.ts +7 -7
  18. package/dist/DefaultLayout/SideMenuList/index.d.ts +4 -4
  19. package/dist/DefaultLayout/SideMenuListItem/SideMenuListItem.d.ts +4 -4
  20. package/dist/DefaultLayout/SideMenuListItem/SideMenuListItem.types.d.ts +7 -7
  21. package/dist/DefaultLayout/SideMenuListItem/index.d.ts +4 -4
  22. package/dist/DefaultLayout/Title.d.ts +9 -9
  23. package/dist/DefaultLayout/Title.style.d.ts +18 -18
  24. package/dist/DefaultLayout/index.d.ts +4 -4
  25. package/dist/index.d.ts +2 -2
  26. package/dist/index.esm.js +325 -345
  27. package/dist/index.js +325 -345
  28. package/package.json +3 -2
  29. package/dist/@util/compare.d.ts +0 -4
  30. package/dist/@util/index.d.ts +0 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pdg/react-admin-layout",
3
3
  "title": "React Admin Layout",
4
- "version": "1.0.16",
4
+ "version": "1.0.18",
5
5
  "description": "Admin Layout for React",
6
6
  "type": "module",
7
7
  "types": "dist/index.d.ts",
@@ -45,6 +45,7 @@
45
45
  "@emotion/styled": "^11.11.0",
46
46
  "@mui/icons-material": "^5.15.13",
47
47
  "@mui/material": "^5.15.13",
48
+ "@pdg/util": "^1.0.0",
48
49
  "@types/react": "^17.0.0 || ^18.0.0",
49
50
  "react": "^17.0.0 || ^18.0.0",
50
51
  "react-dom": "^17.0.0 || ^18.0.0",
@@ -70,6 +71,6 @@
70
71
  "rollup-plugin-postcss": "^4.0.2",
71
72
  "rollup-plugin-typescript2": "^0.36.0",
72
73
  "sass": "^1.72.0",
73
- "typescript": "^5.4.2"
74
+ "typescript": "^4.9.5"
74
75
  }
75
76
  }
@@ -1,4 +0,0 @@
1
- declare const empty: (v: any) => boolean;
2
- declare const notEmpty: (v: any) => boolean;
3
- declare const isSame: (v1: any, v2: any) => boolean;
4
- export { empty, notEmpty, isSame };
@@ -1,4 +0,0 @@
1
- declare const ll: (message?: any, ...optionalParams: any[]) => void;
2
- declare const nextTick: (callback: () => void) => void;
3
- export { ll, nextTick };
4
- export * from './compare';