@almadar/std 16.21.6 → 16.22.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/registry/core/atoms/std-dashboard-summary.orb +82 -82
- package/behaviors/registry/core/organisms/std-generic-app.orb +552 -552
- package/behaviors/registry/core-variations/atoms/std-browse-map.orb +37 -36
- package/dist/behaviors/registry/core/atoms/std-dashboard-summary.orb +82 -82
- package/dist/behaviors/registry/core/organisms/std-generic-app.orb +552 -552
- package/dist/behaviors/registry/core-variations/atoms/std-browse-map.orb +37 -36
- package/dist/registry/core/atoms/std-dashboard-summary.orb +82 -82
- package/dist/registry/core/organisms/std-generic-app.orb +552 -552
- package/dist/registry/core-variations/atoms/std-browse-map.orb +37 -36
- package/package.json +1 -1
|
@@ -73,66 +73,67 @@
|
|
|
73
73
|
"name": "MapBrowse",
|
|
74
74
|
"linkedEntity": "MapRow",
|
|
75
75
|
"config": {
|
|
76
|
+
"tableLook": "spacious",
|
|
77
|
+
"fields": [
|
|
78
|
+
{
|
|
79
|
+
"name": "name",
|
|
80
|
+
"label": "Name",
|
|
81
|
+
"variant": "h4"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"label": "Address",
|
|
85
|
+
"name": "address",
|
|
86
|
+
"variant": "caption"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"label": "Status",
|
|
90
|
+
"variant": "badge",
|
|
91
|
+
"name": "status"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
76
94
|
"bodyContent": {
|
|
95
|
+
"gap": "md",
|
|
96
|
+
"className": "p-card-md",
|
|
97
|
+
"direction": "vertical",
|
|
77
98
|
"children": [
|
|
78
99
|
{
|
|
79
|
-
"direction": "horizontal",
|
|
80
100
|
"className": "w-full max-w-2xl rounded-md border border-[var(--color-border)] bg-[var(--color-surface)] px-3 py-2 shadow-sm",
|
|
101
|
+
"type": "stack",
|
|
81
102
|
"children": [
|
|
82
103
|
{
|
|
83
104
|
"type": "icon",
|
|
84
|
-
"
|
|
85
|
-
"
|
|
105
|
+
"className": "text-muted-foreground",
|
|
106
|
+
"name": "search"
|
|
86
107
|
},
|
|
87
108
|
{
|
|
109
|
+
"action": "REFETCH_QUERY",
|
|
88
110
|
"inputType": "search",
|
|
111
|
+
"type": "input",
|
|
89
112
|
"placeholder": "@config.searchPlaceholder",
|
|
90
|
-
"
|
|
91
|
-
"className": "flex-1",
|
|
92
|
-
"type": "input"
|
|
113
|
+
"className": "flex-1"
|
|
93
114
|
}
|
|
94
115
|
],
|
|
95
|
-
"
|
|
116
|
+
"align": "center",
|
|
96
117
|
"gap": "sm",
|
|
97
|
-
"
|
|
118
|
+
"direction": "horizontal"
|
|
98
119
|
},
|
|
99
120
|
{
|
|
100
|
-
"className": "w-full rounded-lg overflow-hidden border border-[var(--color-border)]",
|
|
101
121
|
"markers": "@payload.data",
|
|
122
|
+
"type": "map-view",
|
|
102
123
|
"height": "440px",
|
|
103
|
-
"
|
|
124
|
+
"className": "w-full rounded-lg overflow-hidden border border-[var(--color-border)]"
|
|
104
125
|
},
|
|
105
126
|
{
|
|
106
|
-
"fields": "@config.fields",
|
|
107
|
-
"itemActions": "@config.itemActions",
|
|
108
127
|
"gap": "sm",
|
|
109
|
-
"look": "@config.tableLook",
|
|
110
128
|
"type": "data-list",
|
|
111
|
-
"entity": "@payload.data"
|
|
129
|
+
"entity": "@payload.data",
|
|
130
|
+
"fields": "@config.fields",
|
|
131
|
+
"itemActions": "@config.itemActions",
|
|
132
|
+
"look": "@config.tableLook"
|
|
112
133
|
}
|
|
113
134
|
],
|
|
114
|
-
"type": "stack"
|
|
115
|
-
|
|
116
|
-
"gap": "md",
|
|
117
|
-
"className": "p-card-md"
|
|
118
|
-
},
|
|
119
|
-
"fields": [
|
|
120
|
-
{
|
|
121
|
-
"label": "Name",
|
|
122
|
-
"variant": "h4",
|
|
123
|
-
"name": "name"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"label": "Address",
|
|
127
|
-
"variant": "caption",
|
|
128
|
-
"name": "address"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"variant": "badge",
|
|
132
|
-
"name": "status",
|
|
133
|
-
"label": "Status"
|
|
134
|
-
}
|
|
135
|
-
]
|
|
135
|
+
"type": "stack"
|
|
136
|
+
}
|
|
136
137
|
}
|
|
137
138
|
}
|
|
138
139
|
],
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"type": "string",
|
|
49
49
|
"required": true
|
|
50
50
|
},
|
|
51
|
-
"
|
|
52
|
-
"name": "
|
|
51
|
+
"icon": {
|
|
52
|
+
"name": "icon",
|
|
53
53
|
"type": "string",
|
|
54
|
-
"required":
|
|
54
|
+
"required": false
|
|
55
55
|
},
|
|
56
56
|
"trend": {
|
|
57
57
|
"name": "trend",
|
|
58
58
|
"type": "number",
|
|
59
59
|
"required": false
|
|
60
60
|
},
|
|
61
|
-
"
|
|
62
|
-
"name": "
|
|
61
|
+
"label": {
|
|
62
|
+
"name": "label",
|
|
63
63
|
"type": "string",
|
|
64
|
-
"required":
|
|
64
|
+
"required": true
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
},
|
|
@@ -120,8 +120,8 @@
|
|
|
120
120
|
"items": {
|
|
121
121
|
"type": "object",
|
|
122
122
|
"properties": {
|
|
123
|
-
"
|
|
124
|
-
"name": "
|
|
123
|
+
"label": {
|
|
124
|
+
"name": "label",
|
|
125
125
|
"type": "string",
|
|
126
126
|
"required": true
|
|
127
127
|
},
|
|
@@ -258,11 +258,11 @@
|
|
|
258
258
|
"fetch",
|
|
259
259
|
"SummaryRecord",
|
|
260
260
|
{
|
|
261
|
+
"limit": 1.0,
|
|
261
262
|
"emit": {
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
}
|
|
265
|
-
"limit": 1.0
|
|
263
|
+
"success": "SummaryRecordLoaded",
|
|
264
|
+
"failure": "SummaryRecordLoadFailed"
|
|
265
|
+
}
|
|
266
266
|
}
|
|
267
267
|
],
|
|
268
268
|
[
|
|
@@ -392,194 +392,194 @@
|
|
|
392
392
|
"render-ui",
|
|
393
393
|
"main",
|
|
394
394
|
{
|
|
395
|
+
"gap": "md",
|
|
395
396
|
"children": [
|
|
396
397
|
{
|
|
397
|
-
"
|
|
398
|
+
"type": "stack",
|
|
398
399
|
"children": [
|
|
399
400
|
{
|
|
400
|
-
"gap": "xs",
|
|
401
|
-
"direction": "vertical",
|
|
402
|
-
"type": "stack",
|
|
403
401
|
"children": [
|
|
404
402
|
{
|
|
405
|
-
"weight": "semibold",
|
|
406
403
|
"type": "typography",
|
|
404
|
+
"variant": "h3",
|
|
407
405
|
"content": "@entity.title",
|
|
408
|
-
"
|
|
406
|
+
"weight": "semibold"
|
|
409
407
|
},
|
|
410
408
|
{
|
|
411
|
-
"
|
|
409
|
+
"color": "muted",
|
|
412
410
|
"type": "typography",
|
|
413
411
|
"variant": "caption",
|
|
414
|
-
"
|
|
412
|
+
"content": "@entity.period"
|
|
415
413
|
}
|
|
416
|
-
]
|
|
414
|
+
],
|
|
415
|
+
"type": "stack",
|
|
416
|
+
"direction": "vertical",
|
|
417
|
+
"gap": "xs"
|
|
417
418
|
},
|
|
418
419
|
{
|
|
419
|
-
"
|
|
420
|
-
"
|
|
420
|
+
"label": "Filter",
|
|
421
|
+
"variant": "ghost",
|
|
421
422
|
"action": "@entity.filterEvent",
|
|
422
423
|
"type": "button",
|
|
423
|
-
"
|
|
424
|
-
"
|
|
424
|
+
"size": "sm",
|
|
425
|
+
"icon": "filter"
|
|
425
426
|
}
|
|
426
427
|
],
|
|
427
|
-
"direction": "horizontal",
|
|
428
428
|
"align": "center",
|
|
429
|
-
"
|
|
429
|
+
"direction": "horizontal",
|
|
430
|
+
"justify": "between",
|
|
430
431
|
"gap": "md"
|
|
431
432
|
},
|
|
432
433
|
{
|
|
433
|
-
"cols": 4.0,
|
|
434
434
|
"gap": "md",
|
|
435
|
+
"type": "simple-grid",
|
|
436
|
+
"cols": 4.0,
|
|
435
437
|
"children": [
|
|
436
438
|
{
|
|
437
|
-
"type": "data-list",
|
|
438
439
|
"gap": "md",
|
|
440
|
+
"entity": "@entity.tiles",
|
|
439
441
|
"fields": [],
|
|
440
442
|
"renderItem": [
|
|
441
443
|
"fn",
|
|
442
444
|
"tile",
|
|
443
445
|
{
|
|
444
|
-
"look": "elevated",
|
|
445
|
-
"padding": "md",
|
|
446
446
|
"children": [
|
|
447
447
|
{
|
|
448
448
|
"children": [
|
|
449
449
|
{
|
|
450
|
-
"
|
|
450
|
+
"justify": "between",
|
|
451
|
+
"type": "stack",
|
|
451
452
|
"children": [
|
|
452
453
|
{
|
|
453
454
|
"color": "muted",
|
|
454
455
|
"content": "@tile.label",
|
|
455
|
-
"weight": "semibold",
|
|
456
456
|
"variant": "overline",
|
|
457
|
+
"weight": "semibold",
|
|
457
458
|
"type": "typography"
|
|
458
459
|
},
|
|
459
460
|
{
|
|
460
461
|
"size": "sm",
|
|
461
|
-
"color": "muted",
|
|
462
462
|
"type": "icon",
|
|
463
|
-
"name": "@tile.icon"
|
|
463
|
+
"name": "@tile.icon",
|
|
464
|
+
"color": "muted"
|
|
464
465
|
}
|
|
465
466
|
],
|
|
466
|
-
"
|
|
467
|
-
"justify": "between",
|
|
467
|
+
"align": "center",
|
|
468
468
|
"direction": "horizontal",
|
|
469
|
-
"
|
|
469
|
+
"gap": "xs"
|
|
470
470
|
},
|
|
471
471
|
{
|
|
472
472
|
"variant": "h2",
|
|
473
|
-
"
|
|
473
|
+
"weight": "semibold",
|
|
474
474
|
"content": "@tile.value",
|
|
475
|
-
"
|
|
475
|
+
"type": "typography"
|
|
476
476
|
},
|
|
477
477
|
{
|
|
478
|
-
"value": "@tile.trend",
|
|
479
|
-
"showValue": true,
|
|
480
478
|
"size": "sm",
|
|
479
|
+
"showValue": true,
|
|
480
|
+
"value": "@tile.trend",
|
|
481
481
|
"type": "trend-indicator"
|
|
482
482
|
}
|
|
483
483
|
],
|
|
484
|
-
"type": "stack",
|
|
485
484
|
"direction": "vertical",
|
|
486
|
-
"gap": "xs"
|
|
485
|
+
"gap": "xs",
|
|
486
|
+
"type": "stack"
|
|
487
487
|
}
|
|
488
488
|
],
|
|
489
|
-
"
|
|
489
|
+
"padding": "md",
|
|
490
|
+
"type": "card",
|
|
491
|
+
"look": "elevated"
|
|
490
492
|
}
|
|
491
493
|
],
|
|
492
|
-
"
|
|
494
|
+
"type": "data-list"
|
|
493
495
|
}
|
|
494
|
-
]
|
|
495
|
-
"type": "simple-grid"
|
|
496
|
+
]
|
|
496
497
|
},
|
|
497
498
|
{
|
|
499
|
+
"align": "center",
|
|
500
|
+
"type": "stack",
|
|
501
|
+
"direction": "horizontal",
|
|
498
502
|
"gap": "sm",
|
|
499
503
|
"children": [
|
|
500
504
|
{
|
|
501
|
-
"gap": "sm",
|
|
502
505
|
"entity": "@entity.statuses",
|
|
503
506
|
"fields": [],
|
|
507
|
+
"gap": "sm",
|
|
504
508
|
"renderItem": [
|
|
505
509
|
"fn",
|
|
506
510
|
"pill",
|
|
507
511
|
{
|
|
508
512
|
"type": "badge",
|
|
509
|
-
"
|
|
513
|
+
"variant": "@pill.tone",
|
|
510
514
|
"label": "@pill.label",
|
|
511
|
-
"
|
|
515
|
+
"size": "sm"
|
|
512
516
|
}
|
|
513
517
|
],
|
|
514
518
|
"type": "data-list"
|
|
515
519
|
}
|
|
516
|
-
]
|
|
517
|
-
"align": "center",
|
|
518
|
-
"direction": "horizontal",
|
|
519
|
-
"type": "stack"
|
|
520
|
+
]
|
|
520
521
|
},
|
|
521
522
|
{
|
|
522
523
|
"type": "divider"
|
|
523
524
|
},
|
|
524
525
|
{
|
|
525
|
-
"type": "card",
|
|
526
|
-
"look": "elevated",
|
|
527
526
|
"children": [
|
|
528
527
|
{
|
|
529
528
|
"direction": "vertical",
|
|
530
|
-
"gap": "md",
|
|
531
|
-
"type": "stack",
|
|
532
529
|
"children": [
|
|
533
530
|
{
|
|
534
|
-
"
|
|
531
|
+
"direction": "horizontal",
|
|
532
|
+
"gap": "sm",
|
|
533
|
+
"justify": "between",
|
|
534
|
+
"type": "stack",
|
|
535
535
|
"children": [
|
|
536
536
|
{
|
|
537
537
|
"type": "stack",
|
|
538
538
|
"direction": "vertical",
|
|
539
|
-
"gap": "xs",
|
|
540
539
|
"children": [
|
|
541
540
|
{
|
|
542
|
-
"weight": "semibold",
|
|
543
541
|
"content": "@entity.chartTitle",
|
|
542
|
+
"type": "typography",
|
|
544
543
|
"variant": "h4",
|
|
545
|
-
"
|
|
544
|
+
"weight": "semibold"
|
|
546
545
|
},
|
|
547
546
|
{
|
|
548
|
-
"type": "typography",
|
|
549
547
|
"variant": "caption",
|
|
550
548
|
"color": "muted",
|
|
551
|
-
"content": "@entity.chartSubtitle"
|
|
549
|
+
"content": "@entity.chartSubtitle",
|
|
550
|
+
"type": "typography"
|
|
552
551
|
}
|
|
553
|
-
]
|
|
552
|
+
],
|
|
553
|
+
"gap": "xs"
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
|
-
"variant": "default",
|
|
557
556
|
"label": "@entity.period",
|
|
558
557
|
"type": "badge",
|
|
559
|
-
"size": "sm"
|
|
558
|
+
"size": "sm",
|
|
559
|
+
"variant": "default"
|
|
560
560
|
}
|
|
561
561
|
],
|
|
562
|
-
"
|
|
563
|
-
"justify": "between",
|
|
564
|
-
"type": "stack",
|
|
565
|
-
"direction": "horizontal"
|
|
562
|
+
"align": "center"
|
|
566
563
|
},
|
|
567
564
|
{
|
|
568
|
-
"
|
|
565
|
+
"chartType": "line",
|
|
566
|
+
"data": "@entity.chartData",
|
|
569
567
|
"type": "chart",
|
|
570
568
|
"height": 280.0,
|
|
571
|
-
"
|
|
572
|
-
"chartType": "line"
|
|
569
|
+
"showLegend": false
|
|
573
570
|
}
|
|
574
|
-
]
|
|
571
|
+
],
|
|
572
|
+
"gap": "md",
|
|
573
|
+
"type": "stack"
|
|
575
574
|
}
|
|
576
575
|
],
|
|
577
|
-
"padding": "lg"
|
|
576
|
+
"padding": "lg",
|
|
577
|
+
"look": "elevated",
|
|
578
|
+
"type": "card"
|
|
578
579
|
}
|
|
579
580
|
],
|
|
580
|
-
"
|
|
581
|
-
"type": "stack"
|
|
582
|
-
"direction": "vertical"
|
|
581
|
+
"direction": "vertical",
|
|
582
|
+
"type": "stack"
|
|
583
583
|
}
|
|
584
584
|
]
|
|
585
585
|
]
|
|
@@ -598,9 +598,9 @@
|
|
|
598
598
|
"render-ui",
|
|
599
599
|
"main",
|
|
600
600
|
{
|
|
601
|
+
"message": "@entity.errorMessage",
|
|
601
602
|
"title": "Failed to load dashboard",
|
|
602
|
-
"type": "error-state"
|
|
603
|
-
"message": "@entity.errorMessage"
|
|
603
|
+
"type": "error-state"
|
|
604
604
|
}
|
|
605
605
|
]
|
|
606
606
|
]
|