@almadar/std 16.145.0 → 16.147.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.
Files changed (135) hide show
  1. package/behaviors/lolo/infra/atoms/std-migration-job.lolo +269 -0
  2. package/behaviors/lolo/infra/atoms/std-mod-queue.lolo +1 -1
  3. package/behaviors/lolo/ml/atoms/std-data-collector.lolo +56 -0
  4. package/behaviors/lolo/ml/atoms/std-graph-builder.lolo +90 -0
  5. package/behaviors/lolo/ml/atoms/std-ml-similarity.lolo +25 -13
  6. package/behaviors/lolo/ml/atoms/std-tokenizer.lolo +108 -0
  7. package/behaviors/lolo/ml/atoms/std-weight-validator.lolo +106 -0
  8. package/behaviors/lolo/ui/core/atoms/std-app-layout.lolo +14 -0
  9. package/behaviors/lolo/ui/core/atoms/std-billable-hour.lolo +1 -1
  10. package/behaviors/lolo/ui/core/atoms/std-esign-flow.lolo +3 -3
  11. package/behaviors/lolo/ui/core/atoms/std-esign-request.lolo +4 -4
  12. package/behaviors/lolo/ui/core/atoms/std-event-log.lolo +2 -2
  13. package/behaviors/lolo/ui/core/atoms/std-file-store.lolo +1 -1
  14. package/behaviors/lolo/ui/core/atoms/std-gallery.lolo +1 -1
  15. package/behaviors/lolo/ui/core/atoms/std-image-upload-multi.lolo +2 -2
  16. package/behaviors/lolo/ui/core/atoms/std-import.lolo +132 -0
  17. package/behaviors/lolo/ui/core/atoms/std-recurrence.lolo +5 -5
  18. package/behaviors/lolo/ui/core/atoms/std-saved-search.lolo +1 -1
  19. package/behaviors/lolo/ui/core/atoms/std-signature-capture.lolo +1 -1
  20. package/behaviors/lolo/ui/core/atoms/std-stats.lolo +1 -1
  21. package/behaviors/lolo/ui/core/atoms/std-tag-taxonomy.lolo +3 -3
  22. package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +0 -2
  23. package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +0 -2
  24. package/behaviors/lolo/ui/core/molecules/ui-import-preview-tree.lolo +96 -0
  25. package/behaviors/lolo/ui/core/molecules/ui-import-progress.lolo +49 -0
  26. package/behaviors/lolo/ui/core/molecules/ui-import-source-picker.lolo +67 -0
  27. package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +0 -2
  28. package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +0 -2
  29. package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +0 -2
  30. package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +0 -2
  31. package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +0 -2
  32. package/behaviors/lolo/ui/game/atoms/std-dungeon-combat.lolo +2 -2
  33. package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +1 -1
  34. package/behaviors/lolo/ui/game/organisms/ui-boardgame-board.lolo +2 -2
  35. package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +2 -2
  36. package/behaviors/lolo/ui/game/organisms/ui-debugger-board.lolo +3 -3
  37. package/behaviors/lolo/ui/game/organisms/ui-physics-sandbox-board.lolo +3 -3
  38. package/behaviors/lolo/ui/game/organisms/ui-roguelike-board.lolo +1 -1
  39. package/behaviors/lolo/ui/game/organisms/ui-sequencer-board.lolo +1 -1
  40. package/behaviors/lolo/ui/learning/atoms/std-algo-heapsort.lolo +2 -2
  41. package/behaviors/lolo/ui/learning/atoms/std-algo-mst.lolo +3 -3
  42. package/behaviors/registry/factory-signatures.json +11531 -2142
  43. package/behaviors/registry/infra/atoms/std-migration-job.orb +1310 -0
  44. package/behaviors/registry/infra/atoms/std-mod-queue.orb +5 -5
  45. package/behaviors/registry/ml/atoms/std-data-collector.orb +324 -0
  46. package/behaviors/registry/ml/atoms/std-graph-builder.orb +480 -0
  47. package/behaviors/registry/ml/atoms/std-ml-similarity.orb +127 -72
  48. package/behaviors/registry/ml/atoms/std-tokenizer.orb +570 -0
  49. package/behaviors/registry/ml/atoms/std-weight-validator.orb +624 -0
  50. package/behaviors/registry/ui/core/atoms/std-app-layout.orb +33 -1
  51. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -2
  52. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +17 -21
  53. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +7 -13
  54. package/behaviors/registry/ui/core/atoms/std-event-log.orb +2 -4
  55. package/behaviors/registry/ui/core/atoms/std-file-store.orb +3 -4
  56. package/behaviors/registry/ui/core/atoms/std-gallery.orb +11 -20
  57. package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +4 -4
  58. package/behaviors/registry/ui/core/atoms/std-import.orb +701 -0
  59. package/behaviors/registry/ui/core/atoms/std-recurrence.orb +5 -10
  60. package/behaviors/registry/ui/core/atoms/std-saved-search.orb +2 -2
  61. package/behaviors/registry/ui/core/atoms/std-signature-capture.orb +2 -2
  62. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
  63. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
  64. package/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +354 -0
  65. package/behaviors/registry/ui/core/molecules/ui-import-progress.orb +195 -0
  66. package/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +279 -0
  67. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
  68. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
  69. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
  70. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
  71. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
  72. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +4 -4
  73. package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -9
  74. package/behaviors/registry/ui/game/organisms/ui-boardgame-board.orb +4 -4
  75. package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +4 -4
  76. package/behaviors/registry/ui/game/organisms/ui-debugger-board.orb +12 -12
  77. package/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +19 -19
  78. package/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +1 -1
  79. package/behaviors/registry/ui/game/organisms/ui-sequencer-board.orb +2 -2
  80. package/behaviors/registry/ui/learning/atoms/std-algo-heapsort.orb +8 -8
  81. package/dist/behaviors/behaviors-embeddings.json +568 -496
  82. package/dist/behaviors/behaviors-registry.json +7518 -3936
  83. package/dist/behaviors/exports-reader.js +3093 -2581
  84. package/dist/behaviors/functions/index.d.ts +922 -14
  85. package/dist/behaviors/functions/index.js +3056 -2582
  86. package/dist/behaviors/index.d.ts +1 -1
  87. package/dist/behaviors/index.js +3094 -2582
  88. package/dist/behaviors/knob-embeddings.json +1 -1
  89. package/dist/behaviors/query.js +3093 -2581
  90. package/dist/behaviors/registry/factory-signatures.json +11531 -2142
  91. package/dist/behaviors/registry/infra/atoms/std-migration-job.orb +1310 -0
  92. package/dist/behaviors/registry/infra/atoms/std-mod-queue.orb +5 -5
  93. package/dist/behaviors/registry/ml/atoms/std-data-collector.orb +324 -0
  94. package/dist/behaviors/registry/ml/atoms/std-graph-builder.orb +480 -0
  95. package/dist/behaviors/registry/ml/atoms/std-ml-similarity.orb +127 -72
  96. package/dist/behaviors/registry/ml/atoms/std-tokenizer.orb +570 -0
  97. package/dist/behaviors/registry/ml/atoms/std-weight-validator.orb +624 -0
  98. package/dist/behaviors/registry/ui/core/atoms/std-app-layout.orb +33 -1
  99. package/dist/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -2
  100. package/dist/behaviors/registry/ui/core/atoms/std-esign-flow.orb +17 -21
  101. package/dist/behaviors/registry/ui/core/atoms/std-esign-request.orb +7 -13
  102. package/dist/behaviors/registry/ui/core/atoms/std-event-log.orb +2 -4
  103. package/dist/behaviors/registry/ui/core/atoms/std-file-store.orb +3 -4
  104. package/dist/behaviors/registry/ui/core/atoms/std-gallery.orb +11 -20
  105. package/dist/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +4 -4
  106. package/dist/behaviors/registry/ui/core/atoms/std-import.orb +701 -0
  107. package/dist/behaviors/registry/ui/core/atoms/std-recurrence.orb +5 -10
  108. package/dist/behaviors/registry/ui/core/atoms/std-saved-search.orb +2 -2
  109. package/dist/behaviors/registry/ui/core/atoms/std-signature-capture.orb +2 -2
  110. package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
  111. package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
  112. package/dist/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +354 -0
  113. package/dist/behaviors/registry/ui/core/molecules/ui-import-progress.orb +195 -0
  114. package/dist/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +279 -0
  115. package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
  116. package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
  117. package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
  118. package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
  119. package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
  120. package/dist/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +4 -4
  121. package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -9
  122. package/dist/behaviors/registry/ui/game/organisms/ui-boardgame-board.orb +4 -4
  123. package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +4 -4
  124. package/dist/behaviors/registry/ui/game/organisms/ui-debugger-board.orb +12 -12
  125. package/dist/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +19 -19
  126. package/dist/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +1 -1
  127. package/dist/behaviors/registry/ui/game/organisms/ui-sequencer-board.orb +2 -2
  128. package/dist/behaviors/registry/ui/learning/atoms/std-algo-heapsort.orb +8 -8
  129. package/dist/behaviors-embeddings.json +568 -496
  130. package/dist/behaviors-registry.json +7518 -3936
  131. package/dist/index.d.ts +1 -1
  132. package/dist/index.js +3094 -2582
  133. package/dist/knob-embeddings.json +1 -1
  134. package/dist/registry/factory-signatures.json +11531 -2142
  135. package/package.json +2 -2
@@ -0,0 +1,195 @@
1
+ {
2
+ "description": "ImportProgress — UI factory (1:1 with the @almadar/ui import-progress pattern).",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01KYEH6M2N4JD9AVNYDDM1MNWX": {
6
+ "bakedName": "ImportProgressItem",
7
+ "curName": "ImportProgressItem",
8
+ "id": "ent_01KYEH6M2N4JD9AVNYDDM1MNWX",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01KYEH6M2NVB372R30A7XR559S": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01KYEH6M2NVB372R30A7XR559S",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01KYEH6M2N8HH3KZKFH85HEKGS",
20
+ "renames": []
21
+ },
22
+ "orb_01KYEH6M2NH6740PTMP4V1HX41": {
23
+ "bakedName": "ImportProgressOrbital",
24
+ "curName": "ImportProgressOrbital",
25
+ "id": "orb_01KYEH6M2NH6740PTMP4V1HX41",
26
+ "kind": "orbital",
27
+ "owner": "workspace",
28
+ "renames": []
29
+ },
30
+ "pag_01KYEH6M2ZP4YSGGEXCXRAD276": {
31
+ "bakedName": "ImportProgressPage",
32
+ "curName": "ImportProgressPage",
33
+ "id": "pag_01KYEH6M2ZP4YSGGEXCXRAD276",
34
+ "kind": "page",
35
+ "owner": "workspace",
36
+ "renames": []
37
+ },
38
+ "trt_01KYEH6M2N8HH3KZKFH85HEKGS": {
39
+ "bakedName": "ImportProgressRender",
40
+ "curName": "ImportProgressRender",
41
+ "id": "trt_01KYEH6M2N8HH3KZKFH85HEKGS",
42
+ "kind": "trait",
43
+ "owner": "workspace",
44
+ "renames": []
45
+ }
46
+ },
47
+ "schemaVersion": 1
48
+ },
49
+ "name": "ui-import-progress",
50
+ "orbitals": [
51
+ {
52
+ "entity": {
53
+ "fields": [
54
+ {
55
+ "name": "id",
56
+ "required": true,
57
+ "type": "string"
58
+ }
59
+ ],
60
+ "id": "ent_01KYEH6M2N4JD9AVNYDDM1MNWX",
61
+ "name": "ImportProgressItem",
62
+ "persistence": "runtime"
63
+ },
64
+ "id": "orb_01KYEH6M2NH6740PTMP4V1HX41",
65
+ "name": "ImportProgressOrbital",
66
+ "pages": [
67
+ {
68
+ "id": "pag_01KYEH6M2ZP4YSGGEXCXRAD276",
69
+ "name": "ImportProgressPage",
70
+ "path": "/import-progress",
71
+ "traits": [
72
+ {
73
+ "ref": "ImportProgressRender",
74
+ "refId": "trt_01KYEH6M2N8HH3KZKFH85HEKGS"
75
+ }
76
+ ]
77
+ }
78
+ ],
79
+ "traits": [
80
+ {
81
+ "category": "interaction",
82
+ "config": {
83
+ "className": {
84
+ "description": "Additional CSS classes",
85
+ "label": "Class Name",
86
+ "tier": "presentation",
87
+ "type": "string"
88
+ },
89
+ "counts": {
90
+ "description": "Unit counts",
91
+ "label": "Counts",
92
+ "properties": {
93
+ "committed": {
94
+ "name": "committed",
95
+ "required": false,
96
+ "type": "number"
97
+ },
98
+ "failed": {
99
+ "name": "failed",
100
+ "required": false,
101
+ "type": "number"
102
+ },
103
+ "staged": {
104
+ "name": "staged",
105
+ "required": false,
106
+ "type": "number"
107
+ }
108
+ },
109
+ "tier": "presentation",
110
+ "type": "ImportProgressCounts"
111
+ },
112
+ "labels": {
113
+ "default": {
114
+ "item": "Item"
115
+ },
116
+ "description": "Step label overrides",
117
+ "items": {
118
+ "type": "string"
119
+ },
120
+ "label": "Labels",
121
+ "tier": "presentation",
122
+ "type": "Map<string,string>"
123
+ },
124
+ "step": {
125
+ "default": "fetching",
126
+ "description": "Current lifecycle step",
127
+ "label": "Step",
128
+ "tier": "presentation",
129
+ "type": "string",
130
+ "values": [
131
+ "fetching",
132
+ "mapping",
133
+ "reviewing",
134
+ "committing",
135
+ "done",
136
+ "failed"
137
+ ]
138
+ }
139
+ },
140
+ "entityContract": {
141
+ "provides": [],
142
+ "requires": []
143
+ },
144
+ "entityRebindable": true,
145
+ "entityRefIds": {
146
+ "ImportProgressItem": "ent_01KYEH6M2N4JD9AVNYDDM1MNWX"
147
+ },
148
+ "id": "trt_01KYEH6M2N8HH3KZKFH85HEKGS",
149
+ "linkedEntity": "ImportProgressItem",
150
+ "linkedEntityId": "ent_01KYEH6M2N4JD9AVNYDDM1MNWX",
151
+ "name": "ImportProgressRender",
152
+ "scope": "instance",
153
+ "stateMachine": {
154
+ "events": [
155
+ {
156
+ "id": "evt_01KYEH6M2NVB372R30A7XR559S",
157
+ "key": "INIT",
158
+ "name": "Initialize"
159
+ }
160
+ ],
161
+ "states": [
162
+ {
163
+ "isInitial": true,
164
+ "name": "idle"
165
+ }
166
+ ],
167
+ "transitions": [
168
+ {
169
+ "effects": [
170
+ [
171
+ "render-ui",
172
+ "main",
173
+ {
174
+ "className": "@config.className",
175
+ "counts": "@config.counts",
176
+ "labels": "@config.labels",
177
+ "step": "@config.step",
178
+ "type": "import-progress"
179
+ }
180
+ ]
181
+ ],
182
+ "event": "INIT",
183
+ "eventId": "evt_01KYEH6M2NVB372R30A7XR559S",
184
+ "from": "idle",
185
+ "to": "idle"
186
+ }
187
+ ]
188
+ }
189
+ }
190
+ ]
191
+ }
192
+ ],
193
+ "schemaVersion": 1,
194
+ "version": "1.0.0"
195
+ }
@@ -0,0 +1,279 @@
1
+ {
2
+ "description": "ImportSourcePicker — UI factory (1:1 with the @almadar/ui import-source-picker pattern).",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01KYEH6M7Z90HPTWCHRKJNMJDT": {
6
+ "bakedName": "ImportSourcePickerItem",
7
+ "curName": "ImportSourcePickerItem",
8
+ "id": "ent_01KYEH6M7Z90HPTWCHRKJNMJDT",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01KYEH6M7ZZYZ2SHQW2YQNVE32": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01KYEH6M7ZZYZ2SHQW2YQNVE32",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01KYEH6M7ZBZP72AHESBRVRCSF",
20
+ "renames": []
21
+ },
22
+ "evt_01KYEH6M87EJN7RRMH72Q84MZ4": {
23
+ "bakedName": "@config.onSelect",
24
+ "curName": "@config.onSelect",
25
+ "id": "evt_01KYEH6M87EJN7RRMH72Q84MZ4",
26
+ "kind": "event",
27
+ "owner": "workspace",
28
+ "parent": "trt_01KYEH6M7ZBZP72AHESBRVRCSF",
29
+ "renames": []
30
+ },
31
+ "orb_01KYEH6M7ZFKF9VC8VQ9EMND9E": {
32
+ "bakedName": "ImportSourcePickerOrbital",
33
+ "curName": "ImportSourcePickerOrbital",
34
+ "id": "orb_01KYEH6M7ZFKF9VC8VQ9EMND9E",
35
+ "kind": "orbital",
36
+ "owner": "workspace",
37
+ "renames": []
38
+ },
39
+ "pag_01KYEH6M87ZND4ZC1H9PPGNW8M": {
40
+ "bakedName": "ImportSourcePickerPage",
41
+ "curName": "ImportSourcePickerPage",
42
+ "id": "pag_01KYEH6M87ZND4ZC1H9PPGNW8M",
43
+ "kind": "page",
44
+ "owner": "workspace",
45
+ "renames": []
46
+ },
47
+ "trt_01KYEH6M7ZBZP72AHESBRVRCSF": {
48
+ "bakedName": "ImportSourcePickerRender",
49
+ "curName": "ImportSourcePickerRender",
50
+ "id": "trt_01KYEH6M7ZBZP72AHESBRVRCSF",
51
+ "kind": "trait",
52
+ "owner": "workspace",
53
+ "renames": []
54
+ }
55
+ },
56
+ "schemaVersion": 1
57
+ },
58
+ "name": "ui-import-source-picker",
59
+ "orbitals": [
60
+ {
61
+ "entity": {
62
+ "fields": [
63
+ {
64
+ "name": "id",
65
+ "required": true,
66
+ "type": "string"
67
+ }
68
+ ],
69
+ "id": "ent_01KYEH6M7Z90HPTWCHRKJNMJDT",
70
+ "name": "ImportSourcePickerItem",
71
+ "persistence": "runtime"
72
+ },
73
+ "id": "orb_01KYEH6M7ZFKF9VC8VQ9EMND9E",
74
+ "name": "ImportSourcePickerOrbital",
75
+ "pages": [
76
+ {
77
+ "id": "pag_01KYEH6M87ZND4ZC1H9PPGNW8M",
78
+ "name": "ImportSourcePickerPage",
79
+ "path": "/import-source-picker",
80
+ "traits": [
81
+ {
82
+ "ref": "ImportSourcePickerRender",
83
+ "refId": "trt_01KYEH6M7ZBZP72AHESBRVRCSF"
84
+ }
85
+ ]
86
+ }
87
+ ],
88
+ "traits": [
89
+ {
90
+ "category": "interaction",
91
+ "config": {
92
+ "className": {
93
+ "description": "Additional CSS classes",
94
+ "label": "Class Name",
95
+ "tier": "presentation",
96
+ "type": "string"
97
+ },
98
+ "moreSources": {
99
+ "description": "Generic slot for additional sources rendered below the options",
100
+ "label": "More Sources",
101
+ "tier": "presentation",
102
+ "type": "node"
103
+ },
104
+ "onSelect": {
105
+ "default": "SELECT",
106
+ "description": "Called with the source id when an 'action' option is picked",
107
+ "label": "On Select",
108
+ "tier": "presentation",
109
+ "type": "string"
110
+ },
111
+ "sources": {
112
+ "default": [
113
+ {
114
+ "accept": "Accept",
115
+ "description": "Description",
116
+ "disabled": false,
117
+ "icon": "circle",
118
+ "id": "Id",
119
+ "kind": "action",
120
+ "label": "Label",
121
+ "multiple": false
122
+ },
123
+ {
124
+ "accept": "Accept 2",
125
+ "description": "Description 2",
126
+ "disabled": true,
127
+ "icon": "circle",
128
+ "id": "Id 2",
129
+ "kind": "file",
130
+ "label": "Label 2",
131
+ "multiple": true
132
+ }
133
+ ],
134
+ "description": "Source options to render",
135
+ "items": {
136
+ "properties": {
137
+ "accept": {
138
+ "name": "accept",
139
+ "required": false,
140
+ "type": "string"
141
+ },
142
+ "description": {
143
+ "name": "description",
144
+ "required": false,
145
+ "type": "string"
146
+ },
147
+ "disabled": {
148
+ "name": "disabled",
149
+ "required": false,
150
+ "type": "boolean"
151
+ },
152
+ "icon": {
153
+ "name": "icon",
154
+ "required": false,
155
+ "type": "string"
156
+ },
157
+ "id": {
158
+ "name": "id",
159
+ "required": true,
160
+ "type": "string"
161
+ },
162
+ "kind": {
163
+ "name": "kind",
164
+ "required": false,
165
+ "type": "string",
166
+ "values": [
167
+ "action",
168
+ "file"
169
+ ]
170
+ },
171
+ "label": {
172
+ "name": "label",
173
+ "required": true,
174
+ "type": "string"
175
+ },
176
+ "multiple": {
177
+ "name": "multiple",
178
+ "required": false,
179
+ "type": "boolean"
180
+ }
181
+ },
182
+ "type": "object"
183
+ },
184
+ "label": "Sources",
185
+ "tier": "presentation",
186
+ "type": "[ImportSourcePickerSourcesItem]"
187
+ },
188
+ "title": {
189
+ "description": "Optional heading above the options",
190
+ "label": "Title",
191
+ "tier": "presentation",
192
+ "type": "string"
193
+ }
194
+ },
195
+ "emits": [
196
+ {
197
+ "description": "Called with the source id when an 'action' option is picked",
198
+ "event": "@config.onSelect",
199
+ "eventId": "evt_01KYEH6M87EJN7RRMH72Q84MZ4",
200
+ "payloadSchema": [
201
+ {
202
+ "name": "sourceId",
203
+ "type": "string"
204
+ }
205
+ ],
206
+ "scope": "external",
207
+ "tier": "essential"
208
+ }
209
+ ],
210
+ "entityContract": {
211
+ "provides": [],
212
+ "requires": []
213
+ },
214
+ "entityRebindable": true,
215
+ "entityRefIds": {
216
+ "ImportSourcePickerItem": "ent_01KYEH6M7Z90HPTWCHRKJNMJDT"
217
+ },
218
+ "id": "trt_01KYEH6M7ZBZP72AHESBRVRCSF",
219
+ "linkedEntity": "ImportSourcePickerItem",
220
+ "linkedEntityId": "ent_01KYEH6M7Z90HPTWCHRKJNMJDT",
221
+ "name": "ImportSourcePickerRender",
222
+ "scope": "instance",
223
+ "stateMachine": {
224
+ "events": [
225
+ {
226
+ "id": "evt_01KYEH6M7ZZYZ2SHQW2YQNVE32",
227
+ "key": "INIT",
228
+ "name": "Initialize"
229
+ },
230
+ {
231
+ "description": "Called with the source id when an 'action' option is picked",
232
+ "id": "evt_01KYEH6M87EJN7RRMH72Q84MZ4",
233
+ "key": "@config.onSelect",
234
+ "name": "@config.on select",
235
+ "payloadSchema": [
236
+ {
237
+ "name": "sourceId",
238
+ "type": "string"
239
+ }
240
+ ],
241
+ "tier": "essential"
242
+ }
243
+ ],
244
+ "states": [
245
+ {
246
+ "isInitial": true,
247
+ "name": "idle"
248
+ }
249
+ ],
250
+ "transitions": [
251
+ {
252
+ "effects": [
253
+ [
254
+ "render-ui",
255
+ "main",
256
+ {
257
+ "className": "@config.className",
258
+ "moreSources": "@config.moreSources",
259
+ "onSelect": "@config.onSelect",
260
+ "sources": "@config.sources",
261
+ "title": "@config.title",
262
+ "type": "import-source-picker"
263
+ }
264
+ ]
265
+ ],
266
+ "event": "INIT",
267
+ "eventId": "evt_01KYEH6M7ZZYZ2SHQW2YQNVE32",
268
+ "from": "idle",
269
+ "to": "idle"
270
+ }
271
+ ]
272
+ }
273
+ }
274
+ ]
275
+ }
276
+ ],
277
+ "schemaVersion": 1,
278
+ "version": "1.0.0"
279
+ }
@@ -558,10 +558,10 @@
558
558
  "tier": "essential"
559
559
  },
560
560
  {
561
- "description": "User opened a record from the list.",
562
- "id": "evt_01KXG04RSDC4V2E198Y3Q8880X",
563
- "key": "VIEW",
564
- "name": "View",
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 selection change: UI:{selectEvent} with { ids, rows }.",
575
- "id": "evt_01KXG04RSDTCZQPH74KHHQR5MZ",
576
- "key": "@config.selectEvent",
577
- "name": "@config.select event",
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": "Event emitted on sortable-header click: UI:{sortEvent} with { column, direction }.",
588
- "id": "evt_01KXG04RSDX3BXZBA0CDEKZV1G",
589
- "key": "@config.sortEvent",
590
- "name": "@config.sort event",
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
  }
@@ -393,10 +393,10 @@
393
393
  "tier": "essential"
394
394
  },
395
395
  {
396
- "description": "User opened a record from the list.",
397
- "id": "evt_01KXG04SH3R1YPRSCJX64JDKM2",
398
- "key": "VIEW",
399
- "name": "View",
396
+ "description": "Item actions - schema-driven or function-based",
397
+ "id": "evt_01KXG04SH3CDMWPSH39V0BN1TD",
398
+ "key": "ITEM_ACTIONS",
399
+ "name": "Item Actions",
400
400
  "payloadSchema": [
401
401
  {
402
402
  "name": "id",
@@ -406,10 +406,10 @@
406
406
  "tier": "essential"
407
407
  },
408
408
  {
409
- "description": "Item actions - schema-driven or function-based",
410
- "id": "evt_01KXG04SH3CDMWPSH39V0BN1TD",
411
- "key": "ITEM_ACTIONS",
412
- "name": "Item Actions",
409
+ "description": "User opened a record from the list.",
410
+ "id": "evt_01KXG04SH3R1YPRSCJX64JDKM2",
411
+ "key": "VIEW",
412
+ "name": "View",
413
413
  "payloadSchema": [
414
414
  {
415
415
  "name": "id",
@@ -506,19 +506,6 @@
506
506
  "eventId": "evt_01KXG04SH3S1G8MB6C8PAC7PMY",
507
507
  "from": "idle",
508
508
  "to": "idle"
509
- },
510
- {
511
- "effects": [
512
- [
513
- "emit",
514
- "VIEW",
515
- {}
516
- ]
517
- ],
518
- "event": "VIEW",
519
- "eventId": "evt_01KXG04SH3R1YPRSCJX64JDKM2",
520
- "from": "idle",
521
- "to": "idle"
522
509
  }
523
510
  ]
524
511
  }
@@ -637,19 +637,6 @@
637
637
  "eventId": "evt_01KXG04SJJDJHTKN6PP74YNPWJ",
638
638
  "from": "idle",
639
639
  "to": "idle"
640
- },
641
- {
642
- "effects": [
643
- [
644
- "emit",
645
- "VIEW",
646
- {}
647
- ]
648
- ],
649
- "event": "VIEW",
650
- "eventId": "evt_01KXG04SJJ648J6B44Z4MCR8KK",
651
- "from": "idle",
652
- "to": "idle"
653
640
  }
654
641
  ]
655
642
  }
@@ -373,19 +373,6 @@
373
373
  "eventId": "evt_01KXG04T5Q7ZFPSWYBZTKDFZEP",
374
374
  "from": "idle",
375
375
  "to": "idle"
376
- },
377
- {
378
- "effects": [
379
- [
380
- "emit",
381
- "VIEW",
382
- {}
383
- ]
384
- ],
385
- "event": "VIEW",
386
- "eventId": "evt_01KXG04T5Q6H3S155F80B55SFP",
387
- "from": "idle",
388
- "to": "idle"
389
376
  }
390
377
  ]
391
378
  }