@almadar/std 16.142.0 → 16.143.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-layout.lolo +1 -1
- package/behaviors/lolo/ui/core/atoms/std-browse.lolo +1 -1
- package/behaviors/lolo/ui/core/atoms/std-file-store.lolo +1 -1
- package/behaviors/lolo/ui/core/atoms/std-image-upload-multi.lolo +17 -0
- package/behaviors/lolo/ui/core/atoms/std-saved-search.lolo +17 -0
- package/behaviors/lolo/ui/core/atoms/std-tag-taxonomy.lolo +17 -0
- package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +2 -3
- package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +2 -3
- package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +2 -3
- package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +0 -2
- package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +0 -2
- package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +0 -2
- package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +0 -2
- package/behaviors/registry/ui/core/atoms/std-app-layout.orb +6 -1
- package/behaviors/registry/ui/core/atoms/std-browse.orb +6 -1
- package/behaviors/registry/ui/core/atoms/std-file-store.orb +12 -2
- package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +40 -0
- package/behaviors/registry/ui/core/atoms/std-saved-search.orb +40 -0
- package/behaviors/registry/ui/core/atoms/std-tag-taxonomy.orb +40 -0
- package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
- package/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
- package/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
- package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
- package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
- package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
- package/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
- package/dist/behaviors/behaviors-embeddings.json +309 -309
- package/dist/behaviors/knob-embeddings.json +1 -1
- package/dist/behaviors/registry/ui/core/atoms/std-app-layout.orb +6 -1
- package/dist/behaviors/registry/ui/core/atoms/std-browse.orb +6 -1
- package/dist/behaviors/registry/ui/core/atoms/std-file-store.orb +12 -2
- package/dist/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +40 -0
- package/dist/behaviors/registry/ui/core/atoms/std-saved-search.orb +40 -0
- package/dist/behaviors/registry/ui/core/atoms/std-tag-taxonomy.orb +40 -0
- package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
- package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
- package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
- package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
- package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
- package/dist/behaviors-embeddings.json +309 -309
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12 -1
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry.d.ts +9 -1
- package/dist/registry.js +12 -1
- package/package.json +3 -3
|
@@ -2,7 +2,7 @@ app std-app-layout "1.4.1"
|
|
|
2
2
|
"std-app-layout — dashboard-layout chrome (sidebar nav + top bar with search + topBarActions + notifications) wrapping a single contentTrait slot. Use for list-style apps (CMS / helpdesk / CRM) and account/settings pages: the chrome stays stable while the consumer's content trait renders the data, and the consumer can add domain icons (cart / profile / help) via topBarActions. Bind once per orbital — the consumer rebinds linkedEntity via `XAppLayout = AppShell.traits.AppLayout -> XEntity` so multiple orbitals in one file each get their own chrome without colliding on a shared atom entity."
|
|
3
3
|
;; @capabilities "settings page shell, preferences page, account settings layout, profile settings, admin console shell"
|
|
4
4
|
type NavItem = { label : string!, href : string!, icon : string, badge : string, children : [json] }
|
|
5
|
-
type ItemAction = { label : string!, event : string
|
|
5
|
+
type ItemAction = { label : string!, event : string, navigatesTo : string, variant : string, icon : string }
|
|
6
6
|
type NotificationSpec = { id : string, message : string, variant : string }
|
|
7
7
|
orbital AppLayoutOrbital {
|
|
8
8
|
type AppLayoutStateLoaded = Event { data : [AppLayoutData] }
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
app std-browse "2.3.0"
|
|
2
2
|
"std-browse as a Function — single primitive: data-grid. Owns the fetch + REFETCH (query/filter/page) state machine. Consumers configure fields/imageField/itemActions/cols/gap/variant; the atom renders the grid. Each `fields[]` entry accepts `{ name, label, variant }` plus optional `referenceEntity` + `displayField` to render a foreign-key column as the joined entity's display value (data-grid resolves @list[referenceEntity] at render time when both keys are present). `browseLook` (table default / dense / feed / gallery) selects one of four render bodies; dense/feed/gallery were folded in from std-browse-dense/-feed/-gallery (Phase 5.B) and their consumers retarget by setting browseLook."
|
|
3
3
|
type FieldSpec = { name : string!, label : string, variant : string, icon : string, format : string, key : string, header : string }
|
|
4
|
-
type ItemAction = { label : string!, event : string
|
|
4
|
+
type ItemAction = { label : string!, event : string, navigatesTo : string, variant : string, icon : string }
|
|
5
5
|
type ColumnSpec = { key : string!, field : string, header : string, width : string, align : string, className : string, weight : string, format : string, icon : string }
|
|
6
6
|
type FilterSpec = { field : string!, label : string, options : [string] }
|
|
7
7
|
orbital BrowseItemOrbital {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
app std-file-store "2.0.0"
|
|
2
2
|
"std-file-store — the generic file/page tree primitive. A file-tree + config-driven data table over a hierarchical collection; opens a row in `viewing_single` with config-driven detail actions. Rebindable: pass `fields`/`itemActions`/`detailActions`/`tree` to retarget it at any hierarchical entity (files, wiki pages, note trees). Folds in the former std-page-tree via `reorderable` + a page field/action set."
|
|
3
3
|
type FieldSpec = { name : string!, label : string, variant : string, icon : string, format : string, key : string, header : string }
|
|
4
|
-
type ItemAction = { label : string!, event : string
|
|
4
|
+
type ItemAction = { label : string!, event : string, navigatesTo : string, variant : string, icon : string }
|
|
5
5
|
type TreeNode = { name : string!, path : string!, type : string!, children : [object] }
|
|
6
6
|
orbital StoredFileOrbital {
|
|
7
7
|
type StoredFileLoaded = Event { data : [StoredFile] } "Fired when the collection finishes loading"
|
|
@@ -78,6 +78,23 @@ orbital UploadedImageOrbital {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
state browsing {
|
|
81
|
+
INIT -> loading
|
|
82
|
+
(fetch UploadedImage {
|
|
83
|
+
emit: { failure: UploadedImageLoadFailed, success: UploadedImageLoaded }
|
|
84
|
+
})
|
|
85
|
+
(render-ui main {
|
|
86
|
+
align: center
|
|
87
|
+
children: [{ type: spinner }, {
|
|
88
|
+
color: muted
|
|
89
|
+
content: "Loading images…"
|
|
90
|
+
type: typography
|
|
91
|
+
variant: caption
|
|
92
|
+
}]
|
|
93
|
+
className: py-12
|
|
94
|
+
direction: vertical
|
|
95
|
+
gap: md
|
|
96
|
+
type: stack
|
|
97
|
+
})
|
|
81
98
|
UPLOAD -> uploading
|
|
82
99
|
(persist create UploadedImage ?files {
|
|
83
100
|
emit: { failure: UploadedImageUploadFailed, success: UploadedImageCreated }
|
|
@@ -106,6 +106,23 @@ orbital SavedSearchOrbital {
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
state browsing {
|
|
109
|
+
INIT -> loading
|
|
110
|
+
(fetch SavedSearch {
|
|
111
|
+
emit: { failure: SavedSearchLoadFailed, success: SavedSearchLoaded }
|
|
112
|
+
})
|
|
113
|
+
(render-ui main {
|
|
114
|
+
align: center
|
|
115
|
+
children: [{ type: spinner }, {
|
|
116
|
+
color: muted
|
|
117
|
+
content: "Loading saved searches…"
|
|
118
|
+
type: typography
|
|
119
|
+
variant: caption
|
|
120
|
+
}]
|
|
121
|
+
className: py-12
|
|
122
|
+
direction: vertical
|
|
123
|
+
gap: md
|
|
124
|
+
type: stack
|
|
125
|
+
})
|
|
109
126
|
TOGGLE_ALERT -> browsing
|
|
110
127
|
(set @entity.id ?id)
|
|
111
128
|
(set @entity.alertEnabled ?enabled)
|
|
@@ -114,6 +114,23 @@ orbital TagTaxonomyOrbital {
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
state browsing {
|
|
117
|
+
INIT -> loading
|
|
118
|
+
(fetch Tag {
|
|
119
|
+
emit: { failure: TagLoadFailed, success: TagLoaded }
|
|
120
|
+
})
|
|
121
|
+
(render-ui main {
|
|
122
|
+
align: center
|
|
123
|
+
children: [{ type: spinner }, {
|
|
124
|
+
color: muted
|
|
125
|
+
content: "Loading categories…"
|
|
126
|
+
type: typography
|
|
127
|
+
variant: caption
|
|
128
|
+
}]
|
|
129
|
+
className: py-12
|
|
130
|
+
direction: vertical
|
|
131
|
+
gap: md
|
|
132
|
+
type: stack
|
|
133
|
+
})
|
|
117
134
|
SELECT_TAG -> editing
|
|
118
135
|
(set @entity.id ?tagId)
|
|
119
136
|
(emit TagSelected { tagId: ?tagId })
|
|
@@ -21,7 +21,8 @@ orbital DataGridOrbital {
|
|
|
21
21
|
}
|
|
22
22
|
type DataGridItemActionsItem = {
|
|
23
23
|
label : string!
|
|
24
|
-
event : string
|
|
24
|
+
event : string
|
|
25
|
+
navigatesTo : string
|
|
25
26
|
icon : icon
|
|
26
27
|
variant : "primary" | "secondary" | "ghost" | "danger"
|
|
27
28
|
}
|
|
@@ -105,8 +106,6 @@ orbital DataGridOrbital {
|
|
|
105
106
|
look: @config.look
|
|
106
107
|
type: data-grid
|
|
107
108
|
})
|
|
108
|
-
VIEW -> idle
|
|
109
|
-
(emit VIEW {})
|
|
110
109
|
}
|
|
111
110
|
|
|
112
111
|
emits {
|
|
@@ -18,7 +18,8 @@ orbital DataListOrbital {
|
|
|
18
18
|
}
|
|
19
19
|
type DataListItemActionsItem = {
|
|
20
20
|
label : string!
|
|
21
|
-
event : string
|
|
21
|
+
event : string
|
|
22
|
+
navigatesTo : string
|
|
22
23
|
icon : icon
|
|
23
24
|
variant : "primary" | "secondary" | "ghost" | "danger"
|
|
24
25
|
}
|
|
@@ -122,8 +123,6 @@ orbital DataListOrbital {
|
|
|
122
123
|
look: @config.look
|
|
123
124
|
type: data-list
|
|
124
125
|
})
|
|
125
|
-
VIEW -> idle
|
|
126
|
-
(emit VIEW {})
|
|
127
126
|
}
|
|
128
127
|
|
|
129
128
|
emits {
|
|
@@ -31,7 +31,8 @@ orbital TableViewOrbital {
|
|
|
31
31
|
}
|
|
32
32
|
type TableViewItemActionsItem = {
|
|
33
33
|
label : string!
|
|
34
|
-
event : string
|
|
34
|
+
event : string
|
|
35
|
+
navigatesTo : string
|
|
35
36
|
icon : icon
|
|
36
37
|
variant : "primary" | "secondary" | "ghost" | "danger"
|
|
37
38
|
}
|
|
@@ -111,8 +112,6 @@ orbital TableViewOrbital {
|
|
|
111
112
|
look: @config.look
|
|
112
113
|
type: table-view
|
|
113
114
|
})
|
|
114
|
-
VIEW -> idle
|
|
115
|
-
(emit VIEW {})
|
|
116
115
|
}
|
|
117
116
|
|
|
118
117
|
emits {
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"properties": {
|
|
271
271
|
"event": {
|
|
272
272
|
"name": "event",
|
|
273
|
-
"required":
|
|
273
|
+
"required": false,
|
|
274
274
|
"type": "string"
|
|
275
275
|
},
|
|
276
276
|
"icon": {
|
|
@@ -283,6 +283,11 @@
|
|
|
283
283
|
"required": true,
|
|
284
284
|
"type": "string"
|
|
285
285
|
},
|
|
286
|
+
"navigatesTo": {
|
|
287
|
+
"name": "navigatesTo",
|
|
288
|
+
"required": false,
|
|
289
|
+
"type": "string"
|
|
290
|
+
},
|
|
286
291
|
"variant": {
|
|
287
292
|
"name": "variant",
|
|
288
293
|
"required": false,
|
|
@@ -845,7 +845,7 @@
|
|
|
845
845
|
"properties": {
|
|
846
846
|
"event": {
|
|
847
847
|
"name": "event",
|
|
848
|
-
"required":
|
|
848
|
+
"required": false,
|
|
849
849
|
"type": "string"
|
|
850
850
|
},
|
|
851
851
|
"icon": {
|
|
@@ -858,6 +858,11 @@
|
|
|
858
858
|
"required": true,
|
|
859
859
|
"type": "string"
|
|
860
860
|
},
|
|
861
|
+
"navigatesTo": {
|
|
862
|
+
"name": "navigatesTo",
|
|
863
|
+
"required": false,
|
|
864
|
+
"type": "string"
|
|
865
|
+
},
|
|
861
866
|
"variant": {
|
|
862
867
|
"name": "variant",
|
|
863
868
|
"required": false,
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"properties": {
|
|
226
226
|
"event": {
|
|
227
227
|
"name": "event",
|
|
228
|
-
"required":
|
|
228
|
+
"required": false,
|
|
229
229
|
"type": "string"
|
|
230
230
|
},
|
|
231
231
|
"icon": {
|
|
@@ -238,6 +238,11 @@
|
|
|
238
238
|
"required": true,
|
|
239
239
|
"type": "string"
|
|
240
240
|
},
|
|
241
|
+
"navigatesTo": {
|
|
242
|
+
"name": "navigatesTo",
|
|
243
|
+
"required": false,
|
|
244
|
+
"type": "string"
|
|
245
|
+
},
|
|
241
246
|
"variant": {
|
|
242
247
|
"name": "variant",
|
|
243
248
|
"required": false,
|
|
@@ -349,7 +354,7 @@
|
|
|
349
354
|
"properties": {
|
|
350
355
|
"event": {
|
|
351
356
|
"name": "event",
|
|
352
|
-
"required":
|
|
357
|
+
"required": false,
|
|
353
358
|
"type": "string"
|
|
354
359
|
},
|
|
355
360
|
"icon": {
|
|
@@ -362,6 +367,11 @@
|
|
|
362
367
|
"required": true,
|
|
363
368
|
"type": "string"
|
|
364
369
|
},
|
|
370
|
+
"navigatesTo": {
|
|
371
|
+
"name": "navigatesTo",
|
|
372
|
+
"required": false,
|
|
373
|
+
"type": "string"
|
|
374
|
+
},
|
|
365
375
|
"variant": {
|
|
366
376
|
"name": "variant",
|
|
367
377
|
"required": false,
|
|
@@ -657,6 +657,46 @@
|
|
|
657
657
|
"from": "loading",
|
|
658
658
|
"to": "error"
|
|
659
659
|
},
|
|
660
|
+
{
|
|
661
|
+
"effects": [
|
|
662
|
+
[
|
|
663
|
+
"fetch",
|
|
664
|
+
"UploadedImage",
|
|
665
|
+
{
|
|
666
|
+
"emit": {
|
|
667
|
+
"failure": "UploadedImageLoadFailed",
|
|
668
|
+
"success": "UploadedImageLoaded"
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
[
|
|
673
|
+
"render-ui",
|
|
674
|
+
"main",
|
|
675
|
+
{
|
|
676
|
+
"align": "center",
|
|
677
|
+
"children": [
|
|
678
|
+
{
|
|
679
|
+
"type": "spinner"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"color": "muted",
|
|
683
|
+
"content": "Loading images…",
|
|
684
|
+
"type": "typography",
|
|
685
|
+
"variant": "caption"
|
|
686
|
+
}
|
|
687
|
+
],
|
|
688
|
+
"className": "py-12",
|
|
689
|
+
"direction": "vertical",
|
|
690
|
+
"gap": "md",
|
|
691
|
+
"type": "stack"
|
|
692
|
+
}
|
|
693
|
+
]
|
|
694
|
+
],
|
|
695
|
+
"event": "INIT",
|
|
696
|
+
"eventId": "evt_01KXG04GPP89A1D4728P34VMFM",
|
|
697
|
+
"from": "browsing",
|
|
698
|
+
"to": "loading"
|
|
699
|
+
},
|
|
660
700
|
{
|
|
661
701
|
"effects": [
|
|
662
702
|
[
|
|
@@ -777,6 +777,46 @@
|
|
|
777
777
|
"from": "loading",
|
|
778
778
|
"to": "error"
|
|
779
779
|
},
|
|
780
|
+
{
|
|
781
|
+
"effects": [
|
|
782
|
+
[
|
|
783
|
+
"fetch",
|
|
784
|
+
"SavedSearch",
|
|
785
|
+
{
|
|
786
|
+
"emit": {
|
|
787
|
+
"failure": "SavedSearchLoadFailed",
|
|
788
|
+
"success": "SavedSearchLoaded"
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
],
|
|
792
|
+
[
|
|
793
|
+
"render-ui",
|
|
794
|
+
"main",
|
|
795
|
+
{
|
|
796
|
+
"align": "center",
|
|
797
|
+
"children": [
|
|
798
|
+
{
|
|
799
|
+
"type": "spinner"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"color": "muted",
|
|
803
|
+
"content": "Loading saved searches…",
|
|
804
|
+
"type": "typography",
|
|
805
|
+
"variant": "caption"
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"className": "py-12",
|
|
809
|
+
"direction": "vertical",
|
|
810
|
+
"gap": "md",
|
|
811
|
+
"type": "stack"
|
|
812
|
+
}
|
|
813
|
+
]
|
|
814
|
+
],
|
|
815
|
+
"event": "INIT",
|
|
816
|
+
"eventId": "evt_01KXG04HEK6NXH4H03WDAQSW47",
|
|
817
|
+
"from": "browsing",
|
|
818
|
+
"to": "loading"
|
|
819
|
+
},
|
|
780
820
|
{
|
|
781
821
|
"effects": [
|
|
782
822
|
[
|
|
@@ -491,6 +491,46 @@
|
|
|
491
491
|
"from": "loading",
|
|
492
492
|
"to": "error"
|
|
493
493
|
},
|
|
494
|
+
{
|
|
495
|
+
"effects": [
|
|
496
|
+
[
|
|
497
|
+
"fetch",
|
|
498
|
+
"Tag",
|
|
499
|
+
{
|
|
500
|
+
"emit": {
|
|
501
|
+
"failure": "TagLoadFailed",
|
|
502
|
+
"success": "TagLoaded"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
[
|
|
507
|
+
"render-ui",
|
|
508
|
+
"main",
|
|
509
|
+
{
|
|
510
|
+
"align": "center",
|
|
511
|
+
"children": [
|
|
512
|
+
{
|
|
513
|
+
"type": "spinner"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"color": "muted",
|
|
517
|
+
"content": "Loading categories…",
|
|
518
|
+
"type": "typography",
|
|
519
|
+
"variant": "caption"
|
|
520
|
+
}
|
|
521
|
+
],
|
|
522
|
+
"className": "py-12",
|
|
523
|
+
"direction": "vertical",
|
|
524
|
+
"gap": "md",
|
|
525
|
+
"type": "stack"
|
|
526
|
+
}
|
|
527
|
+
]
|
|
528
|
+
],
|
|
529
|
+
"event": "INIT",
|
|
530
|
+
"eventId": "evt_01KXG04HRHZ7R8AVV6NCG6FC0S",
|
|
531
|
+
"from": "browsing",
|
|
532
|
+
"to": "loading"
|
|
533
|
+
},
|
|
494
534
|
{
|
|
495
535
|
"effects": [
|
|
496
536
|
[
|
|
@@ -524,10 +524,10 @@
|
|
|
524
524
|
"tier": "essential"
|
|
525
525
|
},
|
|
526
526
|
{
|
|
527
|
-
"description": "
|
|
528
|
-
"id": "
|
|
529
|
-
"key": "
|
|
530
|
-
"name": "
|
|
527
|
+
"description": "Selection change event name (emits UI:{selectionEvent} with { selectedIds: string[] })",
|
|
528
|
+
"id": "evt_01KXG04N8DGC8A3RER0AYS0QJM",
|
|
529
|
+
"key": "@config.selectionEvent",
|
|
530
|
+
"name": "@config.selection event",
|
|
531
531
|
"payloadSchema": [
|
|
532
532
|
{
|
|
533
533
|
"name": "id",
|
|
@@ -537,10 +537,10 @@
|
|
|
537
537
|
"tier": "essential"
|
|
538
538
|
},
|
|
539
539
|
{
|
|
540
|
-
"description": "
|
|
541
|
-
"id": "
|
|
542
|
-
"key": "@config.
|
|
543
|
-
"name": "@config.
|
|
540
|
+
"description": "Event emitted when more items needed: UI:{loadMoreEvent}",
|
|
541
|
+
"id": "evt_01KXG04N8D5HH49DN80YD3E4GT",
|
|
542
|
+
"key": "@config.loadMoreEvent",
|
|
543
|
+
"name": "@config.load more event",
|
|
544
544
|
"payloadSchema": [
|
|
545
545
|
{
|
|
546
546
|
"name": "id",
|
|
@@ -550,10 +550,10 @@
|
|
|
550
550
|
"tier": "essential"
|
|
551
551
|
},
|
|
552
552
|
{
|
|
553
|
-
"description": "
|
|
554
|
-
"id": "
|
|
555
|
-
"key": "
|
|
556
|
-
"name": "
|
|
553
|
+
"description": "User opened a record from the list.",
|
|
554
|
+
"id": "evt_01KXG04N8D4X4590GZE8705366",
|
|
555
|
+
"key": "VIEW",
|
|
556
|
+
"name": "View",
|
|
557
557
|
"payloadSchema": [
|
|
558
558
|
{
|
|
559
559
|
"name": "id",
|
|
@@ -664,19 +664,6 @@
|
|
|
664
664
|
"eventId": "evt_01KXG04N8DK57488TSZFVFEC94",
|
|
665
665
|
"from": "idle",
|
|
666
666
|
"to": "idle"
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
"effects": [
|
|
670
|
-
[
|
|
671
|
-
"emit",
|
|
672
|
-
"VIEW",
|
|
673
|
-
{}
|
|
674
|
-
]
|
|
675
|
-
],
|
|
676
|
-
"event": "VIEW",
|
|
677
|
-
"eventId": "evt_01KXG04N8D4X4590GZE8705366",
|
|
678
|
-
"from": "idle",
|
|
679
|
-
"to": "idle"
|
|
680
667
|
}
|
|
681
668
|
]
|
|
682
669
|
}
|
|
@@ -685,19 +685,6 @@
|
|
|
685
685
|
"synonyms": "loaded, fetched, retrieved",
|
|
686
686
|
"tier": "essential"
|
|
687
687
|
},
|
|
688
|
-
{
|
|
689
|
-
"description": "User opened a record from the list.",
|
|
690
|
-
"id": "evt_01KXG04N9MDW84T2BWY9EF2FC7",
|
|
691
|
-
"key": "VIEW",
|
|
692
|
-
"name": "View",
|
|
693
|
-
"payloadSchema": [
|
|
694
|
-
{
|
|
695
|
-
"name": "id",
|
|
696
|
-
"type": "string"
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"tier": "essential"
|
|
700
|
-
},
|
|
701
688
|
{
|
|
702
689
|
"description": "Event emitted on reorder: UI:{reorderEvent} with { fromIndex, toIndex }",
|
|
703
690
|
"id": "evt_01KXG04N9M0MPJ2H0462NH6D5S",
|
|
@@ -775,6 +762,19 @@
|
|
|
775
762
|
}
|
|
776
763
|
],
|
|
777
764
|
"tier": "essential"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"description": "User opened a record from the list.",
|
|
768
|
+
"id": "evt_01KXG04N9MDW84T2BWY9EF2FC7",
|
|
769
|
+
"key": "VIEW",
|
|
770
|
+
"name": "View",
|
|
771
|
+
"payloadSchema": [
|
|
772
|
+
{
|
|
773
|
+
"name": "id",
|
|
774
|
+
"type": "string"
|
|
775
|
+
}
|
|
776
|
+
],
|
|
777
|
+
"tier": "essential"
|
|
778
778
|
}
|
|
779
779
|
],
|
|
780
780
|
"states": [
|
|
@@ -888,19 +888,6 @@
|
|
|
888
888
|
"eventId": "evt_01KXG04N9M8T9GWGKD8RDCZB00",
|
|
889
889
|
"from": "idle",
|
|
890
890
|
"to": "idle"
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"effects": [
|
|
894
|
-
[
|
|
895
|
-
"emit",
|
|
896
|
-
"VIEW",
|
|
897
|
-
{}
|
|
898
|
-
]
|
|
899
|
-
],
|
|
900
|
-
"event": "VIEW",
|
|
901
|
-
"eventId": "evt_01KXG04N9MDW84T2BWY9EF2FC7",
|
|
902
|
-
"from": "idle",
|
|
903
|
-
"to": "idle"
|
|
904
891
|
}
|
|
905
892
|
]
|
|
906
893
|
}
|
|
@@ -558,10 +558,10 @@
|
|
|
558
558
|
"tier": "essential"
|
|
559
559
|
},
|
|
560
560
|
{
|
|
561
|
-
"description": "
|
|
562
|
-
"id": "
|
|
563
|
-
"key": "
|
|
564
|
-
"name": "
|
|
561
|
+
"description": "Event emitted on selection change: UI:{selectEvent} with { ids, rows }.",
|
|
562
|
+
"id": "evt_01KXG04RSDTCZQPH74KHHQR5MZ",
|
|
563
|
+
"key": "@config.selectEvent",
|
|
564
|
+
"name": "@config.select event",
|
|
565
565
|
"payloadSchema": [
|
|
566
566
|
{
|
|
567
567
|
"name": "id",
|
|
@@ -571,10 +571,10 @@
|
|
|
571
571
|
"tier": "essential"
|
|
572
572
|
},
|
|
573
573
|
{
|
|
574
|
-
"description": "Event emitted on
|
|
575
|
-
"id": "
|
|
576
|
-
"key": "@config.
|
|
577
|
-
"name": "@config.
|
|
574
|
+
"description": "Event emitted on sortable-header click: UI:{sortEvent} with { column, direction }.",
|
|
575
|
+
"id": "evt_01KXG04RSDX3BXZBA0CDEKZV1G",
|
|
576
|
+
"key": "@config.sortEvent",
|
|
577
|
+
"name": "@config.sort event",
|
|
578
578
|
"payloadSchema": [
|
|
579
579
|
{
|
|
580
580
|
"name": "id",
|
|
@@ -584,10 +584,10 @@
|
|
|
584
584
|
"tier": "essential"
|
|
585
585
|
},
|
|
586
586
|
{
|
|
587
|
-
"description": "
|
|
588
|
-
"id": "
|
|
589
|
-
"key": "
|
|
590
|
-
"name": "
|
|
587
|
+
"description": "User opened a record from the list.",
|
|
588
|
+
"id": "evt_01KXG04RSDC4V2E198Y3Q8880X",
|
|
589
|
+
"key": "VIEW",
|
|
590
|
+
"name": "View",
|
|
591
591
|
"payloadSchema": [
|
|
592
592
|
{
|
|
593
593
|
"name": "id",
|
|
@@ -694,19 +694,6 @@
|
|
|
694
694
|
"eventId": "evt_01KXG04RSDQRXCVM7YXC772W9K",
|
|
695
695
|
"from": "idle",
|
|
696
696
|
"to": "idle"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"effects": [
|
|
700
|
-
[
|
|
701
|
-
"emit",
|
|
702
|
-
"VIEW",
|
|
703
|
-
{}
|
|
704
|
-
]
|
|
705
|
-
],
|
|
706
|
-
"event": "VIEW",
|
|
707
|
-
"eventId": "evt_01KXG04RSDC4V2E198Y3Q8880X",
|
|
708
|
-
"from": "idle",
|
|
709
|
-
"to": "idle"
|
|
710
697
|
}
|
|
711
698
|
]
|
|
712
699
|
}
|
|
@@ -541,19 +541,6 @@
|
|
|
541
541
|
"eventId": "evt_01KXG04SFWBBQT5FQHF88WB1R7",
|
|
542
542
|
"from": "idle",
|
|
543
543
|
"to": "idle"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"effects": [
|
|
547
|
-
[
|
|
548
|
-
"emit",
|
|
549
|
-
"VIEW",
|
|
550
|
-
{}
|
|
551
|
-
]
|
|
552
|
-
],
|
|
553
|
-
"event": "VIEW",
|
|
554
|
-
"eventId": "evt_01KXG04SFWKXQ588AJKC3XTPME",
|
|
555
|
-
"from": "idle",
|
|
556
|
-
"to": "idle"
|
|
557
544
|
}
|
|
558
545
|
]
|
|
559
546
|
}
|