baseline-foundry 0.1.3 → 0.1.4

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 (43) hide show
  1. package/README.md +568 -552
  2. package/config/experiments/ibm-plex-engine-smoke.json +115 -115
  3. package/config/experiments/ubuntu-engine-smoke.json +115 -115
  4. package/config/foundation-theme.json +110 -110
  5. package/config/tiers/app.json +116 -116
  6. package/config/tiers/documentation.json +116 -116
  7. package/config/tiers/editorial.json +116 -116
  8. package/config/tiers/os.json +116 -116
  9. package/dist/baseline-grid-overlay.js +43 -43
  10. package/dist/css-app-tier.js +73 -73
  11. package/dist/css-components/article-pagination.js +140 -140
  12. package/dist/css-components/button-actions.js +161 -161
  13. package/dist/css-components/cards-options.js +176 -176
  14. package/dist/css-components/chip-badge-status.js +158 -158
  15. package/dist/css-components/content-card.js +490 -490
  16. package/dist/css-components/control-row.js +14 -14
  17. package/dist/css-components/cta-figure-aspect.js +120 -120
  18. package/dist/css-components/document-navigation.js +390 -390
  19. package/dist/css-components/editorial-content.js +42 -42
  20. package/dist/css-components/icon.js +72 -72
  21. package/dist/css-components/interactive-feedback.js +217 -217
  22. package/dist/css-components/interactive-tables.js +155 -155
  23. package/dist/css-components/legacy-navigation.d.ts +9 -0
  24. package/dist/css-components/legacy-navigation.js +763 -0
  25. package/dist/css-components/linked-logo-site-layout.js +177 -177
  26. package/dist/css-components/list-tree.js +94 -94
  27. package/dist/css-components/logo-media.js +201 -201
  28. package/dist/css-components/navigation-layout.js +144 -144
  29. package/dist/css-components/panel.js +144 -144
  30. package/dist/css-components/search-box-and-filter.js +263 -263
  31. package/dist/css-components/sites-editorial-ports.js +243 -243
  32. package/dist/css-components/sites-foundation.js +146 -146
  33. package/dist/css-components/sites-rich-lists.js +344 -344
  34. package/dist/css-components/static-content-ports.js +182 -182
  35. package/dist/css-components/tab-section.js +82 -82
  36. package/dist/css-components/table.js +75 -75
  37. package/dist/css-components/tabs-choice-breadcrumbs.js +303 -303
  38. package/dist/css-components/tiered-list-equal-height-row.js +271 -271
  39. package/dist/css-components.js +1791 -2542
  40. package/dist/css-grid.js +172 -172
  41. package/dist/css.js +240 -240
  42. package/docs/publishing.md +30 -13
  43. package/package.json +119 -108
package/package.json CHANGED
@@ -1,108 +1,119 @@
1
- {
2
- "name": "baseline-foundry",
3
- "version": "0.1.3",
4
- "description": "Lean baseline-aligned design system focused on typography, editorial flow, spacing, and grid primitives.",
5
- "author": "Lyubomir Popov",
6
- "type": "module",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/lyubomir-popov/baseline-foundry.git"
10
- },
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "files": [
15
- "dist",
16
- "config",
17
- "docs/publishing.md",
18
- "README.md",
19
- "LICENSE"
20
- ],
21
- "exports": {
22
- ".": {
23
- "types": "./dist/index.d.ts",
24
- "import": "./dist/index.js"
25
- },
26
- "./build": {
27
- "types": "./dist/build.d.ts",
28
- "import": "./dist/build.js"
29
- },
30
- "./presets": {
31
- "types": "./dist/presets.d.ts",
32
- "import": "./dist/presets.js"
33
- },
34
- "./types": {
35
- "types": "./dist/types.d.ts",
36
- "import": "./dist/types.js"
37
- },
38
- "./styles.css": "./dist/styles.css",
39
- "./tokens.json": "./dist/tokens.json",
40
- "./surfaces.json": "./dist/surfaces.json",
41
- "./tiers/editorial.css": "./dist/tiers/editorial/styles.css",
42
- "./tiers/documentation.css": "./dist/tiers/documentation/styles.css",
43
- "./tiers/app.css": "./dist/tiers/app/styles.css",
44
- "./tiers/os.css": "./dist/tiers/os/styles.css",
45
- "./tiers/editorial.tokens.json": "./dist/tiers/editorial/tokens.json",
46
- "./tiers/documentation.tokens.json": "./dist/tiers/documentation/tokens.json",
47
- "./tiers/app.tokens.json": "./dist/tiers/app/tokens.json",
48
- "./tiers/os.tokens.json": "./dist/tiers/os/tokens.json",
49
- "./tiers/editorial.surfaces.json": "./dist/tiers/editorial/surfaces.json",
50
- "./tiers/documentation.surfaces.json": "./dist/tiers/documentation/surfaces.json",
51
- "./tiers/app.surfaces.json": "./dist/tiers/app/surfaces.json",
52
- "./tiers/os.surfaces.json": "./dist/tiers/os/surfaces.json",
53
- "./presets/prose.css": "./dist/presets/prose/styles.css",
54
- "./presets/app-tier.css": "./dist/presets/app-tier/styles.css",
55
- "./presets/prose.tokens.json": "./dist/presets/prose/tokens.json",
56
- "./presets/app-tier.tokens.json": "./dist/presets/app-tier/tokens.json",
57
- "./presets/prose.surfaces.json": "./dist/presets/prose/surfaces.json",
58
- "./presets/app-tier.surfaces.json": "./dist/presets/app-tier/surfaces.json"
59
- },
60
- "scripts": {
61
- "clean": "tsx scripts/clean.ts",
62
- "setup:demo-font": "tsx scripts/setup-demo-font.ts",
63
- "build:theme": "tsx scripts/build-theme.ts",
64
- "build:lib": "tsc -p tsconfig.json",
65
- "build": "npm run build:theme && npm run build:lib",
66
- "demo:serve": "vite",
67
- "demo": "npm run build && npm run demo:serve",
68
- "test:build": "tsx scripts/validate-build.ts",
69
- "test:behavior": "tsx scripts/verify-component-behavior.ts",
70
- "test:components": "tsx scripts/verify-component-baselines.ts",
71
- "test": "npm run build && npm run test:build && npm run test:components && npm run test:behavior",
72
- "check:types": "tsc -p tsconfig.json --noEmit",
73
- "audit": "npm audit && npm audit --omit=dev",
74
- "release:check": "npm run setup:demo-font && npm run check:types && npm test && npm run qa:components && npm run audit",
75
- "prepublishOnly": "npm run release:check",
76
- "playwright:install": "playwright install chromium",
77
- "compare:controls": "npm run build && tsx scripts/compare-controls.ts",
78
- "compare:inline-surfaces": "npm run build && tsx scripts/compare-inline-surfaces.ts",
79
- "verify:behavior": "npm run build && tsx scripts/verify-component-behavior.ts",
80
- "verify:components": "npm run build && tsx scripts/verify-component-baselines.ts",
81
- "screenshots:components": "npm run build && tsx scripts/capture-component-screenshots.ts",
82
- "qa:components": "npm run build && tsx scripts/capture-component-screenshots.ts && tsx scripts/verify-component-baselines.ts",
83
- "build:app": "tsx examples/app-tier/build.ts",
84
- "demo:app": "npm run build:app && vite --host 127.0.0.1 --port 4175 --strictPort --open /examples/app-tier/",
85
- "build:app-tier": "tsx examples/app-tier/build.ts",
86
- "demo:app-tier": "npm run demo:app"
87
- },
88
- "keywords": [
89
- "baseline-grid",
90
- "vertical-rhythm",
91
- "typography",
92
- "editorial",
93
- "grid"
94
- ],
95
- "license": "MIT",
96
- "dependencies": {
97
- "@lyubomir-popov/baseline-nudge-generator": "^1.5.1"
98
- },
99
- "devDependencies": {
100
- "@fontsource-variable/ibm-plex-sans": "^5.3.0",
101
- "@types/node": "^24.13.3",
102
- "playwright": "^1.62.1",
103
- "postcss": "^8.5.26",
104
- "tsx": "^4.23.12",
105
- "typescript": "^5.8.2",
106
- "vite": "^7.3.6"
107
- }
108
- }
1
+ {
2
+ "name": "baseline-foundry",
3
+ "version": "0.1.4",
4
+ "description": "Lean baseline-aligned design system focused on typography, editorial flow, spacing, and grid primitives.",
5
+ "author": "Lyubomir Popov",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=22.14.0",
9
+ "npm": ">=11.19.0"
10
+ },
11
+ "packageManager": "npm@11.19.0",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/lyubomir-popov/baseline-foundry.git"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "config",
22
+ "docs/publishing.md",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js"
30
+ },
31
+ "./build": {
32
+ "types": "./dist/build.d.ts",
33
+ "import": "./dist/build.js"
34
+ },
35
+ "./presets": {
36
+ "types": "./dist/presets.d.ts",
37
+ "import": "./dist/presets.js"
38
+ },
39
+ "./types": {
40
+ "types": "./dist/types.d.ts",
41
+ "import": "./dist/types.js"
42
+ },
43
+ "./styles.css": "./dist/styles.css",
44
+ "./tokens.json": "./dist/tokens.json",
45
+ "./surfaces.json": "./dist/surfaces.json",
46
+ "./tiers/editorial.css": "./dist/tiers/editorial/styles.css",
47
+ "./tiers/documentation.css": "./dist/tiers/documentation/styles.css",
48
+ "./tiers/app.css": "./dist/tiers/app/styles.css",
49
+ "./tiers/os.css": "./dist/tiers/os/styles.css",
50
+ "./tiers/editorial.tokens.json": "./dist/tiers/editorial/tokens.json",
51
+ "./tiers/documentation.tokens.json": "./dist/tiers/documentation/tokens.json",
52
+ "./tiers/app.tokens.json": "./dist/tiers/app/tokens.json",
53
+ "./tiers/os.tokens.json": "./dist/tiers/os/tokens.json",
54
+ "./tiers/editorial.surfaces.json": "./dist/tiers/editorial/surfaces.json",
55
+ "./tiers/documentation.surfaces.json": "./dist/tiers/documentation/surfaces.json",
56
+ "./tiers/app.surfaces.json": "./dist/tiers/app/surfaces.json",
57
+ "./tiers/os.surfaces.json": "./dist/tiers/os/surfaces.json",
58
+ "./presets/prose.css": "./dist/presets/prose/styles.css",
59
+ "./presets/app-tier.css": "./dist/presets/app-tier/styles.css",
60
+ "./presets/prose.tokens.json": "./dist/presets/prose/tokens.json",
61
+ "./presets/app-tier.tokens.json": "./dist/presets/app-tier/tokens.json",
62
+ "./presets/prose.surfaces.json": "./dist/presets/prose/surfaces.json",
63
+ "./presets/app-tier.surfaces.json": "./dist/presets/app-tier/surfaces.json"
64
+ },
65
+ "scripts": {
66
+ "clean": "tsx scripts/clean.ts",
67
+ "setup:demo-font": "tsx scripts/setup-demo-font.ts",
68
+ "build:theme": "tsx scripts/build-theme.ts",
69
+ "build:lib": "tsc -p tsconfig.json",
70
+ "build": "npm run build:theme && npm run build:lib",
71
+ "demo:serve": "vite",
72
+ "demo": "npm run build && npm run demo:serve",
73
+ "test:build": "tsx scripts/validate-build.ts",
74
+ "test:behavior": "tsx scripts/verify-component-behavior.ts",
75
+ "test:components": "tsx scripts/verify-component-baselines.ts",
76
+ "test": "npm run build && npm run test:build && npm run test:components && npm run test:behavior",
77
+ "check:types": "tsc -p tsconfig.json --noEmit",
78
+ "audit": "npm audit && npm audit --omit=dev",
79
+ "release:check": "npm run setup:demo-font && npm run check:types && npm test && npm run qa:components && npm run audit",
80
+ "release:preflight": "tsx scripts/release-preflight.ts",
81
+ "release:preflight:test": "tsx scripts/release-preflight.ts --self-test",
82
+ "release:verify": "tsx scripts/verify-registry-package.ts",
83
+ "prepublishOnly": "npm run release:check",
84
+ "playwright:install": "playwright install chromium",
85
+ "compare:controls": "npm run build && tsx scripts/compare-controls.ts",
86
+ "compare:inline-surfaces": "npm run build && tsx scripts/compare-inline-surfaces.ts",
87
+ "verify:behavior": "npm run build && tsx scripts/verify-component-behavior.ts",
88
+ "verify:components": "npm run build && tsx scripts/verify-component-baselines.ts",
89
+ "screenshots:components": "npm run build && tsx scripts/capture-component-screenshots.ts",
90
+ "qa:components": "npm run build && tsx scripts/capture-component-screenshots.ts && tsx scripts/verify-component-baselines.ts",
91
+ "build:app": "tsx examples/app-tier/build.ts",
92
+ "demo:app": "npm run build:app && vite --host 127.0.0.1 --port 4175 --strictPort --open /examples/app-tier/",
93
+ "build:app-tier": "tsx examples/app-tier/build.ts",
94
+ "demo:app-tier": "npm run demo:app"
95
+ },
96
+ "keywords": [
97
+ "baseline-grid",
98
+ "vertical-rhythm",
99
+ "typography",
100
+ "editorial",
101
+ "grid"
102
+ ],
103
+ "license": "MIT",
104
+ "dependencies": {
105
+ "@lyubomir-popov/baseline-nudge-generator": "^1.5.1"
106
+ },
107
+ "devDependencies": {
108
+ "@fontsource-variable/ibm-plex-sans": "^5.3.0",
109
+ "@types/node": "^24.13.3",
110
+ "playwright": "^1.62.1",
111
+ "postcss": "^8.5.26",
112
+ "tsx": "^4.23.12",
113
+ "typescript": "^7.0.2",
114
+ "vite": "^8.2.2"
115
+ },
116
+ "allowScripts": {
117
+ "esbuild": false
118
+ }
119
+ }