@decantr/cli 1.7.17 → 1.7.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.
package/dist/bin.js
CHANGED
|
@@ -473,9 +473,6 @@ ${themeBody}
|
|
|
473
473
|
["padding-left", "var(--d-label-px)"],
|
|
474
474
|
["border-left", "2px solid var(--d-accent)"]
|
|
475
475
|
]);
|
|
476
|
-
emitRule("* + .d-label[data-anchor]", [
|
|
477
|
-
["margin-top", "var(--d-section-gap, 2rem)"]
|
|
478
|
-
]);
|
|
479
476
|
emitRule(".d-link", [
|
|
480
477
|
["color", "var(--d-text)"],
|
|
481
478
|
["text-decoration", "none"],
|
|
@@ -846,11 +843,19 @@ ${themeBody}
|
|
|
846
843
|
["min-width", "0"],
|
|
847
844
|
["overflow-y", "auto"],
|
|
848
845
|
["overflow-x", "clip"],
|
|
849
|
-
["padding", "1rem"]
|
|
846
|
+
["padding", "1rem"],
|
|
847
|
+
["display", "flex"],
|
|
848
|
+
["flex-direction", "column"],
|
|
849
|
+
["gap", "var(--d-section-gap, 2rem)"]
|
|
850
850
|
]);
|
|
851
851
|
emitRule('.d-shell-body[data-padding="compact"]', [["padding", "0.75rem"]]);
|
|
852
852
|
emitRule('.d-shell-body[data-padding="spacious"]', [["padding", "1.5rem"]]);
|
|
853
853
|
emitRule('.d-shell-body[data-padding="none"]', [["padding", "0"]]);
|
|
854
|
+
emitRule('.d-shell-body[data-flow="tight"]', [["gap", "0.75rem"]]);
|
|
855
|
+
emitRule('.d-shell-body[data-flow="none"]', [
|
|
856
|
+
["display", "block"],
|
|
857
|
+
["gap", "0"]
|
|
858
|
+
]);
|
|
854
859
|
emitRule(".d-shell-footer", [
|
|
855
860
|
["padding", "1rem clamp(1rem, 2vw, 1.5rem)"],
|
|
856
861
|
["border-top", "1px solid var(--d-border)"],
|
|
@@ -2546,7 +2551,7 @@ Pair \`d-card\` with a theme card decorator (e.g., \`carbon-card\`) for hover gl
|
|
|
2546
2551
|
| **Main** | \`d-shell-main\` | Remaining-width column to the right of the sidebar (or the full content area in top-nav shells). Handles scroll internally. |
|
|
2547
2552
|
| **Aside** | \`d-shell-aside\` | Right 320px auxiliary panel for inspector / timeline / minimap in \`sidebar-aside\` layouts. Below \`_mdmax:\` hides by default; toggle with \`data-mobile-open="true"\`. |
|
|
2548
2553
|
| **Header** | \`d-shell-header\` | 52px sticky top bar with horizontal flex layout. Use inside \`d-shell-main\` (sidebar-main shells) or at the top of \`d-shell\` (top-nav shells). |
|
|
2549
|
-
| **Body** | \`d-shell-body\` | Scrollable main region. \`data-padding="compact\\|spacious\\|none"\`
|
|
2554
|
+
| **Body** | \`d-shell-body\` | Scrollable main region. **Flex column with section-level gap (\`var(--d-section-gap, 2rem)\`) between direct children** \u2014 every block-level child (eyebrow, card grid, chart row, table) gets uniform spacing automatically, no matter how it's wrapped internally. \`data-padding="compact\\|spacious\\|none"\` adjusts the outer 1rem padding. \`data-flow="tight"\` reduces the gap to 0.75rem; \`data-flow="none"\` reverts to plain block flow. |
|
|
2550
2555
|
| **Footer** | \`d-shell-footer\` | Narrow band below the body with top border. |
|
|
2551
2556
|
| **Centered card** | \`d-shell-centered-card\` | The content parent inside \`d-shell[data-layout="centered"]\`. Caps width at 28rem. |
|
|
2552
2557
|
| **Mobile menu trigger** | \`d-shell-mobile-trigger\` | Hamburger button hidden above \`_md:\`, visible below. Toggles \`data-mobile-open\` on the sibling \`d-shell-sidebar\`. REQUIRED inside \`d-shell-header\` for any \`sidebar-main\` or \`sidebar-aside\` shell \u2014 without it, mobile users can't re-open the collapsed nav. |
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
scaffoldProject,
|
|
15
15
|
syncRegistry,
|
|
16
16
|
writeExecutionPackBundleArtifacts
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-5ZMHI3R4.js";
|
|
18
18
|
import {
|
|
19
19
|
buildGuardRegistryContext,
|
|
20
20
|
scanProjectInteractions
|
|
@@ -5942,7 +5942,7 @@ async function main() {
|
|
|
5942
5942
|
break;
|
|
5943
5943
|
}
|
|
5944
5944
|
case "upgrade": {
|
|
5945
|
-
const { cmdUpgrade } = await import("./upgrade-
|
|
5945
|
+
const { cmdUpgrade } = await import("./upgrade-LK3Z44M2.js");
|
|
5946
5946
|
const applyFlag = args.includes("--apply");
|
|
5947
5947
|
await cmdUpgrade(process.cwd(), { apply: applyFlag });
|
|
5948
5948
|
break;
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "./chunk-
|
|
2
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-VHDAHJKS.js";
|
|
2
|
+
import "./chunk-5ZMHI3R4.js";
|
|
3
3
|
import "./chunk-QRQCPD3C.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decantr/cli",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.18",
|
|
4
4
|
"description": "Decantr CLI — scaffold, audit, and maintain Decantr projects from the terminal",
|
|
5
5
|
"author": "Decantr AI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
+
"@decantr/core": "1.0.2",
|
|
30
31
|
"@decantr/essence-spec": "1.0.5",
|
|
31
32
|
"@decantr/verifier": "1.0.3",
|
|
32
|
-
"@decantr/registry": "1.0.2"
|
|
33
|
-
"@decantr/core": "1.0.2"
|
|
33
|
+
"@decantr/registry": "1.0.2"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup",
|