Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions adr/INDEX.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| # | Title | Highlights |
|---|-------|------------|
| 066 | Lossless Key Formatting — Safe Key Grammar and Original-Name Preservation | |
| 065 | Document the `nullable` Default and Add `NumberProp.nullable` | Absent `nullable` means true for `StringProp`/`NumberProp`/`SlotProp`/`ImageProp`, false for `EnumProp`; adds `NumberProp.nullable` |
| 064 | Tighten `textAlignHorizontal` to a Logical-Direction String Enum | |
| 062 | Text Overflow & Max Lines — `textOverflow` and `maxLines` on `Styles` | |
Expand Down
40 changes: 34 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"vitest": "^3.1.1"
},
"dependencies": {
"@directededges/specs-from-figma": "file:../specs-from-figma"
"@directededges/specs-from-figma": "file:../specs-from-figma/packages/specs-from-figma"
}
}
9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to `@directededges/specs-cli` are documented here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added

### Changed

### Removed


## Unreleased

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@directededges/specs-cli",
"version": "0.26.0",
"version": "0.27.0",
"description": "Command-line interface for Specs design system operations",
"type": "module",
"main": "./dist/index.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/schema/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to the Specs schema will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added

### Changed

### Removed


## [0.29.0] - 2026-08-07

Numeric properties can now be marked nullable, matching the flexibility already available on strings, slots, and images. Horizontal text alignment now uses logical inline-axis direction (`START`/`END`) instead of physical `LEFT`/`RIGHT`, so specs read correctly regardless of writing direction.
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@directededges/specs-schema",
"version": "0.29.0",
"version": "0.30.0",
"description": "Specs UI Component Schema - TypeScript types and JSON schema definitions for component specifications",
"license": "CC-BY-4.0",
"author": "Nathan Curtis <nathan@directededges.com>",
Expand Down