@almadar/ui 5.149.0 → 5.150.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/avl/index.cjs +2313 -155
- package/dist/avl/index.js +2313 -155
- package/dist/components/index.cjs +2327 -153
- package/dist/components/index.d.cts +811 -15
- package/dist/components/index.d.ts +811 -15
- package/dist/components/index.js +2329 -155
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.js +1 -1
- package/dist/lib/drawable/three/index.cjs +1 -1
- package/dist/lib/drawable/three/index.js +1 -1
- package/dist/marketing/index.cjs +1 -1
- package/dist/marketing/index.js +1 -1
- package/dist/providers/index.cjs +2306 -149
- package/dist/providers/index.js +2306 -149
- package/dist/runtime/index.cjs +2313 -155
- package/dist/runtime/index.d.cts +2 -2
- package/dist/runtime/index.d.ts +2 -2
- package/dist/runtime/index.js +2313 -155
- package/package.json +3 -3
|
@@ -3486,7 +3486,7 @@ declare const GameShell: React__default.FC<GameShellProps>;
|
|
|
3486
3486
|
* @packageDocumentation
|
|
3487
3487
|
*/
|
|
3488
3488
|
|
|
3489
|
-
type LearningShapeType = 'line' | 'arrow' | 'circle' | 'rect' | 'polygon' | 'path' | 'text' | 'axis' | 'grid';
|
|
3489
|
+
type LearningShapeType = 'line' | 'arrow' | 'circle' | 'ellipse' | 'rect' | 'polygon' | 'path' | 'text' | 'axis' | 'grid' | 'venn-region';
|
|
3490
3490
|
interface LearningPoint {
|
|
3491
3491
|
x: number;
|
|
3492
3492
|
y: number;
|
|
@@ -3518,6 +3518,60 @@ interface LearningShape {
|
|
|
3518
3518
|
fill?: string;
|
|
3519
3519
|
lineWidth?: number;
|
|
3520
3520
|
opacity?: number;
|
|
3521
|
+
/** Ellipse arc start, in degrees (screen convention: 0 = +x, clockwise). Omit with `endAngle` for a full ellipse. */
|
|
3522
|
+
startAngle?: number;
|
|
3523
|
+
/** Ellipse arc end, in degrees (screen convention: 0 = +x, clockwise). Omit with `startAngle` for a full ellipse. */
|
|
3524
|
+
endAngle?: number;
|
|
3525
|
+
/** Stroke dash style for line/arrow/circle/rect/polygon/path/ellipse strokes; omit for a solid line. */
|
|
3526
|
+
dash?: 'dashed' | 'dotted';
|
|
3527
|
+
/** venn-region only: ids of sibling `circle` shapes; the filled region is the INTERSECTION of these circles. */
|
|
3528
|
+
inside?: string[];
|
|
3529
|
+
/** venn-region only: ids of sibling `circle` shapes SUBTRACTED from the `inside` intersection (true lens/exclusion shading). */
|
|
3530
|
+
outside?: string[];
|
|
3531
|
+
}
|
|
3532
|
+
/** A single top-right status chip (e.g. a live measurement or score). */
|
|
3533
|
+
interface LearningReadout {
|
|
3534
|
+
/** Chip label, shown before the value. */
|
|
3535
|
+
label: string;
|
|
3536
|
+
/** Chip value, shown after the label. */
|
|
3537
|
+
value: string | number;
|
|
3538
|
+
/** Chip fill/border color (default '#334155'). */
|
|
3539
|
+
color?: string;
|
|
3540
|
+
}
|
|
3541
|
+
/** One plotted line within a trace panel. */
|
|
3542
|
+
interface LearningTraceSeries {
|
|
3543
|
+
/** Time-series samples in world/data coordinates. */
|
|
3544
|
+
samples: LearningPoint[];
|
|
3545
|
+
/** Series line + dot color (defaults from TRACE_SERIES_COLORS by index). */
|
|
3546
|
+
color?: string;
|
|
3547
|
+
/** Series label drawn top-left inside the panel. */
|
|
3548
|
+
label?: string;
|
|
3549
|
+
}
|
|
3550
|
+
/**
|
|
3551
|
+
* A minimal in-canvas sparkline inset — no ticks/grid/legend. For real axes, compose
|
|
3552
|
+
* a MathCanvas instead.
|
|
3553
|
+
*/
|
|
3554
|
+
interface LearningTracePanel {
|
|
3555
|
+
/** Panel left edge (default anchors bottom-right, stacked upward per panel index). */
|
|
3556
|
+
x?: number;
|
|
3557
|
+
/** Panel top edge. */
|
|
3558
|
+
y?: number;
|
|
3559
|
+
/** Panel width (default 32% of canvas width). */
|
|
3560
|
+
width?: number;
|
|
3561
|
+
/** Panel height (default 28% of canvas height). */
|
|
3562
|
+
height?: number;
|
|
3563
|
+
/** Series drawn in this panel, auto-scaled to their combined extent. */
|
|
3564
|
+
series: LearningTraceSeries[];
|
|
3565
|
+
/** Bottom-right inside label, e.g. the x-axis quantity. */
|
|
3566
|
+
xLabel?: string;
|
|
3567
|
+
/** Top-right inside label, e.g. the y-axis quantity. */
|
|
3568
|
+
yLabel?: string;
|
|
3569
|
+
/** Panel border color (default '#94a3b8'). */
|
|
3570
|
+
frameColor?: string;
|
|
3571
|
+
/** Panel fill color (default '#ffffff'). */
|
|
3572
|
+
backgroundColor?: string;
|
|
3573
|
+
/** Panel fill opacity (default 0.85). */
|
|
3574
|
+
backgroundOpacity?: number;
|
|
3521
3575
|
}
|
|
3522
3576
|
interface LearningCanvasProps {
|
|
3523
3577
|
/** Additional CSS classes. */
|
|
@@ -3530,6 +3584,16 @@ interface LearningCanvasProps {
|
|
|
3530
3584
|
backgroundColor?: string;
|
|
3531
3585
|
/** Declarative shapes to draw. */
|
|
3532
3586
|
shapes?: LearningShape[];
|
|
3587
|
+
/**
|
|
3588
|
+
* Top-right status chip row (live measurements, scores, counters).
|
|
3589
|
+
* @synonyms chips, stats, measurements
|
|
3590
|
+
*/
|
|
3591
|
+
readouts?: LearningReadout[];
|
|
3592
|
+
/**
|
|
3593
|
+
* Inset sparkline panels stacked from the bottom-right corner.
|
|
3594
|
+
* @synonyms sparkline, time series, history plot
|
|
3595
|
+
*/
|
|
3596
|
+
traces?: LearningTracePanel[];
|
|
3533
3597
|
/** Enable pointer interaction (click/hover). */
|
|
3534
3598
|
interactive?: boolean;
|
|
3535
3599
|
/** Enable continuous redraw loop. */
|
|
@@ -5881,6 +5945,8 @@ interface MathCurve {
|
|
|
5881
5945
|
color?: string;
|
|
5882
5946
|
/** Sampled {x,y} points in math coordinates. */
|
|
5883
5947
|
samples: LearningPoint[];
|
|
5948
|
+
/** Stroke dash style for this curve's segments; omit for a solid line. */
|
|
5949
|
+
dash?: 'dashed' | 'dotted';
|
|
5884
5950
|
}
|
|
5885
5951
|
interface MathPoint {
|
|
5886
5952
|
x: number;
|
|
@@ -5888,6 +5954,8 @@ interface MathPoint {
|
|
|
5888
5954
|
label?: string;
|
|
5889
5955
|
color?: string;
|
|
5890
5956
|
radius?: number;
|
|
5957
|
+
/** 'open' draws a hollow ring (white fill, colored stroke); 'closed'/absent = filled dot. */
|
|
5958
|
+
style?: 'closed' | 'open';
|
|
5891
5959
|
}
|
|
5892
5960
|
interface MathVector {
|
|
5893
5961
|
x: number;
|
|
@@ -5897,6 +5965,83 @@ interface MathVector {
|
|
|
5897
5965
|
color?: string;
|
|
5898
5966
|
label?: string;
|
|
5899
5967
|
}
|
|
5968
|
+
/** A filled area between a curve and a baseline, or between two curves. */
|
|
5969
|
+
interface MathRegion {
|
|
5970
|
+
/** Upper (or only) boundary samples. */
|
|
5971
|
+
samples: LearningPoint[];
|
|
5972
|
+
/** Optional lower boundary samples; when absent the region closes at `baseline`. */
|
|
5973
|
+
samples2?: LearningPoint[];
|
|
5974
|
+
/** Baseline y-value the region closes against when `samples2` is absent (default 0). */
|
|
5975
|
+
baseline?: number;
|
|
5976
|
+
/** Fill/stroke color (default '#2563eb'). */
|
|
5977
|
+
color?: string;
|
|
5978
|
+
/** Fill opacity (default 0.2). */
|
|
5979
|
+
opacity?: number;
|
|
5980
|
+
/** Region label, centered inside the filled area. */
|
|
5981
|
+
label?: string;
|
|
5982
|
+
}
|
|
5983
|
+
/**
|
|
5984
|
+
* A single bar (riemann strip / histogram column) between two y-values at an x-span.
|
|
5985
|
+
* @synonyms riemann, histogram, bars
|
|
5986
|
+
*/
|
|
5987
|
+
interface MathBar {
|
|
5988
|
+
/** Left edge, in world x. */
|
|
5989
|
+
x: number;
|
|
5990
|
+
/** Bar width, in world x units. */
|
|
5991
|
+
width: number;
|
|
5992
|
+
/** Bottom y-value (default 0). */
|
|
5993
|
+
y0?: number;
|
|
5994
|
+
/** Top y-value. */
|
|
5995
|
+
y1: number;
|
|
5996
|
+
/** Fill/stroke color (default '#93c5fd'). */
|
|
5997
|
+
color?: string;
|
|
5998
|
+
/** Fill opacity (default 0.5). */
|
|
5999
|
+
opacity?: number;
|
|
6000
|
+
}
|
|
6001
|
+
/** A reference line spanning the plot, at a fixed x (vline) or y (hline). */
|
|
6002
|
+
interface MathGuide {
|
|
6003
|
+
/** 'vline' spans the plot vertically at world x = `at`; 'hline' spans horizontally at world y = `at`. */
|
|
6004
|
+
kind: 'vline' | 'hline';
|
|
6005
|
+
/** World coordinate the guide sits at. */
|
|
6006
|
+
at: number;
|
|
6007
|
+
/** Line color (default '#9ca3af'). */
|
|
6008
|
+
color?: string;
|
|
6009
|
+
/** Stroke dash style (default 'dashed'). */
|
|
6010
|
+
dash?: 'dashed' | 'dotted';
|
|
6011
|
+
/** Guide label, drawn near the plot edge. */
|
|
6012
|
+
label?: string;
|
|
6013
|
+
}
|
|
6014
|
+
/** An arc marking the angle swept between two directions at a vertex. */
|
|
6015
|
+
interface MathAngle {
|
|
6016
|
+
/** Vertex x, in world coordinates. */
|
|
6017
|
+
x: number;
|
|
6018
|
+
/** Vertex y, in world coordinates. */
|
|
6019
|
+
y: number;
|
|
6020
|
+
/** Sweep start, in degrees, math convention (CCW from +x). */
|
|
6021
|
+
from: number;
|
|
6022
|
+
/** Sweep end, in degrees, math convention (CCW from +x). */
|
|
6023
|
+
to: number;
|
|
6024
|
+
/** Arc radius, in world-x units (default 0.8). */
|
|
6025
|
+
radius?: number;
|
|
6026
|
+
/** Arc + label color (default '#0ea5e9'). */
|
|
6027
|
+
color?: string;
|
|
6028
|
+
/** Angle label. */
|
|
6029
|
+
label?: string;
|
|
6030
|
+
}
|
|
6031
|
+
/**
|
|
6032
|
+
* A jump arc between two points on the x-axis (number-line hop / interval jump).
|
|
6033
|
+
* @synonyms number line jump, hop arrow
|
|
6034
|
+
*/
|
|
6035
|
+
interface MathHop {
|
|
6036
|
+
/** Start x, in world coordinates. */
|
|
6037
|
+
from: number;
|
|
6038
|
+
/** End x, in world coordinates. */
|
|
6039
|
+
to: number;
|
|
6040
|
+
/** Arc + arrowhead color (default '#7c3aed'). */
|
|
6041
|
+
color?: string;
|
|
6042
|
+
/** Hop label, centered above the arc. */
|
|
6043
|
+
label?: string;
|
|
6044
|
+
}
|
|
5900
6045
|
interface MathCanvasProps {
|
|
5901
6046
|
className?: string;
|
|
5902
6047
|
width?: number;
|
|
@@ -5909,11 +6054,29 @@ interface MathCanvasProps {
|
|
|
5909
6054
|
showAxes?: boolean;
|
|
5910
6055
|
showGrid?: boolean;
|
|
5911
6056
|
gridStep?: number;
|
|
6057
|
+
/** Draw numeric labels on grid lines (default false). */
|
|
6058
|
+
showTickLabels?: boolean;
|
|
6059
|
+
/** Draw each curve's `label` at its last in-range sample (default false). */
|
|
6060
|
+
showCurveLabels?: boolean;
|
|
5912
6061
|
curves?: MathCurve[];
|
|
5913
6062
|
points?: MathPoint[];
|
|
5914
6063
|
vectors?: MathVector[];
|
|
6064
|
+
/** Filled areas under curves or between curve pairs. */
|
|
6065
|
+
regions?: MathRegion[];
|
|
6066
|
+
/** Riemann/histogram bar strips. */
|
|
6067
|
+
bars?: MathBar[];
|
|
6068
|
+
/** Fixed reference lines (vline/hline). */
|
|
6069
|
+
guides?: MathGuide[];
|
|
6070
|
+
/** Angle-sweep arcs at a vertex. */
|
|
6071
|
+
angles?: MathAngle[];
|
|
6072
|
+
/** Number-line jump arcs. */
|
|
6073
|
+
hops?: MathHop[];
|
|
5915
6074
|
/** Extra declarative shapes in canvas pixel coordinates. */
|
|
5916
6075
|
shapes?: LearningShape[];
|
|
6076
|
+
/** Top-right status chips, forwarded verbatim to LearningCanvas. */
|
|
6077
|
+
readouts?: LearningReadout[];
|
|
6078
|
+
/** Inset sparkline panels, forwarded verbatim to LearningCanvas. */
|
|
6079
|
+
traces?: LearningTracePanel[];
|
|
5917
6080
|
interactive?: boolean;
|
|
5918
6081
|
animate?: boolean;
|
|
5919
6082
|
onShapeClick?: (payload: {
|
|
@@ -5958,6 +6121,198 @@ interface LearningPhysicsConstraint {
|
|
|
5958
6121
|
from: string;
|
|
5959
6122
|
to: string;
|
|
5960
6123
|
color?: string;
|
|
6124
|
+
/** Draw style: rigid line (default), zigzag coil, or dashed tether. 2D only — 3D always draws a rod. */
|
|
6125
|
+
kind?: 'rod' | 'spring' | 'string';
|
|
6126
|
+
}
|
|
6127
|
+
/** Fixed scene fixture kind: ground/wall/ramp/box/pivot. */
|
|
6128
|
+
type PhysicsSceneObjectKind = 'ground' | 'wall' | 'ramp' | 'box' | 'pivot';
|
|
6129
|
+
/**
|
|
6130
|
+
* A static, non-body scene fixture with a hatching pattern and an optional label.
|
|
6131
|
+
* @synonyms ground, wall, ramp, incline, pivot, floor
|
|
6132
|
+
*/
|
|
6133
|
+
interface PhysicsSceneObject {
|
|
6134
|
+
/** Fixture kind; each kind reads its own subset of the point/span fields below. */
|
|
6135
|
+
kind: PhysicsSceneObjectKind;
|
|
6136
|
+
/** Point kinds: wall x, pivot x, box origin x. */
|
|
6137
|
+
x?: number;
|
|
6138
|
+
/** Point kinds: ground y, pivot y, box origin y. */
|
|
6139
|
+
y?: number;
|
|
6140
|
+
/** Span/ramp endpoint 1 x. */
|
|
6141
|
+
x1?: number;
|
|
6142
|
+
/** Span/ramp endpoint 1 y. */
|
|
6143
|
+
y1?: number;
|
|
6144
|
+
/** Span/ramp endpoint 2 x. */
|
|
6145
|
+
x2?: number;
|
|
6146
|
+
/** Span/ramp endpoint 2 y. */
|
|
6147
|
+
y2?: number;
|
|
6148
|
+
/** Box width. */
|
|
6149
|
+
width?: number;
|
|
6150
|
+
/** Box height. */
|
|
6151
|
+
height?: number;
|
|
6152
|
+
/** Stroke + hatch color (default '#334155'). */
|
|
6153
|
+
color?: string;
|
|
6154
|
+
/** Fill color; ramp defaults to '#e2e8f0'. */
|
|
6155
|
+
fill?: string;
|
|
6156
|
+
/** Fixture label. */
|
|
6157
|
+
label?: string;
|
|
6158
|
+
}
|
|
6159
|
+
/**
|
|
6160
|
+
* A named, labeled arrow anchored to a fixed point or to a body's live position.
|
|
6161
|
+
* @synonyms force arrow, labeled arrow, free body diagram
|
|
6162
|
+
*/
|
|
6163
|
+
interface PhysicsVector {
|
|
6164
|
+
/** Anchor x; ignored when `body` resolves to a body. */
|
|
6165
|
+
x?: number;
|
|
6166
|
+
/** Anchor y; ignored when `body` resolves to a body. */
|
|
6167
|
+
y?: number;
|
|
6168
|
+
/** Anchor at this body's position, overriding `x`/`y`. */
|
|
6169
|
+
body?: string;
|
|
6170
|
+
/** Arrow x-component in pixels, before `scale`. */
|
|
6171
|
+
dx: number;
|
|
6172
|
+
/** Arrow y-component in pixels, before `scale`. */
|
|
6173
|
+
dy: number;
|
|
6174
|
+
/** Multiplies `dx`/`dy` (default 1). */
|
|
6175
|
+
scale?: number;
|
|
6176
|
+
/** Arrow + label color (default '#dc2626'). */
|
|
6177
|
+
color?: string;
|
|
6178
|
+
/** Label drawn at the tip, offset 8px further along the arrow direction. */
|
|
6179
|
+
label?: string;
|
|
6180
|
+
/** Stroke dash style (default solid). */
|
|
6181
|
+
dash?: 'dashed' | 'dotted';
|
|
6182
|
+
}
|
|
6183
|
+
/** A trail point in canvas pixel coordinates. */
|
|
6184
|
+
interface PhysicsTrailPoint {
|
|
6185
|
+
x: number;
|
|
6186
|
+
y: number;
|
|
6187
|
+
/** 3D mode only; 2D ignores it. */
|
|
6188
|
+
z?: number;
|
|
6189
|
+
}
|
|
6190
|
+
/**
|
|
6191
|
+
* A fading trajectory polyline through recent body positions.
|
|
6192
|
+
* @synonyms trajectory, path, trace, orbit, orbit path, trajectory tube
|
|
6193
|
+
*/
|
|
6194
|
+
interface PhysicsTrail {
|
|
6195
|
+
/** Authoring handle only — not clickable. */
|
|
6196
|
+
id?: string;
|
|
6197
|
+
points: PhysicsTrailPoint[];
|
|
6198
|
+
/** Line color (default '#94a3b8'). */
|
|
6199
|
+
color?: string;
|
|
6200
|
+
/** 2D: stroke width in pixels (default 2). 3D: tube radius in scene cells (default 0.05). */
|
|
6201
|
+
width?: number;
|
|
6202
|
+
/** Multiplies the per-segment fade opacity (default 1). */
|
|
6203
|
+
opacity?: number;
|
|
6204
|
+
/** Older segments fade toward transparent (default true). 2D only — 3D always draws an opaque tube. */
|
|
6205
|
+
fade?: boolean;
|
|
6206
|
+
}
|
|
6207
|
+
/** One elevation color band for a `surface3d` height field; sorted ascending by `min`. */
|
|
6208
|
+
interface PhysicsSurfaceBand {
|
|
6209
|
+
/** Inclusive floor height in cells; omit for the catch-all lowest band. */
|
|
6210
|
+
min?: number;
|
|
6211
|
+
color: string;
|
|
6212
|
+
}
|
|
6213
|
+
/**
|
|
6214
|
+
* A 3D height-field mesh (a wave, a terrain, a potential surface) rendered
|
|
6215
|
+
* from a row-major grid of heights. 3D only.
|
|
6216
|
+
* @synonyms heightfield, wave surface, terrain, potential surface
|
|
6217
|
+
*/
|
|
6218
|
+
interface PhysicsSurface3D {
|
|
6219
|
+
/** Grid columns. */
|
|
6220
|
+
nx: number;
|
|
6221
|
+
/** Grid rows. */
|
|
6222
|
+
ny: number;
|
|
6223
|
+
/** Vertex heights, length `nx*ny`, row-major: `heights[iy*nx+ix]`. */
|
|
6224
|
+
heights: number[];
|
|
6225
|
+
/** Cell spacing in scene cells (default 1). */
|
|
6226
|
+
spacing?: number;
|
|
6227
|
+
/** Sheet center x on the ground plane (default 0). */
|
|
6228
|
+
x?: number;
|
|
6229
|
+
/** Sheet center y on the ground plane (default 0). */
|
|
6230
|
+
y?: number;
|
|
6231
|
+
/** Elevation color bands; omitted → a single flat-colored sheet. */
|
|
6232
|
+
bands?: PhysicsSurfaceBand[];
|
|
6233
|
+
/** Fallback color when `bands` is omitted (default '#64748b'). */
|
|
6234
|
+
color?: string;
|
|
6235
|
+
opacity?: number;
|
|
6236
|
+
/** Faceted low-poly shading (default true). */
|
|
6237
|
+
flatShading?: boolean;
|
|
6238
|
+
}
|
|
6239
|
+
/**
|
|
6240
|
+
* A single labeled 3D arrow (field arrow, axis-triad leg, force/velocity
|
|
6241
|
+
* vector), rendered via `vectors3d` + `vectorScale`. 3D only.
|
|
6242
|
+
* @synonyms 3D arrows, field arrows, axis triad
|
|
6243
|
+
*/
|
|
6244
|
+
interface PhysicsVector3D {
|
|
6245
|
+
/** Clickable when present. */
|
|
6246
|
+
id?: string;
|
|
6247
|
+
/** Tail position, cells. */
|
|
6248
|
+
x: number;
|
|
6249
|
+
y: number;
|
|
6250
|
+
/** Tail height (default 0). */
|
|
6251
|
+
z?: number;
|
|
6252
|
+
/** Vector components, cells, before `vectorScale`. */
|
|
6253
|
+
dx: number;
|
|
6254
|
+
dy: number;
|
|
6255
|
+
/** Height component (default 0). */
|
|
6256
|
+
dz?: number;
|
|
6257
|
+
/** Arrow + label color (default '#dc2626'). */
|
|
6258
|
+
color?: string;
|
|
6259
|
+
/** Billboard label at the tip. */
|
|
6260
|
+
label?: string;
|
|
6261
|
+
/** Shaft radius in scene cells (default 0.05). */
|
|
6262
|
+
width?: number;
|
|
6263
|
+
}
|
|
6264
|
+
/**
|
|
6265
|
+
* A screen-convention angle arc between two bearings, with a label past the arc.
|
|
6266
|
+
* @synonyms angle arc, theta, incline angle
|
|
6267
|
+
*/
|
|
6268
|
+
interface PhysicsAngleMarker {
|
|
6269
|
+
x: number;
|
|
6270
|
+
y: number;
|
|
6271
|
+
/** Start bearing, degrees, screen convention (0 = +x, clockwise). */
|
|
6272
|
+
from: number;
|
|
6273
|
+
/** End bearing, degrees, screen convention (0 = +x, clockwise). */
|
|
6274
|
+
to: number;
|
|
6275
|
+
/** Arc radius in pixels (default 26). */
|
|
6276
|
+
radius?: number;
|
|
6277
|
+
/** Arc + label color (default '#0ea5e9'). */
|
|
6278
|
+
color?: string;
|
|
6279
|
+
/** Label drawn past the arc, along the bisecting bearing. */
|
|
6280
|
+
label?: string;
|
|
6281
|
+
}
|
|
6282
|
+
/**
|
|
6283
|
+
* A single uniform vector/into-page/out-of-page lattice drawn over a region.
|
|
6284
|
+
* @synonyms magnetic field, into page, out of page, field grid
|
|
6285
|
+
*/
|
|
6286
|
+
interface PhysicsField {
|
|
6287
|
+
kind: 'arrows' | 'into' | 'out';
|
|
6288
|
+
/** Lattice cell size in pixels (default 48). */
|
|
6289
|
+
spacing?: number;
|
|
6290
|
+
/** Arrow bearing in degrees, screen convention; `arrows` kind only (default 0). */
|
|
6291
|
+
angle?: number;
|
|
6292
|
+
/** Glyph size in pixels (default 14). */
|
|
6293
|
+
size?: number;
|
|
6294
|
+
/** Glyph color (default '#94a3b8'). */
|
|
6295
|
+
color?: string;
|
|
6296
|
+
/** Region left edge (default 0). */
|
|
6297
|
+
x?: number;
|
|
6298
|
+
/** Region top edge (default 0). */
|
|
6299
|
+
y?: number;
|
|
6300
|
+
/** Region width (default canvas width). */
|
|
6301
|
+
width?: number;
|
|
6302
|
+
/** Region height (default canvas height). */
|
|
6303
|
+
height?: number;
|
|
6304
|
+
}
|
|
6305
|
+
/**
|
|
6306
|
+
* A bottom-left labeled bar gauge for a scalar quantity (energy, speed, charge, ...).
|
|
6307
|
+
* @synonyms energy bar, KE, PE, gauge
|
|
6308
|
+
*/
|
|
6309
|
+
interface PhysicsMeter {
|
|
6310
|
+
label: string;
|
|
6311
|
+
value: number;
|
|
6312
|
+
/** Full-bar value (default: the max value across all meters, so bars stay comparable). */
|
|
6313
|
+
max?: number;
|
|
6314
|
+
/** Bar + value color (default '#3b82f6'). */
|
|
6315
|
+
color?: string;
|
|
5961
6316
|
}
|
|
5962
6317
|
interface PhysicsCanvasProps {
|
|
5963
6318
|
className?: string;
|
|
@@ -5979,8 +6334,30 @@ interface PhysicsCanvasProps {
|
|
|
5979
6334
|
showForces?: boolean;
|
|
5980
6335
|
velocityScale?: number;
|
|
5981
6336
|
forceScale?: number;
|
|
6337
|
+
/** Ground/wall/ramp/box/pivot scene fixtures. 2D only. */
|
|
6338
|
+
sceneObjects?: PhysicsSceneObject[];
|
|
6339
|
+
/** Fading trajectory polylines (2D) / trajectory tubes (3D). */
|
|
6340
|
+
trails?: PhysicsTrail[];
|
|
6341
|
+
/** Named force/velocity/free-body arrows, anchored by point or by body id. 2D only. */
|
|
6342
|
+
vectors?: PhysicsVector[];
|
|
6343
|
+
/** A 3D height-field surface mesh (wave, terrain, potential well). 3D only. */
|
|
6344
|
+
surface3d?: PhysicsSurface3D;
|
|
6345
|
+
/** Labeled 3D arrows (field arrows, axis triads). 3D only. */
|
|
6346
|
+
vectors3d?: PhysicsVector3D[];
|
|
6347
|
+
/** Multiplies every `vectors3d` entry's `dx`/`dy`/`dz` (default 1). 3D only. */
|
|
6348
|
+
vectorScale?: number;
|
|
6349
|
+
/** Angle arcs between two bearings. 2D only. */
|
|
6350
|
+
angles?: PhysicsAngleMarker[];
|
|
6351
|
+
/** A single uniform vector/into/out field lattice. 2D only. */
|
|
6352
|
+
field?: PhysicsField;
|
|
6353
|
+
/** Bottom-left labeled bar gauges. 2D only. */
|
|
6354
|
+
meters?: PhysicsMeter[];
|
|
5982
6355
|
/** Extra declarative shapes in canvas pixel coordinates (2D mode only — ignored in 3D). */
|
|
5983
6356
|
shapes?: LearningShape[];
|
|
6357
|
+
/** Top-right status chip row, forwarded to LearningCanvas verbatim. */
|
|
6358
|
+
readouts?: LearningReadout[];
|
|
6359
|
+
/** Inset sparkline panels, forwarded to LearningCanvas verbatim. */
|
|
6360
|
+
traces?: LearningTracePanel[];
|
|
5984
6361
|
/** 3D only: show the ground grid (default off). */
|
|
5985
6362
|
showGrid?: boolean;
|
|
5986
6363
|
/** 3D only: enable shadows. Omitted → the host default. */
|
|
@@ -6022,12 +6399,129 @@ interface BiologyNode {
|
|
|
6022
6399
|
shape?: MeshShapeKind;
|
|
6023
6400
|
/** 3D mode only: 0..1 mesh opacity (translucent shells, e.g. a cell membrane). */
|
|
6024
6401
|
opacity?: number;
|
|
6402
|
+
/** Visual emphasis (default 'default'). 2D only. */
|
|
6403
|
+
state?: BiologyNodeState;
|
|
6025
6404
|
}
|
|
6405
|
+
/** Node emphasis vocabulary: 'highlight' rings the node, 'muted' fades node + label to 0.35 opacity. */
|
|
6406
|
+
type BiologyNodeState = 'default' | 'highlight' | 'muted';
|
|
6026
6407
|
interface BiologyEdge {
|
|
6027
6408
|
from: string;
|
|
6028
6409
|
to: string;
|
|
6029
6410
|
color?: string;
|
|
6030
6411
|
label?: string;
|
|
6412
|
+
/**
|
|
6413
|
+
* Draws a rim-shortened arrowhead instead of a plain line (default false). 2D only.
|
|
6414
|
+
* @synonyms arrow, flow direction
|
|
6415
|
+
*/
|
|
6416
|
+
directed?: boolean;
|
|
6417
|
+
}
|
|
6418
|
+
/** An organelle/cell-boundary ellipse outline. */
|
|
6419
|
+
interface BiologyCompartment {
|
|
6420
|
+
x: number;
|
|
6421
|
+
y: number;
|
|
6422
|
+
/** Ellipse full width (diameter). */
|
|
6423
|
+
width: number;
|
|
6424
|
+
/** Ellipse full height (diameter). */
|
|
6425
|
+
height: number;
|
|
6426
|
+
/** Centered near the top of the ellipse. */
|
|
6427
|
+
label?: string;
|
|
6428
|
+
/** Outline color (default '#16a34a'). */
|
|
6429
|
+
color?: string;
|
|
6430
|
+
/** Fill color (default = `color` at ~10% alpha). */
|
|
6431
|
+
fill?: string;
|
|
6432
|
+
dash?: 'dashed' | 'dotted';
|
|
6433
|
+
/** Outline stroke width (default 2). */
|
|
6434
|
+
lineWidth?: number;
|
|
6435
|
+
}
|
|
6436
|
+
/** A horizontal background stripe spanning the canvas (e.g. a trophic level or elevation zone). */
|
|
6437
|
+
interface BiologyBand {
|
|
6438
|
+
label?: string;
|
|
6439
|
+
/** Fill/stroke color (default cycles BIO_BAND_COLORS by index). */
|
|
6440
|
+
color?: string;
|
|
6441
|
+
}
|
|
6442
|
+
type BiologyStageState = 'pending' | 'active' | 'done';
|
|
6443
|
+
/** A phase/step chip in a `stages` timeline or ring. */
|
|
6444
|
+
interface BiologyStage {
|
|
6445
|
+
label: string;
|
|
6446
|
+
/** Progress state driving fill/text color (default 'pending'). */
|
|
6447
|
+
state?: BiologyStageState;
|
|
6448
|
+
/** Overrides the state-derived fill color. */
|
|
6449
|
+
color?: string;
|
|
6450
|
+
}
|
|
6451
|
+
/** One base pair (rung) of a `helix` ladder. */
|
|
6452
|
+
interface BiologyHelixRung {
|
|
6453
|
+
/** Base letter on strand A (top). */
|
|
6454
|
+
a?: string;
|
|
6455
|
+
/** Base letter on strand B (bottom). */
|
|
6456
|
+
b?: string;
|
|
6457
|
+
/** 'new' renders the rung in the newly-synthesized color (default '#16a34a'); 'open'/'paired' drive strand separation. */
|
|
6458
|
+
state?: 'paired' | 'open' | 'new';
|
|
6459
|
+
/** Overrides the state-derived rung color. */
|
|
6460
|
+
color?: string;
|
|
6461
|
+
}
|
|
6462
|
+
/** A DNA double-helix ladder rendered as two strand polylines plus rungs, with an optional unzipped fork. */
|
|
6463
|
+
interface BiologyHelix {
|
|
6464
|
+
/** Panel left edge (default 24). */
|
|
6465
|
+
x?: number;
|
|
6466
|
+
/** Panel top edge (default canvas height * 0.25). */
|
|
6467
|
+
y?: number;
|
|
6468
|
+
/** Panel width (default canvas width - 48). */
|
|
6469
|
+
width?: number;
|
|
6470
|
+
/** Panel height (default canvas height * 0.5). */
|
|
6471
|
+
height?: number;
|
|
6472
|
+
rungs: BiologyHelixRung[];
|
|
6473
|
+
/** Unzipped fraction from the left, 0..1 (default 0 = fully paired). */
|
|
6474
|
+
fork?: number;
|
|
6475
|
+
/** Strand A (top) color (default '#2563eb'). */
|
|
6476
|
+
colorA?: string;
|
|
6477
|
+
/** Strand B (bottom) color (default '#dc2626'). */
|
|
6478
|
+
colorB?: string;
|
|
6479
|
+
/** Default paired-rung color (default '#94a3b8'). */
|
|
6480
|
+
rungColor?: string;
|
|
6481
|
+
}
|
|
6482
|
+
/** One base-pair rung of a 3D `helix3d` ladder. */
|
|
6483
|
+
interface BiologyHelixRung3D {
|
|
6484
|
+
/** Clickable when present — stamped on this rung's marker sphere. */
|
|
6485
|
+
id?: string;
|
|
6486
|
+
/** Rung cylinder + marker color (default '#94a3b8'). */
|
|
6487
|
+
color?: string;
|
|
6488
|
+
/** Marker sphere radius override (e.g. selection enlargement). */
|
|
6489
|
+
radius?: number;
|
|
6490
|
+
/** Billboard label above the marker. */
|
|
6491
|
+
label?: string;
|
|
6492
|
+
}
|
|
6493
|
+
/**
|
|
6494
|
+
* A 3D DNA double-helix: two beaded backbone strands plus a base-pair rung
|
|
6495
|
+
* per index, optionally unwound (replication-fork style) at one end. 3D only.
|
|
6496
|
+
* @synonyms DNA double helix, base pairs 3D
|
|
6497
|
+
*/
|
|
6498
|
+
interface BiologyHelix3D {
|
|
6499
|
+
/** Rung count; defaults to `rungs.length`. One of `count`/`rungs` is required. */
|
|
6500
|
+
count?: number;
|
|
6501
|
+
/** Per-rung overrides, padded with defaults up to `count`. */
|
|
6502
|
+
rungs?: BiologyHelixRung3D[];
|
|
6503
|
+
/** Helix radius in scene cells (default 1). */
|
|
6504
|
+
radius?: number;
|
|
6505
|
+
/** Rise per rung along the helix axis (default 0.34). */
|
|
6506
|
+
rise?: number;
|
|
6507
|
+
/** Twist per rung in degrees (default 36). */
|
|
6508
|
+
twistDeg?: number;
|
|
6509
|
+
/** Strand A (top) color (default '#38bdf8'). */
|
|
6510
|
+
strandAColor?: string;
|
|
6511
|
+
/** Strand B (bottom) color (default '#fb923c'). */
|
|
6512
|
+
strandBColor?: string;
|
|
6513
|
+
/** Backbone strand cylinder + bead radius (default 0.16). */
|
|
6514
|
+
backboneRadius?: number;
|
|
6515
|
+
/** Rung cylinder radius, and the marker sphere's default radius (default 0.12). */
|
|
6516
|
+
rungRadius?: number;
|
|
6517
|
+
/** Helix center; the helix axis runs along scene y. */
|
|
6518
|
+
x?: number;
|
|
6519
|
+
y?: number;
|
|
6520
|
+
z?: number;
|
|
6521
|
+
/** Rungs `0..unwoundCount-1` spread by `unwindSpread` instead of `radius` (default 0). */
|
|
6522
|
+
unwoundCount?: number;
|
|
6523
|
+
/** Spread multiplier for unwound rungs (default 1.8). */
|
|
6524
|
+
unwindSpread?: number;
|
|
6031
6525
|
}
|
|
6032
6526
|
interface BiologyCanvasProps {
|
|
6033
6527
|
className?: string;
|
|
@@ -6045,8 +6539,36 @@ interface BiologyCanvasProps {
|
|
|
6045
6539
|
post?: CanvasPost;
|
|
6046
6540
|
nodes?: BiologyNode[];
|
|
6047
6541
|
edges?: BiologyEdge[];
|
|
6542
|
+
/**
|
|
6543
|
+
* Organelle/membrane/cell-boundary ellipses (2D only).
|
|
6544
|
+
* @synonyms membrane, organelle region, cell boundary
|
|
6545
|
+
*/
|
|
6546
|
+
compartments?: BiologyCompartment[];
|
|
6547
|
+
/**
|
|
6548
|
+
* Full-width horizontal background stripes, drawn first (2D only).
|
|
6549
|
+
* @synonyms trophic levels, zones, layers
|
|
6550
|
+
*/
|
|
6551
|
+
bands?: BiologyBand[];
|
|
6552
|
+
/**
|
|
6553
|
+
* Phase/step chips (2D only).
|
|
6554
|
+
* @synonyms phases, timeline, cycle
|
|
6555
|
+
*/
|
|
6556
|
+
stages?: BiologyStage[];
|
|
6557
|
+
/** Layout for `stages`: a bottom timeline strip (default) or a radial ring. */
|
|
6558
|
+
stageStyle?: 'timeline' | 'ring';
|
|
6559
|
+
/**
|
|
6560
|
+
* A DNA double-helix ladder panel (2D only).
|
|
6561
|
+
* @synonyms DNA ladder, replication fork, base pairs
|
|
6562
|
+
*/
|
|
6563
|
+
helix?: BiologyHelix;
|
|
6564
|
+
/** A 3D DNA double-helix ladder. 3D only. */
|
|
6565
|
+
helix3d?: BiologyHelix3D;
|
|
6048
6566
|
/** Extra declarative shapes in canvas pixel coordinates (2D mode only — ignored in 3D). */
|
|
6049
6567
|
shapes?: LearningShape[];
|
|
6568
|
+
/** Top-right status chip row, forwarded to LearningCanvas verbatim. */
|
|
6569
|
+
readouts?: LearningReadout[];
|
|
6570
|
+
/** Inset sparkline panels, forwarded to LearningCanvas verbatim. */
|
|
6571
|
+
traces?: LearningTracePanel[];
|
|
6050
6572
|
/** 3D only: show the ground grid (default off). */
|
|
6051
6573
|
showGrid?: boolean;
|
|
6052
6574
|
/** 3D only: enable shadows. Omitted → the host default. */
|
|
@@ -6083,12 +6605,47 @@ interface ChemistryAtom {
|
|
|
6083
6605
|
element?: string;
|
|
6084
6606
|
radius?: number;
|
|
6085
6607
|
color?: string;
|
|
6608
|
+
/** Ionic charge label (e.g. '2+', '-'), drawn top-right of the atom. 2D only. */
|
|
6609
|
+
charge?: string;
|
|
6610
|
+
/** Lone electron pairs (clamped 0..4), drawn as compass-positioned dot pairs. 2D only. */
|
|
6611
|
+
lonePairs?: number;
|
|
6086
6612
|
}
|
|
6087
6613
|
interface ChemistryBond {
|
|
6088
6614
|
from: string;
|
|
6089
6615
|
to: string;
|
|
6090
6616
|
type?: 'single' | 'double' | 'triple';
|
|
6091
6617
|
color?: string;
|
|
6618
|
+
/** Reaction-state coloring (overridden by an explicit `color`). 2D only. */
|
|
6619
|
+
state?: ChemistryBondState;
|
|
6620
|
+
}
|
|
6621
|
+
/** Bond reaction-state vocabulary: forming/breaking bonds also render dashed. */
|
|
6622
|
+
type ChemistryBondState = 'default' | 'forming' | 'breaking' | 'highlight';
|
|
6623
|
+
/** A beaker/flask/container outline, optionally split by a divider and filled to a liquid level. */
|
|
6624
|
+
interface ChemistryContainer {
|
|
6625
|
+
x: number;
|
|
6626
|
+
y: number;
|
|
6627
|
+
width: number;
|
|
6628
|
+
height: number;
|
|
6629
|
+
/** Outline + label color (default '#64748b'). */
|
|
6630
|
+
color?: string;
|
|
6631
|
+
/** Fill color for the outline rect itself (independent of the liquid level fill). */
|
|
6632
|
+
fill?: string;
|
|
6633
|
+
/** Outline stroke width (default 2). */
|
|
6634
|
+
lineWidth?: number;
|
|
6635
|
+
/** Vertical divider at the container's mid-width (default 'none'). */
|
|
6636
|
+
divider?: 'none' | 'solid' | 'dashed' | 'dotted';
|
|
6637
|
+
/** Divider color (default = `color`). */
|
|
6638
|
+
dividerColor?: string;
|
|
6639
|
+
/** Label centered in the left half, near the top. */
|
|
6640
|
+
leftLabel?: string;
|
|
6641
|
+
/** Label centered in the right half, near the top. */
|
|
6642
|
+
rightLabel?: string;
|
|
6643
|
+
/** Label centered below the container. */
|
|
6644
|
+
label?: string;
|
|
6645
|
+
/** Liquid fill level, 0..1 from the bottom. */
|
|
6646
|
+
level?: number;
|
|
6647
|
+
/** Liquid fill color (default '#60a5fa'). */
|
|
6648
|
+
levelColor?: string;
|
|
6092
6649
|
}
|
|
6093
6650
|
interface ChemistryArrow {
|
|
6094
6651
|
x: number;
|
|
@@ -6098,6 +6655,67 @@ interface ChemistryArrow {
|
|
|
6098
6655
|
color?: string;
|
|
6099
6656
|
label?: string;
|
|
6100
6657
|
}
|
|
6658
|
+
/** One basis site of a `lattice3d` crystal, replicated across the generated block. */
|
|
6659
|
+
interface ChemistryLatticeSite {
|
|
6660
|
+
/** Basis-site key; bonds reference sites by key, not by generated id. */
|
|
6661
|
+
key: string;
|
|
6662
|
+
/** Fractional cell offset, 0..1. */
|
|
6663
|
+
dx: number;
|
|
6664
|
+
dy: number;
|
|
6665
|
+
dz: number;
|
|
6666
|
+
element?: string;
|
|
6667
|
+
/** Marker color (default '#2563eb'). */
|
|
6668
|
+
color?: string;
|
|
6669
|
+
/** Marker radius (default 0.3). */
|
|
6670
|
+
radius?: number;
|
|
6671
|
+
/** Replicate on the +x face so the boundary plane completes (n+1 planes along x). */
|
|
6672
|
+
xEdge?: boolean;
|
|
6673
|
+
/** Replicate on the +y face so the boundary plane completes (n+1 planes along y). */
|
|
6674
|
+
yEdge?: boolean;
|
|
6675
|
+
/** Replicate on the +z face so the boundary plane completes (n+1 planes along z). */
|
|
6676
|
+
zEdge?: boolean;
|
|
6677
|
+
}
|
|
6678
|
+
/** A bond rule generating one cylinder per valid `from`→`to` site-instance pair. */
|
|
6679
|
+
interface ChemistryLatticeBond {
|
|
6680
|
+
/** Basis-site key this bond originates from. */
|
|
6681
|
+
from: string;
|
|
6682
|
+
/** Basis-site key this bond targets. */
|
|
6683
|
+
to: string;
|
|
6684
|
+
/** Integer cell-index displacement of `to` relative to `from`'s (i, j, k) (default 0 each). */
|
|
6685
|
+
dx?: number;
|
|
6686
|
+
dy?: number;
|
|
6687
|
+
dz?: number;
|
|
6688
|
+
/** Bond color (default '#6b7280'). */
|
|
6689
|
+
color?: string;
|
|
6690
|
+
}
|
|
6691
|
+
/**
|
|
6692
|
+
* A 3D crystal lattice (simple cubic, BCC, FCC, rock salt, diamond, ...)
|
|
6693
|
+
* generated procedurally from a fractional basis + bond rules into a block
|
|
6694
|
+
* centered on the origin. 3D only.
|
|
6695
|
+
* @synonyms crystal lattice, unit cell, BCC FCC
|
|
6696
|
+
*/
|
|
6697
|
+
interface ChemistryLattice3D {
|
|
6698
|
+
basis: ChemistryLatticeSite[];
|
|
6699
|
+
/** Unit cells replicated along x/y/z (default 2 each). */
|
|
6700
|
+
nx?: number;
|
|
6701
|
+
ny?: number;
|
|
6702
|
+
nz?: number;
|
|
6703
|
+
/** Edge length of one unit cell in scene cells (default 2). */
|
|
6704
|
+
latticeConstant?: number;
|
|
6705
|
+
bonds?: ChemistryLatticeBond[];
|
|
6706
|
+
/** Bond cylinder radius (default 0.06). */
|
|
6707
|
+
bondRadius?: number;
|
|
6708
|
+
/** Dim every generated site outside unit cell (0,0,0) with `dimColor`; bonds with a dimmed endpoint dim too. */
|
|
6709
|
+
highlightCell?: boolean;
|
|
6710
|
+
/** Dim color for `highlightCell` (default '#475569'). */
|
|
6711
|
+
dimColor?: string;
|
|
6712
|
+
/** Billboard each site's `element` above its marker (default false). */
|
|
6713
|
+
showLabels?: boolean;
|
|
6714
|
+
/** Generated site id (`lat-{key}-{i}-{j}-{k}`, as delivered by onShapeClick) to enlarge and recolor as the selection. */
|
|
6715
|
+
selectedId?: string;
|
|
6716
|
+
/** Selected-site color (default '#f59e0b'). */
|
|
6717
|
+
selectedColor?: string;
|
|
6718
|
+
}
|
|
6101
6719
|
interface ChemistryCanvasProps {
|
|
6102
6720
|
className?: string;
|
|
6103
6721
|
width?: number;
|
|
@@ -6115,8 +6733,28 @@ interface ChemistryCanvasProps {
|
|
|
6115
6733
|
atoms?: ChemistryAtom[];
|
|
6116
6734
|
bonds?: ChemistryBond[];
|
|
6117
6735
|
arrows?: ChemistryArrow[];
|
|
6736
|
+
/** Bond line rendering: 'thick' varies stroke width by order (default), 'parallel' draws offset parallel strokes. 2D only. */
|
|
6737
|
+
bondStyle?: 'thick' | 'parallel';
|
|
6738
|
+
/**
|
|
6739
|
+
* Beaker/flask/container outlines (2D only).
|
|
6740
|
+
* @synonyms beaker, flask, box, membrane, burette
|
|
6741
|
+
*/
|
|
6742
|
+
containers?: ChemistryContainer[];
|
|
6743
|
+
/**
|
|
6744
|
+
* Reaction equation text centered at the top of the canvas. 2D only.
|
|
6745
|
+
* @synonyms reaction equation, formula
|
|
6746
|
+
*/
|
|
6747
|
+
equation?: string;
|
|
6748
|
+
/** Equation text color (default '#111827'). */
|
|
6749
|
+
equationColor?: string;
|
|
6750
|
+
/** A 3D crystal lattice block (simple cubic, BCC, FCC, rock salt, diamond, ...). 3D only. */
|
|
6751
|
+
lattice3d?: ChemistryLattice3D;
|
|
6118
6752
|
/** Extra declarative shapes in canvas pixel coordinates (2D mode only — ignored in 3D). */
|
|
6119
6753
|
shapes?: LearningShape[];
|
|
6754
|
+
/** Top-right status chip row, forwarded to LearningCanvas verbatim. */
|
|
6755
|
+
readouts?: LearningReadout[];
|
|
6756
|
+
/** Inset sparkline panels, forwarded to LearningCanvas verbatim. */
|
|
6757
|
+
traces?: LearningTracePanel[];
|
|
6120
6758
|
/** 3D only: show the ground grid (default off). */
|
|
6121
6759
|
showGrid?: boolean;
|
|
6122
6760
|
/** 3D only: enable shadows. Omitted → the host default. */
|
|
@@ -6139,12 +6777,19 @@ declare const ChemistryCanvas: React$1.FC<ChemistryCanvasProps>;
|
|
|
6139
6777
|
* AlgorithmCanvas
|
|
6140
6778
|
*
|
|
6141
6779
|
* A field-scoped learning molecule for computer-science algorithm visualizations.
|
|
6142
|
-
* Projects semantic `bars` (sorting/histograms), `
|
|
6143
|
-
*
|
|
6144
|
-
*
|
|
6145
|
-
*
|
|
6146
|
-
*
|
|
6147
|
-
*
|
|
6780
|
+
* Projects semantic `bars` (sorting/histograms), `slots` (registers/variables),
|
|
6781
|
+
* `cells` (grids/arrays/DP tables), `buckets` (hash-table chaining), and `frames`
|
|
6782
|
+
* (call stacks) into pixel-space shapes on the declarative `LearningCanvas` atom,
|
|
6783
|
+
* so a `.lolo` behavior never computes pixel coordinates — it just sets the family
|
|
6784
|
+
* arrays and lets this molecule lay them out. `pointers` (index cursors) and
|
|
6785
|
+
* `ranges` (highlighted spans) decorate the bars/slots panel. Graph/tree
|
|
6786
|
+
* algorithms use `AlgoGraphCanvas` (nodes + edges + layouts); this canvas owns
|
|
6787
|
+
* only the bar/slot/cell/bucket/frame vocabulary.
|
|
6788
|
+
*
|
|
6789
|
+
* When more than one of `bars`/`slots`/`cells`/`buckets`/`frames` is populated,
|
|
6790
|
+
* they share the canvas height as equal vertical panels in that fixed order
|
|
6791
|
+
* (`panelHeight = height / panelCount`); with exactly one family present the
|
|
6792
|
+
* panel math collapses to the original full-height layout unchanged.
|
|
6148
6793
|
*
|
|
6149
6794
|
* @packageDocumentation
|
|
6150
6795
|
*/
|
|
@@ -6154,18 +6799,71 @@ interface AlgorithmBar {
|
|
|
6154
6799
|
color?: string;
|
|
6155
6800
|
label?: string;
|
|
6156
6801
|
}
|
|
6802
|
+
/** Small per-corner annotation texts inside a cell (e.g. DP transition sources). */
|
|
6803
|
+
interface AlgorithmCellCorner {
|
|
6804
|
+
tl?: string;
|
|
6805
|
+
tr?: string;
|
|
6806
|
+
bl?: string;
|
|
6807
|
+
br?: string;
|
|
6808
|
+
}
|
|
6157
6809
|
interface AlgorithmCell {
|
|
6158
6810
|
row: number;
|
|
6159
6811
|
col: number;
|
|
6160
6812
|
value?: number;
|
|
6161
6813
|
color?: string;
|
|
6162
6814
|
label?: string;
|
|
6815
|
+
/** Small annotation texts in the four corners; rendered only when the cell is large enough. */
|
|
6816
|
+
corner?: AlgorithmCellCorner;
|
|
6163
6817
|
}
|
|
6164
6818
|
interface AlgorithmPointer {
|
|
6165
6819
|
index: number;
|
|
6166
6820
|
label?: string;
|
|
6167
6821
|
color?: string;
|
|
6168
6822
|
}
|
|
6823
|
+
/** A highlighted span over the bars panel: a translucent fill band or a bracket with a label. */
|
|
6824
|
+
interface AlgorithmRange {
|
|
6825
|
+
from: number;
|
|
6826
|
+
to: number;
|
|
6827
|
+
color?: string;
|
|
6828
|
+
label?: string;
|
|
6829
|
+
kind?: 'fill' | 'bracket';
|
|
6830
|
+
}
|
|
6831
|
+
/** Fill state for a single slot box. */
|
|
6832
|
+
type AlgorithmSlotState = 'empty' | 'filled' | 'highlight';
|
|
6833
|
+
/** A discrete value slot (register/variable) drawn as a labeled box. */
|
|
6834
|
+
interface AlgorithmSlot {
|
|
6835
|
+
value?: string | number;
|
|
6836
|
+
state?: AlgorithmSlotState;
|
|
6837
|
+
color?: string;
|
|
6838
|
+
}
|
|
6839
|
+
/** Lifecycle state for a call-stack frame. */
|
|
6840
|
+
type AlgorithmFrameState = 'active' | 'returning' | 'done';
|
|
6841
|
+
/** A single call-stack frame (recursion visualization). */
|
|
6842
|
+
interface AlgorithmFrame {
|
|
6843
|
+
label: string;
|
|
6844
|
+
detail?: string;
|
|
6845
|
+
state?: AlgorithmFrameState;
|
|
6846
|
+
color?: string;
|
|
6847
|
+
}
|
|
6848
|
+
/** Highlight state for a single bucket entry (hash-table chaining). */
|
|
6849
|
+
type AlgorithmBucketEntryState = 'default' | 'highlight' | 'probing';
|
|
6850
|
+
/** A single chained entry within a hash-table bucket. */
|
|
6851
|
+
interface AlgorithmBucketEntry {
|
|
6852
|
+
label: string;
|
|
6853
|
+
state?: AlgorithmBucketEntryState;
|
|
6854
|
+
color?: string;
|
|
6855
|
+
}
|
|
6856
|
+
/** A hash-table bucket row: an index plus its chain of entries. */
|
|
6857
|
+
interface AlgorithmBucket {
|
|
6858
|
+
index: number;
|
|
6859
|
+
entries: AlgorithmBucketEntry[];
|
|
6860
|
+
}
|
|
6861
|
+
/** A row/column header label for the cells grid. */
|
|
6862
|
+
interface AlgorithmAxisLabel {
|
|
6863
|
+
index: number;
|
|
6864
|
+
text: string;
|
|
6865
|
+
color?: string;
|
|
6866
|
+
}
|
|
6169
6867
|
interface AlgorithmCanvasProps {
|
|
6170
6868
|
className?: string;
|
|
6171
6869
|
width?: number;
|
|
@@ -6176,8 +6874,24 @@ interface AlgorithmCanvasProps {
|
|
|
6176
6874
|
bars?: AlgorithmBar[];
|
|
6177
6875
|
/** Grid/array/DP cells; laid out on a row/col lattice sized to the extent. */
|
|
6178
6876
|
cells?: AlgorithmCell[];
|
|
6179
|
-
/** Index cursors (i/j/lo/hi/mid); drawn as markers beneath the referenced bar/
|
|
6877
|
+
/** Index cursors (i/j/lo/hi/mid); drawn as markers beneath the referenced bar/slot column. */
|
|
6180
6878
|
pointers?: AlgorithmPointer[];
|
|
6879
|
+
/** Highlighted index ranges over the bars panel (translucent fill bands or labeled brackets). */
|
|
6880
|
+
ranges?: AlgorithmRange[];
|
|
6881
|
+
/** Discrete value slots (registers/variables); laid out in a row or a vertical stack. */
|
|
6882
|
+
slots?: AlgorithmSlot[];
|
|
6883
|
+
/** Slot stack direction; horizontal lays slots left-to-right, vertical stacks bottom-up. */
|
|
6884
|
+
slotOrientation?: 'horizontal' | 'vertical';
|
|
6885
|
+
/** Recursion/call-stack frames; laid out bottom-up like a real call stack. */
|
|
6886
|
+
frames?: AlgorithmFrame[];
|
|
6887
|
+
/** Hash-table buckets; each row is an index chip plus its chained entries. */
|
|
6888
|
+
buckets?: AlgorithmBucket[];
|
|
6889
|
+
/** Secondary bar strip inside the bars panel (e.g. a running total beside the primary values). */
|
|
6890
|
+
auxBars?: AlgorithmBar[];
|
|
6891
|
+
/** Row-header labels drawn to the left of the cells grid. */
|
|
6892
|
+
rowLabels?: AlgorithmAxisLabel[];
|
|
6893
|
+
/** Column-header labels drawn above the cells grid. */
|
|
6894
|
+
colLabels?: AlgorithmAxisLabel[];
|
|
6181
6895
|
/** Extra declarative shapes in canvas pixel coordinates. */
|
|
6182
6896
|
shapes?: LearningShape[];
|
|
6183
6897
|
interactive?: boolean;
|
|
@@ -6192,6 +6906,84 @@ interface AlgorithmCanvasProps {
|
|
|
6192
6906
|
}
|
|
6193
6907
|
declare const AlgorithmCanvas: React$1.FC<AlgorithmCanvasProps>;
|
|
6194
6908
|
|
|
6909
|
+
/**
|
|
6910
|
+
* AlgoGraphCanvas
|
|
6911
|
+
*
|
|
6912
|
+
* A field-scoped learning molecule for computer-science graph/tree algorithm
|
|
6913
|
+
* visualizations (BFS/DFS/Dijkstra/A-star/topological sort/tree traversals).
|
|
6914
|
+
* Declares a fixed node/edge state vocabulary with default colors and
|
|
6915
|
+
* deterministic layouts (`manual` | `tree` | `layered` | `circle`) so a
|
|
6916
|
+
* `.lolo` behavior never computes pixel coordinates — it just sets node
|
|
6917
|
+
* `state`/edges and picks a layout. Distinguish from the core d3-force
|
|
6918
|
+
* `GraphCanvas`: this one is a dumb deterministic projection, not a
|
|
6919
|
+
* force simulation.
|
|
6920
|
+
*
|
|
6921
|
+
* @packageDocumentation
|
|
6922
|
+
*/
|
|
6923
|
+
|
|
6924
|
+
type AlgoGraphNodeState = 'unvisited' | 'frontier' | 'current' | 'visited' | 'goal' | 'path';
|
|
6925
|
+
type AlgoGraphEdgeState = 'default' | 'tree' | 'relaxed' | 'candidate' | 'path';
|
|
6926
|
+
type AlgoGraphLayout = 'manual' | 'tree' | 'layered' | 'circle';
|
|
6927
|
+
interface AlgoGraphNodeBadge {
|
|
6928
|
+
text: string;
|
|
6929
|
+
color?: string;
|
|
6930
|
+
}
|
|
6931
|
+
interface AlgoGraphNode {
|
|
6932
|
+
id: string;
|
|
6933
|
+
/** Manual layout only; ignored by `tree`/`layered`/`circle`. */
|
|
6934
|
+
x?: number;
|
|
6935
|
+
/** Manual layout only; ignored by `tree`/`layered`/`circle`. */
|
|
6936
|
+
y?: number;
|
|
6937
|
+
label?: string;
|
|
6938
|
+
/** Drives the default fill/stroke color via `NODE_STATE_COLOR`. */
|
|
6939
|
+
state?: AlgoGraphNodeState;
|
|
6940
|
+
color?: string;
|
|
6941
|
+
radius?: number;
|
|
6942
|
+
/** Small pill (e.g. distance/order) drawn at the node's upper-right. */
|
|
6943
|
+
badge?: AlgoGraphNodeBadge;
|
|
6944
|
+
}
|
|
6945
|
+
interface AlgoGraphEdge {
|
|
6946
|
+
from: string;
|
|
6947
|
+
to: string;
|
|
6948
|
+
directed?: boolean;
|
|
6949
|
+
weight?: number;
|
|
6950
|
+
label?: string;
|
|
6951
|
+
/** Drives the default stroke color via `EDGE_STATE_COLOR`. */
|
|
6952
|
+
state?: AlgoGraphEdgeState;
|
|
6953
|
+
color?: string;
|
|
6954
|
+
}
|
|
6955
|
+
interface AlgoGraphCanvasProps {
|
|
6956
|
+
className?: string;
|
|
6957
|
+
width?: number;
|
|
6958
|
+
height?: number;
|
|
6959
|
+
title?: string;
|
|
6960
|
+
backgroundColor?: string;
|
|
6961
|
+
nodes?: AlgoGraphNode[];
|
|
6962
|
+
edges?: AlgoGraphEdge[];
|
|
6963
|
+
/** Deterministic layout to compute node positions; `manual` passes through `x`/`y`. */
|
|
6964
|
+
layout?: AlgoGraphLayout;
|
|
6965
|
+
/** `tree` layout only: preferred root id. Falls back to the first indegree-0 node. */
|
|
6966
|
+
root?: string;
|
|
6967
|
+
/** Extra declarative shapes in canvas pixel coordinates. */
|
|
6968
|
+
shapes?: LearningShape[];
|
|
6969
|
+
interactive?: boolean;
|
|
6970
|
+
animate?: boolean;
|
|
6971
|
+
onShapeClick?: (payload: {
|
|
6972
|
+
id?: string;
|
|
6973
|
+
type?: string;
|
|
6974
|
+
index: number;
|
|
6975
|
+
}) => void;
|
|
6976
|
+
/** Fires when a node circle is clicked, alongside `onShapeClick`. */
|
|
6977
|
+
onNodeClick?: (payload: {
|
|
6978
|
+
id: string;
|
|
6979
|
+
label?: string;
|
|
6980
|
+
index: number;
|
|
6981
|
+
}) => void;
|
|
6982
|
+
isLoading?: boolean;
|
|
6983
|
+
error?: UiError | null;
|
|
6984
|
+
}
|
|
6985
|
+
declare const AlgoGraphCanvas: React$1.FC<AlgoGraphCanvasProps>;
|
|
6986
|
+
|
|
6195
6987
|
/**
|
|
6196
6988
|
* learningScene3D — the shared 3D seam for the learning canvas molecules
|
|
6197
6989
|
* (PhysicsCanvas / BiologyCanvas / ChemistryCanvas), mirroring the game
|
|
@@ -6260,9 +7052,10 @@ declare function meshSphere(id: string | undefined, x: number, y: number, z: num
|
|
|
6260
7052
|
declare function cylinderBetween(from: Learning3DPoint, to: Learning3DPoint, radius: number, color: string): DrawMeshProps | null;
|
|
6261
7053
|
/**
|
|
6262
7054
|
* An arrow from→to as a `draw-group` (shaft cylinder + tip cone) local to `from`.
|
|
6263
|
-
* `shaftRadius` is in scene cells (default: a thin rod at cell scale).
|
|
7055
|
+
* `shaftRadius` is in scene cells (default: a thin rod at cell scale). `id`,
|
|
7056
|
+
* when given, is stamped on the returned draw-group for click routing.
|
|
6264
7057
|
*/
|
|
6265
|
-
declare function arrowBetween(from: Learning3DPoint, to: Learning3DPoint, color: string, shaftRadius?: number): DrawGroupProps | null;
|
|
7058
|
+
declare function arrowBetween(from: Learning3DPoint, to: Learning3DPoint, color: string, shaftRadius?: number, id?: string): DrawGroupProps | null;
|
|
6266
7059
|
/** A billboarded text label above the scene point (the 3D host lifts it off the item). */
|
|
6267
7060
|
declare function billboardLabel(text: string, x: number, y: number, z: number, opts?: {
|
|
6268
7061
|
color?: string;
|
|
@@ -6909,13 +7702,16 @@ interface TableViewProps extends DataDndProps {
|
|
|
6909
7702
|
columns?: readonly TableViewColumn[];
|
|
6910
7703
|
/** Alias for `columns`. */
|
|
6911
7704
|
fields?: readonly TableViewColumn[];
|
|
6912
|
-
/** Per-row
|
|
7705
|
+
/** Per-row actions, collected under a trailing kebab overflow menu. */
|
|
6913
7706
|
itemActions?: readonly TableViewItemAction[];
|
|
6914
|
-
/**
|
|
7707
|
+
/** @deprecated Row actions always render as a kebab menu now (UX doctrine: row actions behind an overflow menu; a pinned inline button strip paints over cells during horizontal scroll). Accepted and ignored. */
|
|
6915
7708
|
maxInlineActions?: number;
|
|
6916
7709
|
/** When set, the whole row is clickable and emits UI:{itemClickEvent} with
|
|
6917
7710
|
* { id, row } (action-button clicks stopPropagation so they still win).
|
|
6918
|
-
* Mirrors DataList's contract.
|
|
7711
|
+
* Mirrors DataList's contract. When OMITTED and `itemActions` exist, the
|
|
7712
|
+
* row click defaults to the first non-danger item action (the view/open
|
|
7713
|
+
* action by authoring convention) — a danger action never becomes the row
|
|
7714
|
+
* default (destructive actions require intentional reach). */
|
|
6919
7715
|
itemClickEvent?: EventKey;
|
|
6920
7716
|
/** Render a leading checkbox column. Selection changes emit `selectEvent`. */
|
|
6921
7717
|
selectable?: boolean;
|
|
@@ -6960,7 +7756,7 @@ interface TableViewProps extends DataDndProps {
|
|
|
6960
7756
|
*/
|
|
6961
7757
|
look?: 'dense' | 'spacious' | 'striped' | 'borderless' | 'bordered';
|
|
6962
7758
|
}
|
|
6963
|
-
declare function TableView({ entity, columns, fields, itemActions, maxInlineActions, itemClickEvent, selectable, selectEvent, selectedIds, sortEvent, sortColumn, sortDirection, className, emptyMessage, isLoading, error, groupBy, pageSize, children, renderItem: _schemaRenderItem, look, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, }: TableViewProps): React__default.JSX.Element;
|
|
7759
|
+
declare function TableView({ entity, columns, fields, itemActions, maxInlineActions: _maxInlineActions, itemClickEvent, selectable, selectEvent, selectedIds, sortEvent, sortColumn, sortDirection, className, emptyMessage, isLoading, error, groupBy, pageSize, children, renderItem: _schemaRenderItem, look, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, }: TableViewProps): React__default.JSX.Element;
|
|
6964
7760
|
declare namespace TableView {
|
|
6965
7761
|
var displayName: string;
|
|
6966
7762
|
}
|
|
@@ -11827,4 +12623,4 @@ interface AboutPageTemplateProps extends TemplateProps<AboutPageEntity> {
|
|
|
11827
12623
|
}
|
|
11828
12624
|
declare const AboutPageTemplate: React__default.FC<AboutPageTemplateProps>;
|
|
11829
12625
|
|
|
11830
|
-
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, type CodeLanguageLoader, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmojiPicker, type EmojiPickerPosition, type EmojiPickerProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, type ImportEntityDisplay, ImportPreviewTree, type ImportPreviewTreeProps, type ImportPreviewUnit, ImportProgress, type ImportProgressCounts, type ImportProgressProps, type ImportProgressStep, type ImportSkippedElement, type ImportSourceOption, ImportSourcePicker, type ImportSourcePickerProps, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, type Learning3DPoint, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, LearningScene3D, type LearningScene3DProps, type LearningShape, type LearningShapeType, LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, type MeshSphereOpts, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, type PrismLanguageGrammar, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, arrowBetween, billboardLabel, boardEntity, bool, createUnitAnimationState, cylinderBetween, get3DClickPayload, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, meshSphere, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
|
12626
|
+
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, AlgoGraphCanvas, type AlgoGraphCanvasProps, type AlgoGraphEdge, type AlgoGraphEdgeState, type AlgoGraphLayout, type AlgoGraphNode, type AlgoGraphNodeBadge, type AlgoGraphNodeState, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, type CodeLanguageLoader, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmojiPicker, type EmojiPickerPosition, type EmojiPickerProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, type ImportEntityDisplay, ImportPreviewTree, type ImportPreviewTreeProps, type ImportPreviewUnit, ImportProgress, type ImportProgressCounts, type ImportProgressProps, type ImportProgressStep, type ImportSkippedElement, type ImportSourceOption, ImportSourcePicker, type ImportSourcePickerProps, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, type Learning3DPoint, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, LearningScene3D, type LearningScene3DProps, type LearningShape, type LearningShapeType, LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, type MeshSphereOpts, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, type PrismLanguageGrammar, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, arrowBetween, billboardLabel, boardEntity, bool, createUnitAnimationState, cylinderBetween, get3DClickPayload, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, meshSphere, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|