@almadar/std 3.4.2 → 3.4.4

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.
Files changed (40) hide show
  1. package/behaviors/exports/atoms/std-autoregressive.orb +419 -0
  2. package/behaviors/exports/atoms/std-browse.orb +72 -0
  3. package/behaviors/exports/atoms/std-circuit-breaker.orb +12 -0
  4. package/behaviors/exports/atoms/std-combat-log.orb +112 -0
  5. package/behaviors/exports/atoms/std-game-audio.orb +232 -6
  6. package/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
  7. package/behaviors/exports/atoms/std-sprite.orb +165 -17
  8. package/behaviors/exports/organisms/std-api-gateway.orb +12 -0
  9. package/behaviors/exports/organisms/std-devops-dashboard.orb +12 -0
  10. package/behaviors/exports/organisms/std-iot-dashboard.orb +12 -0
  11. package/behaviors/exports/validation-report.json +2 -2
  12. package/dist/behaviors/exports/atoms/std-autoregressive.orb +419 -0
  13. package/dist/behaviors/exports/atoms/std-browse.orb +72 -0
  14. package/dist/behaviors/exports/atoms/std-circuit-breaker.orb +12 -0
  15. package/dist/behaviors/exports/atoms/std-combat-log.orb +112 -0
  16. package/dist/behaviors/exports/atoms/std-game-audio.orb +232 -6
  17. package/dist/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
  18. package/dist/behaviors/exports/atoms/std-sprite.orb +165 -17
  19. package/dist/behaviors/exports/organisms/std-api-gateway.orb +12 -0
  20. package/dist/behaviors/exports/organisms/std-devops-dashboard.orb +12 -0
  21. package/dist/behaviors/exports/organisms/std-iot-dashboard.orb +12 -0
  22. package/dist/behaviors/exports/validation-report.json +2 -2
  23. package/dist/behaviors/functions/index.js +179 -19
  24. package/dist/behaviors/functions/index.js.map +1 -1
  25. package/dist/behaviors/index.js +179 -19
  26. package/dist/behaviors/index.js.map +1 -1
  27. package/dist/exports/atoms/std-autoregressive.orb +419 -0
  28. package/dist/exports/atoms/std-browse.orb +72 -0
  29. package/dist/exports/atoms/std-circuit-breaker.orb +12 -0
  30. package/dist/exports/atoms/std-combat-log.orb +112 -0
  31. package/dist/exports/atoms/std-game-audio.orb +232 -6
  32. package/dist/exports/atoms/std-game-canvas3d.orb +172 -15
  33. package/dist/exports/atoms/std-sprite.orb +165 -17
  34. package/dist/exports/organisms/std-api-gateway.orb +12 -0
  35. package/dist/exports/organisms/std-devops-dashboard.orb +12 -0
  36. package/dist/exports/organisms/std-iot-dashboard.orb +12 -0
  37. package/dist/exports/validation-report.json +2 -2
  38. package/dist/index.js +179 -19
  39. package/dist/index.js.map +1 -1
  40. package/package.json +1 -1
@@ -72,10 +72,123 @@
72
72
  "main",
73
73
  {
74
74
  "type": "game-audio-provider",
75
- "manifest": {},
76
- "baseUrl": "",
75
+ "manifest": {
76
+ "click": "https://almadar-kflow-assets.web.app/shared/audio/sfx/close_001.ogg",
77
+ "confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg",
78
+ "drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg"
79
+ },
80
+ "baseUrl": "https://almadar-kflow-assets.web.app/shared/audio",
77
81
  "initialMuted": false,
78
- "children": []
82
+ "children": [
83
+ {
84
+ "type": "stack",
85
+ "direction": "vertical",
86
+ "gap": "lg",
87
+ "className": "max-w-md mx-auto",
88
+ "children": [
89
+ {
90
+ "type": "stack",
91
+ "direction": "horizontal",
92
+ "gap": "sm",
93
+ "align": "center",
94
+ "children": [
95
+ {
96
+ "type": "icon",
97
+ "name": "volume-2",
98
+ "size": "lg"
99
+ },
100
+ {
101
+ "type": "typography",
102
+ "content": "Audio Controls",
103
+ "variant": "h2"
104
+ }
105
+ ]
106
+ },
107
+ {
108
+ "type": "divider"
109
+ },
110
+ {
111
+ "type": "card",
112
+ "children": [
113
+ {
114
+ "type": "stack",
115
+ "direction": "vertical",
116
+ "gap": "md",
117
+ "children": [
118
+ {
119
+ "type": "typography",
120
+ "content": "Audio Active",
121
+ "variant": "h4"
122
+ },
123
+ {
124
+ "type": "typography",
125
+ "content": "Toggle mute to control game audio playback.",
126
+ "variant": "body",
127
+ "color": "muted"
128
+ },
129
+ {
130
+ "type": "stack",
131
+ "direction": "horizontal",
132
+ "gap": "sm",
133
+ "children": [
134
+ {
135
+ "type": "button",
136
+ "label": "Toggle Mute",
137
+ "icon": "volume-2",
138
+ "event": "TOGGLE_MUTE",
139
+ "variant": "primary"
140
+ }
141
+ ]
142
+ }
143
+ ]
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "type": "card",
149
+ "children": [
150
+ {
151
+ "type": "stack",
152
+ "direction": "vertical",
153
+ "gap": "sm",
154
+ "children": [
155
+ {
156
+ "type": "typography",
157
+ "content": "Sound Effects",
158
+ "variant": "h4"
159
+ },
160
+ {
161
+ "type": "stack",
162
+ "direction": "horizontal",
163
+ "gap": "sm",
164
+ "children": [
165
+ {
166
+ "type": "button",
167
+ "label": "Play Click",
168
+ "icon": "play",
169
+ "variant": "outline"
170
+ },
171
+ {
172
+ "type": "button",
173
+ "label": "Play Confirm",
174
+ "icon": "play",
175
+ "variant": "outline"
176
+ },
177
+ {
178
+ "type": "button",
179
+ "label": "Play Drop",
180
+ "icon": "play",
181
+ "variant": "outline"
182
+ }
183
+ ]
184
+ }
185
+ ]
186
+ }
187
+ ]
188
+ }
189
+ ]
190
+ }
191
+ ]
79
192
  }
80
193
  ]
81
194
  ]
@@ -90,10 +203,123 @@
90
203
  "main",
91
204
  {
92
205
  "type": "game-audio-provider",
93
- "manifest": {},
94
- "baseUrl": "",
206
+ "manifest": {
207
+ "click": "https://almadar-kflow-assets.web.app/shared/audio/sfx/close_001.ogg",
208
+ "confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg",
209
+ "drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg"
210
+ },
211
+ "baseUrl": "https://almadar-kflow-assets.web.app/shared/audio",
95
212
  "initialMuted": false,
96
- "children": []
213
+ "children": [
214
+ {
215
+ "type": "stack",
216
+ "direction": "vertical",
217
+ "gap": "lg",
218
+ "className": "max-w-md mx-auto",
219
+ "children": [
220
+ {
221
+ "type": "stack",
222
+ "direction": "horizontal",
223
+ "gap": "sm",
224
+ "align": "center",
225
+ "children": [
226
+ {
227
+ "type": "icon",
228
+ "name": "volume-2",
229
+ "size": "lg"
230
+ },
231
+ {
232
+ "type": "typography",
233
+ "content": "Audio Controls",
234
+ "variant": "h2"
235
+ }
236
+ ]
237
+ },
238
+ {
239
+ "type": "divider"
240
+ },
241
+ {
242
+ "type": "card",
243
+ "children": [
244
+ {
245
+ "type": "stack",
246
+ "direction": "vertical",
247
+ "gap": "md",
248
+ "children": [
249
+ {
250
+ "type": "typography",
251
+ "content": "Audio Active",
252
+ "variant": "h4"
253
+ },
254
+ {
255
+ "type": "typography",
256
+ "content": "Toggle mute to control game audio playback.",
257
+ "variant": "body",
258
+ "color": "muted"
259
+ },
260
+ {
261
+ "type": "stack",
262
+ "direction": "horizontal",
263
+ "gap": "sm",
264
+ "children": [
265
+ {
266
+ "type": "button",
267
+ "label": "Toggle Mute",
268
+ "icon": "volume-2",
269
+ "event": "TOGGLE_MUTE",
270
+ "variant": "primary"
271
+ }
272
+ ]
273
+ }
274
+ ]
275
+ }
276
+ ]
277
+ },
278
+ {
279
+ "type": "card",
280
+ "children": [
281
+ {
282
+ "type": "stack",
283
+ "direction": "vertical",
284
+ "gap": "sm",
285
+ "children": [
286
+ {
287
+ "type": "typography",
288
+ "content": "Sound Effects",
289
+ "variant": "h4"
290
+ },
291
+ {
292
+ "type": "stack",
293
+ "direction": "horizontal",
294
+ "gap": "sm",
295
+ "children": [
296
+ {
297
+ "type": "button",
298
+ "label": "Play Click",
299
+ "icon": "play",
300
+ "variant": "outline"
301
+ },
302
+ {
303
+ "type": "button",
304
+ "label": "Play Confirm",
305
+ "icon": "play",
306
+ "variant": "outline"
307
+ },
308
+ {
309
+ "type": "button",
310
+ "label": "Play Drop",
311
+ "icon": "play",
312
+ "variant": "outline"
313
+ }
314
+ ]
315
+ }
316
+ ]
317
+ }
318
+ ]
319
+ }
320
+ ]
321
+ }
322
+ ]
97
323
  }
98
324
  ]
99
325
  ]
@@ -32,6 +32,58 @@
32
32
  {
33
33
  "name": "createdAt",
34
34
  "type": "string"
35
+ },
36
+ {
37
+ "name": "tiles",
38
+ "type": "array",
39
+ "default": []
40
+ },
41
+ {
42
+ "name": "units",
43
+ "type": "array",
44
+ "default": []
45
+ },
46
+ {
47
+ "name": "features",
48
+ "type": "array",
49
+ "default": []
50
+ }
51
+ ],
52
+ "instances": [
53
+ {
54
+ "id": "scene-1",
55
+ "name": "Battle Arena",
56
+ "description": "A 3D battle arena",
57
+ "status": "active",
58
+ "createdAt": "2026-01-01",
59
+ "tiles": [
60
+ {
61
+ "x": 0,
62
+ "y": 0,
63
+ "z": 0,
64
+ "type": "grass"
65
+ },
66
+ {
67
+ "x": 1,
68
+ "y": 0,
69
+ "z": 0,
70
+ "type": "grass"
71
+ },
72
+ {
73
+ "x": 0,
74
+ "y": 0,
75
+ "z": 1,
76
+ "type": "stone"
77
+ },
78
+ {
79
+ "x": 1,
80
+ "y": 0,
81
+ "z": 1,
82
+ "type": "water"
83
+ }
84
+ ],
85
+ "units": [],
86
+ "features": []
35
87
  }
36
88
  ]
37
89
  },
@@ -97,9 +149,30 @@
97
149
  "main",
98
150
  {
99
151
  "type": "game-canvas3-d",
100
- "tiles": "@Canvas3dScene",
101
- "units": "@Canvas3dScene",
102
- "features": "@Canvas3dScene",
152
+ "tiles": [
153
+ "object/get",
154
+ [
155
+ "array/first",
156
+ "@Canvas3dScene"
157
+ ],
158
+ "tiles"
159
+ ],
160
+ "units": [
161
+ "object/get",
162
+ [
163
+ "array/first",
164
+ "@Canvas3dScene"
165
+ ],
166
+ "units"
167
+ ],
168
+ "features": [
169
+ "object/get",
170
+ [
171
+ "array/first",
172
+ "@Canvas3dScene"
173
+ ],
174
+ "features"
175
+ ],
103
176
  "orientation": "isometric",
104
177
  "cameraMode": "orbital",
105
178
  "showGrid": true,
@@ -121,9 +194,30 @@
121
194
  "main",
122
195
  {
123
196
  "type": "game-canvas3-d",
124
- "tiles": "@Canvas3dScene",
125
- "units": "@Canvas3dScene",
126
- "features": "@Canvas3dScene",
197
+ "tiles": [
198
+ "object/get",
199
+ [
200
+ "array/first",
201
+ "@Canvas3dScene"
202
+ ],
203
+ "tiles"
204
+ ],
205
+ "units": [
206
+ "object/get",
207
+ [
208
+ "array/first",
209
+ "@Canvas3dScene"
210
+ ],
211
+ "units"
212
+ ],
213
+ "features": [
214
+ "object/get",
215
+ [
216
+ "array/first",
217
+ "@Canvas3dScene"
218
+ ],
219
+ "features"
220
+ ],
127
221
  "orientation": "isometric",
128
222
  "cameraMode": "orbital",
129
223
  "showGrid": true,
@@ -145,9 +239,30 @@
145
239
  "main",
146
240
  {
147
241
  "type": "game-canvas3-d",
148
- "tiles": "@Canvas3dScene",
149
- "units": "@Canvas3dScene",
150
- "features": "@Canvas3dScene",
242
+ "tiles": [
243
+ "object/get",
244
+ [
245
+ "array/first",
246
+ "@Canvas3dScene"
247
+ ],
248
+ "tiles"
249
+ ],
250
+ "units": [
251
+ "object/get",
252
+ [
253
+ "array/first",
254
+ "@Canvas3dScene"
255
+ ],
256
+ "units"
257
+ ],
258
+ "features": [
259
+ "object/get",
260
+ [
261
+ "array/first",
262
+ "@Canvas3dScene"
263
+ ],
264
+ "features"
265
+ ],
151
266
  "orientation": "isometric",
152
267
  "cameraMode": "orbital",
153
268
  "showGrid": true,
@@ -169,9 +284,30 @@
169
284
  "main",
170
285
  {
171
286
  "type": "game-canvas3-d",
172
- "tiles": "@Canvas3dScene",
173
- "units": "@Canvas3dScene",
174
- "features": "@Canvas3dScene",
287
+ "tiles": [
288
+ "object/get",
289
+ [
290
+ "array/first",
291
+ "@Canvas3dScene"
292
+ ],
293
+ "tiles"
294
+ ],
295
+ "units": [
296
+ "object/get",
297
+ [
298
+ "array/first",
299
+ "@Canvas3dScene"
300
+ ],
301
+ "units"
302
+ ],
303
+ "features": [
304
+ "object/get",
305
+ [
306
+ "array/first",
307
+ "@Canvas3dScene"
308
+ ],
309
+ "features"
310
+ ],
175
311
  "orientation": "isometric",
176
312
  "cameraMode": "orbital",
177
313
  "showGrid": true,
@@ -193,9 +329,30 @@
193
329
  "main",
194
330
  {
195
331
  "type": "game-canvas3-d",
196
- "tiles": "@Canvas3dScene",
197
- "units": "@Canvas3dScene",
198
- "features": "@Canvas3dScene",
332
+ "tiles": [
333
+ "object/get",
334
+ [
335
+ "array/first",
336
+ "@Canvas3dScene"
337
+ ],
338
+ "tiles"
339
+ ],
340
+ "units": [
341
+ "object/get",
342
+ [
343
+ "array/first",
344
+ "@Canvas3dScene"
345
+ ],
346
+ "units"
347
+ ],
348
+ "features": [
349
+ "object/get",
350
+ [
351
+ "array/first",
352
+ "@Canvas3dScene"
353
+ ],
354
+ "features"
355
+ ],
199
356
  "orientation": "isometric",
200
357
  "cameraMode": "orbital",
201
358
  "showGrid": true,