@alepha/devtools 0.13.2 → 0.13.3

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@alepha/devtools",
3
3
  "description": "Developer tools for monitoring and debugging Alepha applications.",
4
4
  "author": "Nicolas Foures",
5
- "version": "0.13.2",
5
+ "version": "0.13.3",
6
6
  "type": "module",
7
7
  "engines": {
8
8
  "node": ">=22.0.0"
@@ -15,16 +15,16 @@
15
15
  "src"
16
16
  ],
17
17
  "devDependencies": {
18
- "@alepha/react": "0.13.2",
19
- "@alepha/ui": "0.13.2",
18
+ "@alepha/react": "0.13.3",
19
+ "@alepha/ui": "0.13.3",
20
20
  "@tabler/icons-react": "^3.35.0",
21
- "alepha": "0.13.2",
22
- "react": "^19.2.0",
23
- "tsdown": "^0.16.7",
24
- "vitest": "^4.0.14"
21
+ "alepha": "0.13.3",
22
+ "react": "^19.2.1",
23
+ "tsdown": "^0.16.8",
24
+ "vitest": "^4.0.15"
25
25
  },
26
26
  "peerDependencies": {
27
- "alepha": "0.13.2"
27
+ "alepha": "0.13.3"
28
28
  },
29
29
  "scripts": {
30
30
  "lint": "alepha lint",
@@ -14,7 +14,7 @@ export const DevLayout = () => {
14
14
  <AdminShell
15
15
  appShellProps={{
16
16
  withBorder: false,
17
- bg: ui.colors.surface,
17
+ bg: ui.colors.background,
18
18
  }}
19
19
  appShellNavbarProps={{
20
20
  bg: ui.colors.transparent,
@@ -64,12 +64,17 @@ export const DevLayout = () => {
64
64
  }}
65
65
  >
66
66
  <Flex
67
+ w={"100%"}
68
+ flex={1}
67
69
  bd={`1px solid ${ui.colors.border}`}
68
70
  bg={ui.colors.elevated}
69
- bdrs={"lg"}
70
71
  p={"xl"}
71
- ml={-8}
72
- mt={-8}
72
+ ml={-16}
73
+ mr={-16}
74
+ mt={-16}
75
+ style={{
76
+ borderTopLeftRadius: 16,
77
+ }}
73
78
  >
74
79
  <NestedView />
75
80
  </Flex>