@donotdev/core 0.0.5 → 0.0.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.
- package/index.d.ts +8 -7
- package/index.js +9 -9
- package/package.json +2 -2
- package/server.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@donotdev/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
],
|
|
53
53
|
"sideEffects": false,
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@donotdev/components": "0.0.
|
|
55
|
+
"@donotdev/components": "0.0.6",
|
|
56
56
|
"@sentry/react": "^10.25.0",
|
|
57
57
|
"lucide-react": "^0.562.0",
|
|
58
58
|
"react": "^19.2.3",
|
package/server.d.ts
CHANGED
|
@@ -9422,7 +9422,7 @@ type DnDevOverride = () => ReactNode | null;
|
|
|
9422
9422
|
*/
|
|
9423
9423
|
interface LayoutConfig {
|
|
9424
9424
|
/** Breadcrumbs display behavior */
|
|
9425
|
-
breadcrumbs?: 'smart' | 'always' | 'never'
|
|
9425
|
+
breadcrumbs?: 'smart' | 'always' | 'never';
|
|
9426
9426
|
/** Header override - full component or slot overrides */
|
|
9427
9427
|
header?: DnDevOverride | {
|
|
9428
9428
|
start?: DnDevOverride;
|
|
@@ -9475,7 +9475,7 @@ interface DnDevLayoutProps {
|
|
|
9475
9475
|
/** App metadata and branding */
|
|
9476
9476
|
app?: AppMetadata;
|
|
9477
9477
|
/** Breadcrumbs display behavior */
|
|
9478
|
-
breadcrumbs?: 'smart' | 'always' | 'never'
|
|
9478
|
+
breadcrumbs?: 'smart' | 'always' | 'never';
|
|
9479
9479
|
/** Global navigation command palette enabled */
|
|
9480
9480
|
globalGoTo?: boolean;
|
|
9481
9481
|
/** Additional CSS classes */
|