@almadar/std 16.149.0 → 16.151.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-app-search.lolo +20 -2
- package/behaviors/lolo/ui/core/atoms/std-board.lolo +1 -1
- package/behaviors/lolo/ui/core/atoms/std-browse.lolo +32 -13
- package/behaviors/lolo/ui/core/atoms/std-calendar.lolo +13 -1
- package/behaviors/lolo/ui/core/atoms/std-multi-party-flow.lolo +8 -10
- package/behaviors/lolo/ui/core/atoms/std-stats.lolo +3 -0
- package/behaviors/lolo/ui/core/atoms/ui-typography.lolo +6 -1
- package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +4 -2
- package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +15 -1
- package/behaviors/lolo/ui/core/molecules/ui-graph-canvas.lolo +57 -0
- package/behaviors/lolo/ui/core/molecules/ui-simple-grid.lolo +2 -2
- package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +3 -1
- package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +4 -2
- package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +2 -0
- package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +4 -1
- package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +3 -1
- package/behaviors/lolo/ui/learning/atoms/std-branching-logic.lolo +0 -28
- package/behaviors/registry/factory-signatures.json +2435 -782
- package/behaviors/registry/ui/core/atoms/std-app-search.orb +90 -3
- package/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
- package/behaviors/registry/ui/core/atoms/std-browse.orb +212 -41
- package/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
- package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
- package/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
- package/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
- package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
- package/behaviors/registry/ui/core/molecules/ui-data-list.orb +50 -1
- package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
- package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
- package/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
- package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
- package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
- package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +59 -1
- package/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
- package/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
- package/dist/behaviors/behaviors-embeddings.json +374 -374
- package/dist/behaviors/behaviors-registry.json +27 -8
- package/dist/behaviors/exports-reader.js +176 -7
- package/dist/behaviors/functions/index.d.ts +59 -71
- package/dist/behaviors/functions/index.js +174 -7
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +177 -8
- package/dist/behaviors/knob-embeddings.json +1 -1
- package/dist/behaviors/query.js +176 -7
- package/dist/behaviors/registry/factory-signatures.json +2435 -782
- package/dist/behaviors/registry/ui/core/atoms/std-app-search.orb +90 -3
- package/dist/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
- package/dist/behaviors/registry/ui/core/atoms/std-browse.orb +212 -41
- package/dist/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
- package/dist/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
- package/dist/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
- package/dist/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
- package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
- package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +50 -1
- package/dist/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
- package/dist/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
- package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +59 -1
- package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
- package/dist/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
- package/dist/behaviors-embeddings.json +374 -374
- package/dist/behaviors-registry.json +27 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +177 -8
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +2435 -782
- package/package.json +3 -3
|
@@ -280,11 +280,58 @@
|
|
|
280
280
|
"variant": "ghost"
|
|
281
281
|
}
|
|
282
282
|
],
|
|
283
|
+
"description": "Actions for each card item (schema-driven)",
|
|
284
|
+
"items": {
|
|
285
|
+
"properties": {
|
|
286
|
+
"action": {
|
|
287
|
+
"name": "action",
|
|
288
|
+
"required": false,
|
|
289
|
+
"type": "string"
|
|
290
|
+
},
|
|
291
|
+
"event": {
|
|
292
|
+
"name": "event",
|
|
293
|
+
"required": false,
|
|
294
|
+
"type": "string"
|
|
295
|
+
},
|
|
296
|
+
"label": {
|
|
297
|
+
"name": "label",
|
|
298
|
+
"required": true,
|
|
299
|
+
"type": "string"
|
|
300
|
+
},
|
|
301
|
+
"navigatesTo": {
|
|
302
|
+
"name": "navigatesTo",
|
|
303
|
+
"required": false,
|
|
304
|
+
"type": "string"
|
|
305
|
+
},
|
|
306
|
+
"placement": {
|
|
307
|
+
"name": "placement",
|
|
308
|
+
"required": false,
|
|
309
|
+
"type": "string",
|
|
310
|
+
"values": [
|
|
311
|
+
"card",
|
|
312
|
+
"footer",
|
|
313
|
+
"row"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
"variant": {
|
|
317
|
+
"name": "variant",
|
|
318
|
+
"required": false,
|
|
319
|
+
"type": "string",
|
|
320
|
+
"values": [
|
|
321
|
+
"primary",
|
|
322
|
+
"secondary",
|
|
323
|
+
"ghost",
|
|
324
|
+
"danger"
|
|
325
|
+
]
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"type": "object"
|
|
329
|
+
},
|
|
330
|
+
"label": "Item Actions",
|
|
283
331
|
"tier": "presentation",
|
|
284
|
-
"type": "
|
|
332
|
+
"type": "[EntityCardsItemActionsItem]"
|
|
285
333
|
},
|
|
286
334
|
"maxCols": {
|
|
287
|
-
"default": 1.0,
|
|
288
335
|
"description": "Maximum number of columns",
|
|
289
336
|
"label": "Max Cols",
|
|
290
337
|
"tier": "presentation",
|
|
@@ -110,6 +110,11 @@
|
|
|
110
110
|
"description": "Bulk actions",
|
|
111
111
|
"items": {
|
|
112
112
|
"properties": {
|
|
113
|
+
"event": {
|
|
114
|
+
"name": "event",
|
|
115
|
+
"required": false,
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
113
118
|
"icon": {
|
|
114
119
|
"name": "icon",
|
|
115
120
|
"required": false,
|
|
@@ -328,8 +333,61 @@
|
|
|
328
333
|
"variant": "ghost"
|
|
329
334
|
}
|
|
330
335
|
],
|
|
336
|
+
"description": "Item actions from generated code - maps to rowActions",
|
|
337
|
+
"items": {
|
|
338
|
+
"properties": {
|
|
339
|
+
"action": {
|
|
340
|
+
"name": "action",
|
|
341
|
+
"required": false,
|
|
342
|
+
"type": "string"
|
|
343
|
+
},
|
|
344
|
+
"event": {
|
|
345
|
+
"name": "event",
|
|
346
|
+
"required": false,
|
|
347
|
+
"type": "string"
|
|
348
|
+
},
|
|
349
|
+
"icon": {
|
|
350
|
+
"name": "icon",
|
|
351
|
+
"required": false,
|
|
352
|
+
"type": "string"
|
|
353
|
+
},
|
|
354
|
+
"label": {
|
|
355
|
+
"name": "label",
|
|
356
|
+
"required": true,
|
|
357
|
+
"type": "string"
|
|
358
|
+
},
|
|
359
|
+
"navigatesTo": {
|
|
360
|
+
"name": "navigatesTo",
|
|
361
|
+
"required": false,
|
|
362
|
+
"type": "string"
|
|
363
|
+
},
|
|
364
|
+
"placement": {
|
|
365
|
+
"name": "placement",
|
|
366
|
+
"required": false,
|
|
367
|
+
"type": "string",
|
|
368
|
+
"values": [
|
|
369
|
+
"row",
|
|
370
|
+
"bulk"
|
|
371
|
+
]
|
|
372
|
+
},
|
|
373
|
+
"variant": {
|
|
374
|
+
"name": "variant",
|
|
375
|
+
"required": false,
|
|
376
|
+
"type": "string",
|
|
377
|
+
"values": [
|
|
378
|
+
"default",
|
|
379
|
+
"primary",
|
|
380
|
+
"secondary",
|
|
381
|
+
"ghost",
|
|
382
|
+
"danger"
|
|
383
|
+
]
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"type": "object"
|
|
387
|
+
},
|
|
388
|
+
"label": "Item Actions",
|
|
331
389
|
"tier": "presentation",
|
|
332
|
-
"type": "
|
|
390
|
+
"type": "[EntityTableItemActionsItem]"
|
|
333
391
|
},
|
|
334
392
|
"look": {
|
|
335
393
|
"default": "dense",
|
|
@@ -154,8 +154,40 @@
|
|
|
154
154
|
},
|
|
155
155
|
"itemActions": {
|
|
156
156
|
"default": [],
|
|
157
|
+
"description": "Actions per item",
|
|
158
|
+
"items": {
|
|
159
|
+
"properties": {
|
|
160
|
+
"event": {
|
|
161
|
+
"name": "event",
|
|
162
|
+
"required": false,
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"label": {
|
|
166
|
+
"name": "label",
|
|
167
|
+
"required": true,
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
170
|
+
"navigatesTo": {
|
|
171
|
+
"name": "navigatesTo",
|
|
172
|
+
"required": false,
|
|
173
|
+
"type": "string"
|
|
174
|
+
},
|
|
175
|
+
"variant": {
|
|
176
|
+
"name": "variant",
|
|
177
|
+
"required": false,
|
|
178
|
+
"type": "string",
|
|
179
|
+
"values": [
|
|
180
|
+
"primary",
|
|
181
|
+
"secondary",
|
|
182
|
+
"ghost"
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"type": "object"
|
|
187
|
+
},
|
|
188
|
+
"label": "Item Actions",
|
|
157
189
|
"tier": "presentation",
|
|
158
|
-
"type": "
|
|
190
|
+
"type": "[TimelineItemActionsItem]"
|
|
159
191
|
},
|
|
160
192
|
"items": {
|
|
161
193
|
"default": [],
|
|
@@ -484,40 +484,6 @@
|
|
|
484
484
|
"gap": "sm",
|
|
485
485
|
"type": "stack"
|
|
486
486
|
},
|
|
487
|
-
{
|
|
488
|
-
"children": [
|
|
489
|
-
{
|
|
490
|
-
"icon": "git-branch",
|
|
491
|
-
"label": "Total rules",
|
|
492
|
-
"look": "@config.statLook",
|
|
493
|
-
"type": "stat-display",
|
|
494
|
-
"value": "@payload.data.length"
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"icon": "clipboard-list",
|
|
498
|
-
"label": "Active surveys",
|
|
499
|
-
"look": "@config.statLook",
|
|
500
|
-
"type": "stat-display",
|
|
501
|
-
"value": "8"
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"icon": "skip-forward",
|
|
505
|
-
"label": "Skip jumps",
|
|
506
|
-
"look": "@config.statLook",
|
|
507
|
-
"type": "stat-display",
|
|
508
|
-
"value": "42"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"icon": "trending-up",
|
|
512
|
-
"label": "Priority avg",
|
|
513
|
-
"look": "@config.statLook",
|
|
514
|
-
"type": "stat-display",
|
|
515
|
-
"value": "3"
|
|
516
|
-
}
|
|
517
|
-
],
|
|
518
|
-
"cols": 4.0,
|
|
519
|
-
"type": "simple-grid"
|
|
520
|
-
},
|
|
521
487
|
{
|
|
522
488
|
"type": "divider"
|
|
523
489
|
},
|