@wireweave/core 1.0.0-beta.20260110141318 → 1.1.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/dist/index.cjs +823 -3067
- package/dist/index.d.cts +3 -168
- package/dist/index.d.ts +3 -168
- package/dist/index.js +823 -3054
- package/dist/parser.cjs +292 -636
- package/dist/parser.d.cts +1 -1
- package/dist/parser.d.ts +1 -1
- package/dist/parser.js +292 -636
- package/dist/renderer.cjs +525 -1756
- package/dist/renderer.d.cts +58 -105
- package/dist/renderer.d.ts +58 -105
- package/dist/renderer.js +525 -1756
- package/dist/{types-lcJzPcR0.d.cts → types-DtovIYS6.d.cts} +2 -40
- package/dist/{types-lcJzPcR0.d.ts → types-DtovIYS6.d.ts} +2 -40
- package/package.json +1 -1
|
@@ -76,16 +76,7 @@ interface FlexProps {
|
|
|
76
76
|
interface GridProps {
|
|
77
77
|
span?: number;
|
|
78
78
|
}
|
|
79
|
-
|
|
80
|
-
* Position props for absolute/relative positioning
|
|
81
|
-
* - x, y: position coordinates (relative to parent or absolute on page)
|
|
82
|
-
* - All values are in pixels
|
|
83
|
-
*/
|
|
84
|
-
interface PositionProps {
|
|
85
|
-
x?: number | ValueWithUnit;
|
|
86
|
-
y?: number | ValueWithUnit;
|
|
87
|
-
}
|
|
88
|
-
interface CommonProps extends SpacingProps, SizeProps, FlexProps, GridProps, PositionProps {
|
|
79
|
+
interface CommonProps extends SpacingProps, SizeProps, FlexProps, GridProps {
|
|
89
80
|
}
|
|
90
81
|
interface WireframeDocument extends BaseNode {
|
|
91
82
|
type: 'Document';
|
|
@@ -109,8 +100,6 @@ interface HeaderNode extends BaseNode, CommonProps {
|
|
|
109
100
|
}
|
|
110
101
|
interface MainNode extends BaseNode, CommonProps {
|
|
111
102
|
type: 'Main';
|
|
112
|
-
/** Enable vertical scrolling for overflow content */
|
|
113
|
-
scroll?: boolean;
|
|
114
103
|
children: AnyNode[];
|
|
115
104
|
}
|
|
116
105
|
interface FooterNode extends BaseNode, CommonProps {
|
|
@@ -280,7 +269,6 @@ interface ImageNode extends BaseNode, CommonProps {
|
|
|
280
269
|
interface PlaceholderNode extends BaseNode, CommonProps {
|
|
281
270
|
type: 'Placeholder';
|
|
282
271
|
label?: string | null;
|
|
283
|
-
children?: AnyNode[];
|
|
284
272
|
}
|
|
285
273
|
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
286
274
|
interface AvatarNode extends BaseNode, CommonProps {
|
|
@@ -378,7 +366,6 @@ interface DropdownNode extends BaseNode, CommonProps {
|
|
|
378
366
|
type: 'Dropdown';
|
|
379
367
|
items: (DropdownItemNode | DividerNode)[];
|
|
380
368
|
}
|
|
381
|
-
/** Nav item for array syntax: nav ["a", "b"] */
|
|
382
369
|
interface NavItem {
|
|
383
370
|
label: string;
|
|
384
371
|
icon?: string;
|
|
@@ -386,34 +373,9 @@ interface NavItem {
|
|
|
386
373
|
active?: boolean;
|
|
387
374
|
disabled?: boolean;
|
|
388
375
|
}
|
|
389
|
-
/** Nav item for block syntax: item "label" icon="x" active */
|
|
390
|
-
interface NavBlockItem {
|
|
391
|
-
type: 'item';
|
|
392
|
-
label: string;
|
|
393
|
-
icon?: string;
|
|
394
|
-
href?: string;
|
|
395
|
-
active?: boolean;
|
|
396
|
-
disabled?: boolean;
|
|
397
|
-
}
|
|
398
|
-
/** Nav group for block syntax: group "label" { ... } */
|
|
399
|
-
interface NavGroupNode {
|
|
400
|
-
type: 'group';
|
|
401
|
-
label: string;
|
|
402
|
-
collapsed?: boolean;
|
|
403
|
-
items: (NavBlockItem | NavDivider)[];
|
|
404
|
-
}
|
|
405
|
-
/** Divider inside nav block */
|
|
406
|
-
interface NavDivider {
|
|
407
|
-
type: 'divider';
|
|
408
|
-
}
|
|
409
|
-
/** Nav child can be group, item, or divider */
|
|
410
|
-
type NavChild = NavGroupNode | NavBlockItem | NavDivider;
|
|
411
376
|
interface NavNode extends BaseNode, CommonProps {
|
|
412
377
|
type: 'Nav';
|
|
413
|
-
/** Items for array syntax */
|
|
414
378
|
items: (string | NavItem)[];
|
|
415
|
-
/** Children for block syntax */
|
|
416
|
-
children: NavChild[];
|
|
417
379
|
vertical?: boolean;
|
|
418
380
|
}
|
|
419
381
|
interface TabNode {
|
|
@@ -454,4 +416,4 @@ type LeafNode = TextContentNode | InputComponentNode | ButtonNode | DisplayNode
|
|
|
454
416
|
type AnyNode = ContainerNode | LeafNode;
|
|
455
417
|
type NodeType = 'Document' | 'Page' | 'Header' | 'Main' | 'Footer' | 'Sidebar' | 'Section' | 'Row' | 'Col' | 'Card' | 'Modal' | 'Drawer' | 'Accordion' | 'Text' | 'Title' | 'Link' | 'Input' | 'Textarea' | 'Select' | 'Checkbox' | 'Radio' | 'Switch' | 'Slider' | 'Button' | 'Image' | 'Placeholder' | 'Avatar' | 'Badge' | 'Icon' | 'Table' | 'List' | 'Alert' | 'Toast' | 'Progress' | 'Spinner' | 'Tooltip' | 'Popover' | 'Dropdown' | 'Nav' | 'Tabs' | 'Breadcrumb' | 'Divider';
|
|
456
418
|
|
|
457
|
-
export type { DividerComponentNode as $, AnyNode as A, ButtonNode as B, ContainerNode as C, DrawerNode as D, FeedbackNode as E, FooterNode as F, GridNode as G, HeaderNode as H, InputComponentNode as I, AlertNode as J, ToastNode as K, LeafNode as L, MainNode as M, ProgressNode as N, SpinnerNode as O, PageNode as P, OverlayNode as Q, RowNode as R, SidebarNode as S, TextContentNode as T, TooltipNode as U, PopoverNode as V, DropdownNode as W, NavigationNode as X, NavNode as Y, TabsNode as Z, BreadcrumbNode as _, LayoutNode as a, NodeType as a0, WireframeDocument as a1, Position as a2, SourceLocation as a3, BaseNode as a4, ValueWithUnit as a5, SpacingValue as a6, SpacingProps as a7, WidthValue as a8, HeightValue as a9,
|
|
419
|
+
export type { DividerComponentNode as $, AnyNode as A, ButtonNode as B, ContainerNode as C, DrawerNode as D, FeedbackNode as E, FooterNode as F, GridNode as G, HeaderNode as H, InputComponentNode as I, AlertNode as J, ToastNode as K, LeafNode as L, MainNode as M, ProgressNode as N, SpinnerNode as O, PageNode as P, OverlayNode as Q, RowNode as R, SidebarNode as S, TextContentNode as T, TooltipNode as U, PopoverNode as V, DropdownNode as W, NavigationNode as X, NavNode as Y, TabsNode as Z, BreadcrumbNode as _, LayoutNode as a, NodeType as a0, WireframeDocument as a1, Position as a2, SourceLocation as a3, BaseNode as a4, ValueWithUnit as a5, SpacingValue as a6, SpacingProps as a7, WidthValue as a8, HeightValue as a9, TooltipPosition as aA, DropdownItemNode as aB, DividerNode as aC, NavItem as aD, TabNode as aE, BreadcrumbItem as aF, SizeProps as aa, JustifyValue as ab, AlignValue as ac, DirectionValue as ad, FlexProps as ae, GridProps as af, CommonProps as ag, ShadowValue as ah, DrawerPosition as ai, TextSizeToken as aj, TextSize as ak, TextWeight as al, TextAlign as am, TitleLevel as an, InputType as ao, SelectOption as ap, ButtonVariant as aq, ButtonSize as ar, AvatarSize as as, BadgeVariant as at, BadgeSize as au, IconSize as av, ListItemNode as aw, AlertVariant as ax, ToastPosition as ay, SpinnerSize as az, SectionNode as b, ColNode as c, ContainerComponentNode as d, CardNode as e, ModalNode as f, AccordionNode as g, TextNode as h, TitleNode as i, LinkNode as j, InputNode as k, TextareaNode as l, SelectNode as m, CheckboxNode as n, RadioNode as o, SwitchNode as p, SliderNode as q, DisplayNode as r, ImageNode as s, PlaceholderNode as t, AvatarNode as u, BadgeNode as v, IconNode as w, DataNode as x, TableNode as y, ListNode as z };
|
|
@@ -76,16 +76,7 @@ interface FlexProps {
|
|
|
76
76
|
interface GridProps {
|
|
77
77
|
span?: number;
|
|
78
78
|
}
|
|
79
|
-
|
|
80
|
-
* Position props for absolute/relative positioning
|
|
81
|
-
* - x, y: position coordinates (relative to parent or absolute on page)
|
|
82
|
-
* - All values are in pixels
|
|
83
|
-
*/
|
|
84
|
-
interface PositionProps {
|
|
85
|
-
x?: number | ValueWithUnit;
|
|
86
|
-
y?: number | ValueWithUnit;
|
|
87
|
-
}
|
|
88
|
-
interface CommonProps extends SpacingProps, SizeProps, FlexProps, GridProps, PositionProps {
|
|
79
|
+
interface CommonProps extends SpacingProps, SizeProps, FlexProps, GridProps {
|
|
89
80
|
}
|
|
90
81
|
interface WireframeDocument extends BaseNode {
|
|
91
82
|
type: 'Document';
|
|
@@ -109,8 +100,6 @@ interface HeaderNode extends BaseNode, CommonProps {
|
|
|
109
100
|
}
|
|
110
101
|
interface MainNode extends BaseNode, CommonProps {
|
|
111
102
|
type: 'Main';
|
|
112
|
-
/** Enable vertical scrolling for overflow content */
|
|
113
|
-
scroll?: boolean;
|
|
114
103
|
children: AnyNode[];
|
|
115
104
|
}
|
|
116
105
|
interface FooterNode extends BaseNode, CommonProps {
|
|
@@ -280,7 +269,6 @@ interface ImageNode extends BaseNode, CommonProps {
|
|
|
280
269
|
interface PlaceholderNode extends BaseNode, CommonProps {
|
|
281
270
|
type: 'Placeholder';
|
|
282
271
|
label?: string | null;
|
|
283
|
-
children?: AnyNode[];
|
|
284
272
|
}
|
|
285
273
|
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
286
274
|
interface AvatarNode extends BaseNode, CommonProps {
|
|
@@ -378,7 +366,6 @@ interface DropdownNode extends BaseNode, CommonProps {
|
|
|
378
366
|
type: 'Dropdown';
|
|
379
367
|
items: (DropdownItemNode | DividerNode)[];
|
|
380
368
|
}
|
|
381
|
-
/** Nav item for array syntax: nav ["a", "b"] */
|
|
382
369
|
interface NavItem {
|
|
383
370
|
label: string;
|
|
384
371
|
icon?: string;
|
|
@@ -386,34 +373,9 @@ interface NavItem {
|
|
|
386
373
|
active?: boolean;
|
|
387
374
|
disabled?: boolean;
|
|
388
375
|
}
|
|
389
|
-
/** Nav item for block syntax: item "label" icon="x" active */
|
|
390
|
-
interface NavBlockItem {
|
|
391
|
-
type: 'item';
|
|
392
|
-
label: string;
|
|
393
|
-
icon?: string;
|
|
394
|
-
href?: string;
|
|
395
|
-
active?: boolean;
|
|
396
|
-
disabled?: boolean;
|
|
397
|
-
}
|
|
398
|
-
/** Nav group for block syntax: group "label" { ... } */
|
|
399
|
-
interface NavGroupNode {
|
|
400
|
-
type: 'group';
|
|
401
|
-
label: string;
|
|
402
|
-
collapsed?: boolean;
|
|
403
|
-
items: (NavBlockItem | NavDivider)[];
|
|
404
|
-
}
|
|
405
|
-
/** Divider inside nav block */
|
|
406
|
-
interface NavDivider {
|
|
407
|
-
type: 'divider';
|
|
408
|
-
}
|
|
409
|
-
/** Nav child can be group, item, or divider */
|
|
410
|
-
type NavChild = NavGroupNode | NavBlockItem | NavDivider;
|
|
411
376
|
interface NavNode extends BaseNode, CommonProps {
|
|
412
377
|
type: 'Nav';
|
|
413
|
-
/** Items for array syntax */
|
|
414
378
|
items: (string | NavItem)[];
|
|
415
|
-
/** Children for block syntax */
|
|
416
|
-
children: NavChild[];
|
|
417
379
|
vertical?: boolean;
|
|
418
380
|
}
|
|
419
381
|
interface TabNode {
|
|
@@ -454,4 +416,4 @@ type LeafNode = TextContentNode | InputComponentNode | ButtonNode | DisplayNode
|
|
|
454
416
|
type AnyNode = ContainerNode | LeafNode;
|
|
455
417
|
type NodeType = 'Document' | 'Page' | 'Header' | 'Main' | 'Footer' | 'Sidebar' | 'Section' | 'Row' | 'Col' | 'Card' | 'Modal' | 'Drawer' | 'Accordion' | 'Text' | 'Title' | 'Link' | 'Input' | 'Textarea' | 'Select' | 'Checkbox' | 'Radio' | 'Switch' | 'Slider' | 'Button' | 'Image' | 'Placeholder' | 'Avatar' | 'Badge' | 'Icon' | 'Table' | 'List' | 'Alert' | 'Toast' | 'Progress' | 'Spinner' | 'Tooltip' | 'Popover' | 'Dropdown' | 'Nav' | 'Tabs' | 'Breadcrumb' | 'Divider';
|
|
456
418
|
|
|
457
|
-
export type { DividerComponentNode as $, AnyNode as A, ButtonNode as B, ContainerNode as C, DrawerNode as D, FeedbackNode as E, FooterNode as F, GridNode as G, HeaderNode as H, InputComponentNode as I, AlertNode as J, ToastNode as K, LeafNode as L, MainNode as M, ProgressNode as N, SpinnerNode as O, PageNode as P, OverlayNode as Q, RowNode as R, SidebarNode as S, TextContentNode as T, TooltipNode as U, PopoverNode as V, DropdownNode as W, NavigationNode as X, NavNode as Y, TabsNode as Z, BreadcrumbNode as _, LayoutNode as a, NodeType as a0, WireframeDocument as a1, Position as a2, SourceLocation as a3, BaseNode as a4, ValueWithUnit as a5, SpacingValue as a6, SpacingProps as a7, WidthValue as a8, HeightValue as a9,
|
|
419
|
+
export type { DividerComponentNode as $, AnyNode as A, ButtonNode as B, ContainerNode as C, DrawerNode as D, FeedbackNode as E, FooterNode as F, GridNode as G, HeaderNode as H, InputComponentNode as I, AlertNode as J, ToastNode as K, LeafNode as L, MainNode as M, ProgressNode as N, SpinnerNode as O, PageNode as P, OverlayNode as Q, RowNode as R, SidebarNode as S, TextContentNode as T, TooltipNode as U, PopoverNode as V, DropdownNode as W, NavigationNode as X, NavNode as Y, TabsNode as Z, BreadcrumbNode as _, LayoutNode as a, NodeType as a0, WireframeDocument as a1, Position as a2, SourceLocation as a3, BaseNode as a4, ValueWithUnit as a5, SpacingValue as a6, SpacingProps as a7, WidthValue as a8, HeightValue as a9, TooltipPosition as aA, DropdownItemNode as aB, DividerNode as aC, NavItem as aD, TabNode as aE, BreadcrumbItem as aF, SizeProps as aa, JustifyValue as ab, AlignValue as ac, DirectionValue as ad, FlexProps as ae, GridProps as af, CommonProps as ag, ShadowValue as ah, DrawerPosition as ai, TextSizeToken as aj, TextSize as ak, TextWeight as al, TextAlign as am, TitleLevel as an, InputType as ao, SelectOption as ap, ButtonVariant as aq, ButtonSize as ar, AvatarSize as as, BadgeVariant as at, BadgeSize as au, IconSize as av, ListItemNode as aw, AlertVariant as ax, ToastPosition as ay, SpinnerSize as az, SectionNode as b, ColNode as c, ContainerComponentNode as d, CardNode as e, ModalNode as f, AccordionNode as g, TextNode as h, TitleNode as i, LinkNode as j, InputNode as k, TextareaNode as l, SelectNode as m, CheckboxNode as n, RadioNode as o, SwitchNode as p, SliderNode as q, DisplayNode as r, ImageNode as s, PlaceholderNode as t, AvatarNode as u, BadgeNode as v, IconNode as w, DataNode as x, TableNode as y, ListNode as z };
|