@dustin-riley/design 0.2.3 → 0.3.0

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 (2) hide show
  1. package/package.json +15 -4
  2. package/src/core.css +2 -1
package/package.json CHANGED
@@ -1,10 +1,15 @@
1
1
  {
2
2
  "name": "@dustin-riley/design",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "Dustin Riley design system — warm mid-century modern tokens and primitives.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "files": ["src", "DESIGN.md", "skill", "README.md"],
7
+ "files": [
8
+ "src",
9
+ "DESIGN.md",
10
+ "skill",
11
+ "README.md"
12
+ ],
8
13
  "exports": {
9
14
  "./tokens.css": "./src/tokens.css",
10
15
  "./core.css": "./src/core.css",
@@ -15,6 +20,12 @@
15
20
  "generate": "node scripts/generate-bridge.mjs",
16
21
  "test": "node --test"
17
22
  },
18
- "publishConfig": { "access": "public" },
19
- "keywords": ["design-system", "css", "design-tokens"]
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "keywords": [
27
+ "design-system",
28
+ "css",
29
+ "design-tokens"
30
+ ]
20
31
  }
package/src/core.css CHANGED
@@ -154,6 +154,8 @@ h6,
154
154
  }
155
155
 
156
156
  /* ----- Section labels ----- */
157
+ /* Pure typography — no outer margin. Stacked spacing is the context's job
158
+ (e.g. .ds-page-header > .grid-label below); inline/flex uses stay clean. */
157
159
  .grid-label {
158
160
  font-family: var(--ds-font-mono);
159
161
  font-size: var(--ds-fs-caption);
@@ -161,7 +163,6 @@ h6,
161
163
  text-transform: uppercase;
162
164
  letter-spacing: 0.06em;
163
165
  color: var(--ds-text-muted);
164
- margin: 0 0 var(--ds-space-4);
165
166
  }
166
167
 
167
168
  /* ----- Back link ----- */