@nadicodeai/design-system 0.17.1 → 0.18.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.
- package/CONTEXT.md +3 -0
- package/DESIGN.md +2 -0
- package/README.md +13 -0
- package/dist/assets/nadia-01-solid-surface.png +0 -0
- package/dist/assets/nadia-02-ordered-points.png +0 -0
- package/dist/assets/nadia-03-triangulated-wire.png +0 -0
- package/dist/assets/nadia-04-irregular-particles.png +0 -0
- package/package.json +16 -4
- package/dist/assets/nadia-canonical-face.png +0 -0
- /package/src/assets/{nadia-canonical-face.d.ts → nadia-material-state.d.ts} +0 -0
package/CONTEXT.md
CHANGED
|
@@ -37,6 +37,9 @@ The perceptual brightness difference that makes the edge between adjacent campi,
|
|
|
37
37
|
**Page grammar**:
|
|
38
38
|
The shared structural system of frames, rows, lanes, fills, seams, markers, grids, and stages used to compose NadicodeAI pages.
|
|
39
39
|
|
|
40
|
+
**Seam**:
|
|
41
|
+
A visible structural line in the page grammar: the shared edge where a frame, row, lane, or grid cell meets its neighbour. Exactly one element owns and draws each seam, so no coordinate is ever drawn twice, and seam placement is computed from grid math rather than eyeballed; the rule and the tokens that colour it live in `design-system/DESIGN.md` "Seam Ownership" and "Layout". This is the visual sense of the word only. Its architectural sense, a boundary in code a test can substitute, is general software vocabulary and not part of the design language.
|
|
42
|
+
|
|
40
43
|
**CSS primitive**:
|
|
41
44
|
A low-level, framework-agnostic CSS helper for geometry, type, seams, fills, or structural behavior. It carries no product-specific meaning.
|
|
42
45
|
|
package/DESIGN.md
CHANGED
|
@@ -743,6 +743,8 @@ The NadicodeAI logo has three approved forms:
|
|
|
743
743
|
|
|
744
744
|
Nadia's portrait and generated imagery belong to the agent's visual identity. Neither is a NadicodeAI company logo.
|
|
745
745
|
|
|
746
|
+
The four canonical Nadia material states ship as transparent PNG assets in their fixed semantic order: `assets/nadia-solid-surface`, `assets/nadia-ordered-points`, `assets/nadia-triangulated-wire`, and `assets/nadia-irregular-particles`. They are background-neutral compositing assets derived from the one approved identity and may sit on any field that keeps the selected state legible. The older editorial face and full-body references remain in the brand imagery library for generation guidance; they are not public product-portrait exports.
|
|
747
|
+
|
|
746
748
|
All three forms derive from one authored, framework-neutral geometry source exported as `@nadicodeai/design-system/assets/logo-geometry`. The lockup combines the shared mark and wordmark geometry at the established proportion and spacing. No SVG, React component, favicon, document, or app re-authors, traces, typesets, or rearranges those shapes.
|
|
747
749
|
|
|
748
750
|
Use the positive form on `{colors.canvas}` and the soft neutral canvases: ink letterforms and link with the primary verde link and `AI` suffix. Use the inverse form on `{colors.campo-inchiostro}`: campo-bianco letterforms and link with the dark-primary verde link and `AI` suffix. On `{colors.campo-verde}`, use the supplied on-verde form with one ink link and one white link. On photography, place the logo in a quiet area or over a scrim that keeps every part legible; when neither is available, mount it on an approved solid field. One surface uses one treatment.
|
package/README.md
CHANGED
|
@@ -51,6 +51,19 @@ For direct HTML or CDN delivery, use a version-pinned file URL such as
|
|
|
51
51
|
The clear-space, minimum-size, accessibility, background, and prohibited-use rules live only in
|
|
52
52
|
[`DESIGN.md`, "Brand media authority"](./DESIGN.md#brand-media-authority).
|
|
53
53
|
|
|
54
|
+
### Nadia material states
|
|
55
|
+
|
|
56
|
+
The package ships Nadia's four background-neutral transparent portraits in their fixed order:
|
|
57
|
+
|
|
58
|
+
| State | Import |
|
|
59
|
+
| --- | --- |
|
|
60
|
+
| Solid surface | `@nadicodeai/design-system/assets/nadia-solid-surface` |
|
|
61
|
+
| Ordered points | `@nadicodeai/design-system/assets/nadia-ordered-points` |
|
|
62
|
+
| Triangulated wire | `@nadicodeai/design-system/assets/nadia-triangulated-wire` |
|
|
63
|
+
| Irregular particles | `@nadicodeai/design-system/assets/nadia-irregular-particles` |
|
|
64
|
+
|
|
65
|
+
Each import resolves to the canonical transparent PNG. Select the state for its product meaning; do not treat the four portraits as interchangeable decoration.
|
|
66
|
+
|
|
54
67
|
## Package surface
|
|
55
68
|
|
|
56
69
|
`package.json` owns the current public export paths. [`DESIGN.md`](./DESIGN.md)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nadicodeai/design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -116,9 +116,21 @@
|
|
|
116
116
|
"import": "./src/assets/logo-geometry.js",
|
|
117
117
|
"default": "./src/assets/logo-geometry.js"
|
|
118
118
|
},
|
|
119
|
-
"./assets/nadia-
|
|
120
|
-
"types": "./src/assets/nadia-
|
|
121
|
-
"default": "./dist/assets/nadia-
|
|
119
|
+
"./assets/nadia-solid-surface": {
|
|
120
|
+
"types": "./src/assets/nadia-material-state.d.ts",
|
|
121
|
+
"default": "./dist/assets/nadia-01-solid-surface.png"
|
|
122
|
+
},
|
|
123
|
+
"./assets/nadia-ordered-points": {
|
|
124
|
+
"types": "./src/assets/nadia-material-state.d.ts",
|
|
125
|
+
"default": "./dist/assets/nadia-02-ordered-points.png"
|
|
126
|
+
},
|
|
127
|
+
"./assets/nadia-triangulated-wire": {
|
|
128
|
+
"types": "./src/assets/nadia-material-state.d.ts",
|
|
129
|
+
"default": "./dist/assets/nadia-03-triangulated-wire.png"
|
|
130
|
+
},
|
|
131
|
+
"./assets/nadia-irregular-particles": {
|
|
132
|
+
"types": "./src/assets/nadia-material-state.d.ts",
|
|
133
|
+
"default": "./dist/assets/nadia-04-irregular-particles.png"
|
|
122
134
|
},
|
|
123
135
|
"./assets/fonts/geist.css": "./src/assets/fonts/geist.css",
|
|
124
136
|
"./assets/fonts/*": "./src/assets/fonts/*"
|
|
Binary file
|
|
File without changes
|