@almadar/std 16.201.0 → 16.203.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/behaviors/lolo/ui/core/atoms/std-modal-editor.lolo +230 -0
- package/behaviors/lolo/ui/core/molecules/ui-code-block.lolo +302 -0
- package/behaviors/lolo/ui/core/molecules/ui-command-palette.lolo +116 -0
- package/behaviors/lolo/ui/core/molecules/ui-floating-toolbar.lolo +2 -1
- package/behaviors/lolo/ui/core/molecules/ui-pagination.lolo +1 -1
- package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +1 -1
- package/behaviors/lolo/ui/game/atoms/std-audio-cue.lolo +138 -0
- package/behaviors/lolo/ui/game/atoms/std-camera-rig.lolo +158 -0
- package/behaviors/lolo/ui/game/atoms/ui-canvas-2d.lolo +42 -0
- package/behaviors/lolo/ui/game/atoms/ui-canvas.lolo +42 -0
- package/behaviors/lolo/ui/game/atoms/ui-game-audio-cue.lolo +68 -0
- package/behaviors/lolo/ui/game/atoms/ui-game-audio-toggle.lolo +13 -0
- package/behaviors/lolo/ui/learning/atoms/ui-algo-graph-canvas.lolo +2 -1
- package/behaviors/lolo/ui/learning/atoms/ui-algorithm-canvas.lolo +2 -1
- package/behaviors/lolo/ui/learning/atoms/ui-biology-canvas.lolo +2 -1
- package/behaviors/lolo/ui/learning/atoms/ui-chemistry-canvas.lolo +2 -1
- package/behaviors/lolo/ui/learning/atoms/ui-learning-canvas.lolo +8 -1
- package/behaviors/lolo/ui/learning/atoms/ui-math-canvas.lolo +10 -3
- package/behaviors/lolo/ui/learning/atoms/ui-physics-canvas.lolo +2 -1
- package/behaviors/registry/ui/core/atoms/std-modal-editor.orb +1450 -0
- package/behaviors/registry/ui/core/molecules/ui-code-block.orb +687 -1
- package/behaviors/registry/ui/core/molecules/ui-command-palette.orb +589 -0
- package/behaviors/registry/ui/core/molecules/ui-floating-toolbar.orb +13 -2
- package/behaviors/registry/ui/core/molecules/ui-pagination.orb +6 -1
- package/behaviors/registry/ui/game/atoms/std-audio-cue.orb +653 -0
- package/behaviors/registry/ui/game/atoms/std-camera-rig.orb +813 -0
- package/behaviors/registry/ui/game/atoms/ui-canvas-2d.orb +135 -0
- package/behaviors/registry/ui/game/atoms/ui-canvas.orb +134 -0
- package/behaviors/registry/ui/game/atoms/ui-game-audio-cue.orb +258 -0
- package/behaviors/registry/ui/game/atoms/ui-game-audio-toggle.orb +48 -0
- package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +10 -0
- package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +14 -0
- package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +14 -0
- package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +14 -0
- package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +22 -0
- package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +24 -0
- package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +14 -0
- package/dist/behaviors/exports-reader.js +3103 -2883
- package/dist/behaviors/functions/index.d.ts +563 -7
- package/dist/behaviors/functions/index.js +3089 -2884
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +3104 -2884
- package/dist/behaviors/query.js +3103 -2883
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +29 -9
- package/dist/behaviors-registry.json +4169 -687
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3104 -2884
- package/dist/knob-embeddings.hash.json +3 -3
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1 -1
- package/package.json +2 -2
|
@@ -41,6 +41,7 @@ orbital AlgoGraphCanvasOrbital {
|
|
|
41
41
|
text : string
|
|
42
42
|
label : string
|
|
43
43
|
fontSize : number
|
|
44
|
+
fontFamily : string
|
|
44
45
|
align : "left" | "center" | "right"
|
|
45
46
|
axis : "x" | "y"
|
|
46
47
|
min : number
|
|
@@ -52,7 +53,7 @@ orbital AlgoGraphCanvasOrbital {
|
|
|
52
53
|
opacity : number
|
|
53
54
|
startAngle : number
|
|
54
55
|
endAngle : number
|
|
55
|
-
dash : "dashed" | "dotted"
|
|
56
|
+
dash : "solid" | "dashed" | "dotted"
|
|
56
57
|
inside : [string]
|
|
57
58
|
outside : [string]
|
|
58
59
|
}
|
|
@@ -84,6 +84,7 @@ orbital AlgorithmCanvasOrbital {
|
|
|
84
84
|
text : string
|
|
85
85
|
label : string
|
|
86
86
|
fontSize : number
|
|
87
|
+
fontFamily : string
|
|
87
88
|
align : "left" | "center" | "right"
|
|
88
89
|
axis : "x" | "y"
|
|
89
90
|
min : number
|
|
@@ -95,7 +96,7 @@ orbital AlgorithmCanvasOrbital {
|
|
|
95
96
|
opacity : number
|
|
96
97
|
startAngle : number
|
|
97
98
|
endAngle : number
|
|
98
|
-
dash : "dashed" | "dotted"
|
|
99
|
+
dash : "solid" | "dashed" | "dotted"
|
|
99
100
|
inside : [string]
|
|
100
101
|
outside : [string]
|
|
101
102
|
}
|
|
@@ -159,6 +159,7 @@ orbital BiologyCanvasOrbital {
|
|
|
159
159
|
text : string
|
|
160
160
|
label : string
|
|
161
161
|
fontSize : number
|
|
162
|
+
fontFamily : string
|
|
162
163
|
align : "left" | "center" | "right"
|
|
163
164
|
axis : "x" | "y"
|
|
164
165
|
min : number
|
|
@@ -170,7 +171,7 @@ orbital BiologyCanvasOrbital {
|
|
|
170
171
|
opacity : number
|
|
171
172
|
startAngle : number
|
|
172
173
|
endAngle : number
|
|
173
|
-
dash : "dashed" | "dotted"
|
|
174
|
+
dash : "solid" | "dashed" | "dotted"
|
|
174
175
|
inside : [string]
|
|
175
176
|
outside : [string]
|
|
176
177
|
}
|
|
@@ -156,6 +156,7 @@ orbital ChemistryCanvasOrbital {
|
|
|
156
156
|
text : string
|
|
157
157
|
label : string
|
|
158
158
|
fontSize : number
|
|
159
|
+
fontFamily : string
|
|
159
160
|
align : "left" | "center" | "right"
|
|
160
161
|
axis : "x" | "y"
|
|
161
162
|
min : number
|
|
@@ -167,7 +168,7 @@ orbital ChemistryCanvasOrbital {
|
|
|
167
168
|
opacity : number
|
|
168
169
|
startAngle : number
|
|
169
170
|
endAngle : number
|
|
170
|
-
dash : "dashed" | "dotted"
|
|
171
|
+
dash : "solid" | "dashed" | "dotted"
|
|
171
172
|
inside : [string]
|
|
172
173
|
outside : [string]
|
|
173
174
|
}
|
|
@@ -18,6 +18,7 @@ orbital LearningCanvasOrbital {
|
|
|
18
18
|
text : string
|
|
19
19
|
label : string
|
|
20
20
|
fontSize : number
|
|
21
|
+
fontFamily : string
|
|
21
22
|
align : "left" | "center" | "right"
|
|
22
23
|
axis : "x" | "y"
|
|
23
24
|
min : number
|
|
@@ -29,7 +30,7 @@ orbital LearningCanvasOrbital {
|
|
|
29
30
|
opacity : number
|
|
30
31
|
startAngle : number
|
|
31
32
|
endAngle : number
|
|
32
|
-
dash : "dashed" | "dotted"
|
|
33
|
+
dash : "solid" | "dashed" | "dotted"
|
|
33
34
|
inside : [string]
|
|
34
35
|
outside : [string]
|
|
35
36
|
}
|
|
@@ -101,6 +102,7 @@ orbital LearningCanvasOrbital {
|
|
|
101
102
|
width: @config.width
|
|
102
103
|
height: @config.height
|
|
103
104
|
backgroundColor: @config.backgroundColor
|
|
105
|
+
fontFamily: @config.fontFamily
|
|
104
106
|
shapes: @config.shapes
|
|
105
107
|
drawables: @config.drawables
|
|
106
108
|
projector: @config.projector
|
|
@@ -120,6 +122,7 @@ orbital LearningCanvasOrbital {
|
|
|
120
122
|
width: @config.width
|
|
121
123
|
height: @config.height
|
|
122
124
|
backgroundColor: @config.backgroundColor
|
|
125
|
+
fontFamily: @config.fontFamily
|
|
123
126
|
shapes: @payload.shapes
|
|
124
127
|
drawables: @payload.drawables
|
|
125
128
|
projector: @config.projector
|
|
@@ -177,6 +180,10 @@ orbital LearningCanvasOrbital {
|
|
|
177
180
|
@label "Background Color"
|
|
178
181
|
@description "Background color (default transparent)."
|
|
179
182
|
@tier "presentation"
|
|
183
|
+
fontFamily : string
|
|
184
|
+
@label "Font Family"
|
|
185
|
+
@description "Canvas text font family. Falls back to the theme's --font-family-body."
|
|
186
|
+
@tier "presentation"
|
|
180
187
|
shapes : [LearningCanvasShapesItem] = []
|
|
181
188
|
@label "Shapes"
|
|
182
189
|
@description "Declarative shapes to draw."
|
|
@@ -5,7 +5,7 @@ orbital MathCanvasOrbital {
|
|
|
5
5
|
label : string
|
|
6
6
|
color : string
|
|
7
7
|
samples : [MathCanvasCurvesItemSamplesItem]!
|
|
8
|
-
dash : "dashed" | "dotted"
|
|
8
|
+
dash : "solid" | "dashed" | "dotted"
|
|
9
9
|
}
|
|
10
10
|
type MathCanvasCurvesItemSamplesItem = {
|
|
11
11
|
x : number!
|
|
@@ -55,7 +55,7 @@ orbital MathCanvasOrbital {
|
|
|
55
55
|
kind : "vline" | "hline"!
|
|
56
56
|
at : number!
|
|
57
57
|
color : string
|
|
58
|
-
dash : "dashed" | "dotted"
|
|
58
|
+
dash : "solid" | "dashed" | "dotted"
|
|
59
59
|
label : string
|
|
60
60
|
}
|
|
61
61
|
type MathCanvasAnglesItem = {
|
|
@@ -90,6 +90,7 @@ orbital MathCanvasOrbital {
|
|
|
90
90
|
text : string
|
|
91
91
|
label : string
|
|
92
92
|
fontSize : number
|
|
93
|
+
fontFamily : string
|
|
93
94
|
align : "left" | "center" | "right"
|
|
94
95
|
axis : "x" | "y"
|
|
95
96
|
min : number
|
|
@@ -101,7 +102,7 @@ orbital MathCanvasOrbital {
|
|
|
101
102
|
opacity : number
|
|
102
103
|
startAngle : number
|
|
103
104
|
endAngle : number
|
|
104
|
-
dash : "dashed" | "dotted"
|
|
105
|
+
dash : "solid" | "dashed" | "dotted"
|
|
105
106
|
inside : [string]
|
|
106
107
|
outside : [string]
|
|
107
108
|
}
|
|
@@ -174,6 +175,7 @@ orbital MathCanvasOrbital {
|
|
|
174
175
|
showTickLabels: @config.showTickLabels
|
|
175
176
|
tickLabelFontSize: @config.tickLabelFontSize
|
|
176
177
|
labelFontSize: @config.labelFontSize
|
|
178
|
+
fontFamily: @config.fontFamily
|
|
177
179
|
showCurveLabels: @config.showCurveLabels
|
|
178
180
|
curves: @config.curves
|
|
179
181
|
points: @config.points
|
|
@@ -215,6 +217,7 @@ orbital MathCanvasOrbital {
|
|
|
215
217
|
showTickLabels: @config.showTickLabels
|
|
216
218
|
tickLabelFontSize: @config.tickLabelFontSize
|
|
217
219
|
labelFontSize: @config.labelFontSize
|
|
220
|
+
fontFamily: @config.fontFamily
|
|
218
221
|
showCurveLabels: @config.showCurveLabels
|
|
219
222
|
curves: @payload.curves
|
|
220
223
|
points: @payload.points
|
|
@@ -336,6 +339,10 @@ orbital MathCanvasOrbital {
|
|
|
336
339
|
@label "Label Font Size"
|
|
337
340
|
@description "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12)."
|
|
338
341
|
@tier "presentation"
|
|
342
|
+
fontFamily : string
|
|
343
|
+
@label "Font Family"
|
|
344
|
+
@description "Canvas text font family. Accepts a known game-font key (e.g. 'future-narrow') or a CSS font-family string."
|
|
345
|
+
@tier "presentation"
|
|
339
346
|
showCurveLabels : boolean = false
|
|
340
347
|
@label "Show Curve Labels"
|
|
341
348
|
@description "Draw each curve's `label` at its last in-range sample (default false)."
|
|
@@ -193,6 +193,7 @@ orbital PhysicsCanvasOrbital {
|
|
|
193
193
|
text : string
|
|
194
194
|
label : string
|
|
195
195
|
fontSize : number
|
|
196
|
+
fontFamily : string
|
|
196
197
|
align : "left" | "center" | "right"
|
|
197
198
|
axis : "x" | "y"
|
|
198
199
|
min : number
|
|
@@ -204,7 +205,7 @@ orbital PhysicsCanvasOrbital {
|
|
|
204
205
|
opacity : number
|
|
205
206
|
startAngle : number
|
|
206
207
|
endAngle : number
|
|
207
|
-
dash : "dashed" | "dotted"
|
|
208
|
+
dash : "solid" | "dashed" | "dotted"
|
|
208
209
|
inside : [string]
|
|
209
210
|
outside : [string]
|
|
210
211
|
}
|