@wire-dsl/engine 0.1.0 → 0.2.1

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/README.md CHANGED
@@ -16,7 +16,7 @@ import { parseWire, generateIR, computeLayout } from '@wire-dsl/engine';
16
16
  // Parse .wire DSL file
17
17
  const ast = parseWire(`
18
18
  project "MyWireframe" {
19
- theme {
19
+ style {
20
20
  density: "normal"
21
21
  spacing: "md"
22
22
  radius: "md"
@@ -78,7 +78,7 @@ validateIR(ir); // Throws if invalid
78
78
  ### Components
79
79
  30+ built-in UI components:
80
80
 
81
- **Text**: Heading, Text, Paragraph, Label
81
+ **Text**: Heading, Text, Label
82
82
 
83
83
  **Input**: Input, Textarea, Select, Checkbox, Radio, Toggle
84
84
 
@@ -88,7 +88,7 @@ validateIR(ir); // Throws if invalid
88
88
 
89
89
  **Data**: Table, List
90
90
 
91
- **Media**: Image, Icon, Avatar
91
+ **Media**: Image, Icon
92
92
 
93
93
  **Display**: Divider, Badge, Link, Alert
94
94