view-contracts 0.3.2 → 0.3.3

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Contract-first UI design toolchain. Compiles restricted view-contract TSX to language-neutral View IR and renders platform targets (React, SwiftUI, Compose).
4
4
 
5
- **Version:** 0.3.2
5
+ **Version:** 0.3.3
6
6
 
7
7
  ## Table of Contents
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "view-contracts",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Contract-first UI design toolchain — restricted TSX to View IR to platform renderers",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  export const ALLOWED_COMPONENTS = new Set([
3
3
  'App',
4
4
  'Box',
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  export type Role = "button" | "link" | "heading" | "list" | "listitem" | "main" | "dialog" | "status";
3
3
  export type WidthSize = "wrap" | "fill";
4
4
  export type HeightSize = "wrap" | "fill";
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  export interface ViewAction { name: string; params?: Record<string, unknown> }
3
3
  import type { Role, WidthSize, HeightSize, Align, Justify, ContentAlign, Axis, Direction, Scroll, Border, Shadow, TextAlign, LineLimit, TextOverflow, FontWeight, ImageFit, KeyboardType, Clip } from './dsl-enums.js';
4
4
 
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  export * from './dsl-enums.js';
3
3
  export * from './dsl-properties.js';
4
4
  export * from './schema-document.js';
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  /** Property names passed to commonStyle() during React HTML lowering (x-category from DSL + sample extensions). */
3
3
  export const LOWERING_STYLE_PROPERTIES = new Set<string>([
4
4
  "align",
@@ -1,4 +1,4 @@
1
- /** Auto-generated from renderers/react/element-config.meta.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from renderers/react/element-config.meta.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  /** Shape of entries in renderers/react/elements.yaml (target-specific HTML map, not DSL vocabulary). */
3
3
  export interface ReactRendererElementConfig {
4
4
  tag: string;
@@ -1,4 +1,4 @@
1
- /** Auto-generated from spec/ui-dsl.meta.json + ui-dsl.schema.json — view-contracts v0.3.1 — DO NOT EDIT */
1
+ /** Auto-generated from spec/ui-dsl.meta.json + ui-dsl.schema.json — view-contracts v0.3.2 — DO NOT EDIT */
2
2
  import type { Role, WidthSize, HeightSize, Align, Justify, ContentAlign, Axis, Direction, Scroll, Border, Shadow, TextAlign, LineLimit, TextOverflow, FontWeight, ImageFit, KeyboardType, Clip } from './dsl-enums.js';
3
3
 
4
4
  export type PropertyType = 'string' | 'number' | 'boolean' | 'array' | 'action' | 'object' | 'null' | string | string[];