@almadar/std 16.150.0 → 16.152.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 (93) hide show
  1. package/behaviors/lolo/ui/core/atoms/std-app-search.lolo +18 -0
  2. package/behaviors/lolo/ui/core/atoms/std-board.lolo +1 -1
  3. package/behaviors/lolo/ui/core/atoms/std-browse.lolo +39 -10
  4. package/behaviors/lolo/ui/core/atoms/std-calendar.lolo +13 -1
  5. package/behaviors/lolo/ui/core/atoms/std-multi-party-flow.lolo +8 -10
  6. package/behaviors/lolo/ui/core/atoms/std-stats.lolo +3 -0
  7. package/behaviors/lolo/ui/core/atoms/ui-typography.lolo +6 -1
  8. package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +4 -2
  9. package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +27 -1
  10. package/behaviors/lolo/ui/core/molecules/ui-graph-canvas.lolo +57 -0
  11. package/behaviors/lolo/ui/core/molecules/ui-simple-grid.lolo +2 -2
  12. package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +3 -1
  13. package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +4 -2
  14. package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +2 -0
  15. package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +3 -1
  16. package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +3 -1
  17. package/behaviors/lolo/ui/game/atoms/ui-draw-group.lolo +54 -0
  18. package/behaviors/lolo/ui/game/atoms/ui-draw-shape.lolo +6 -1
  19. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-group.lolo +58 -0
  20. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-shape.lolo +103 -0
  21. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-text.lolo +58 -0
  22. package/behaviors/lolo/ui/game/molecules/ui-draw-shape-layer.lolo +3 -2
  23. package/behaviors/lolo/ui/game/molecules/ui-svg-draw-shape-layer.lolo +52 -0
  24. package/behaviors/lolo/ui/game/molecules/ui-svg-stage.lolo +98 -0
  25. package/behaviors/lolo/ui/learning/atoms/std-branching-logic.lolo +0 -28
  26. package/behaviors/registry/factory-signatures.json +2435 -782
  27. package/behaviors/registry/ui/core/atoms/std-app-search.orb +60 -0
  28. package/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
  29. package/behaviors/registry/ui/core/atoms/std-browse.orb +242 -35
  30. package/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
  31. package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
  32. package/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
  33. package/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
  34. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
  35. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +71 -1
  36. package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
  37. package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
  38. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
  39. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
  40. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
  41. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +54 -1
  42. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
  43. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  44. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  45. package/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  46. package/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  47. package/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  48. package/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  49. package/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  50. package/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  51. package/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
  52. package/dist/behaviors/behaviors-embeddings.json +476 -452
  53. package/dist/behaviors/behaviors-registry.json +2814 -877
  54. package/dist/behaviors/exports-reader.js +143 -4
  55. package/dist/behaviors/functions/index.d.ts +33 -20
  56. package/dist/behaviors/functions/index.js +143 -4
  57. package/dist/behaviors/index.d.ts +1 -1
  58. package/dist/behaviors/index.js +143 -4
  59. package/dist/behaviors/knob-embeddings.json +1 -1
  60. package/dist/behaviors/query.js +143 -4
  61. package/dist/behaviors/registry/factory-signatures.json +2435 -782
  62. package/dist/behaviors/registry/ui/core/atoms/std-app-search.orb +60 -0
  63. package/dist/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
  64. package/dist/behaviors/registry/ui/core/atoms/std-browse.orb +242 -35
  65. package/dist/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
  66. package/dist/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
  67. package/dist/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
  68. package/dist/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
  69. package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
  70. package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +71 -1
  71. package/dist/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
  72. package/dist/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
  73. package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
  74. package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
  75. package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
  76. package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +54 -1
  77. package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
  78. package/dist/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  79. package/dist/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  80. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  81. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  82. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  83. package/dist/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  84. package/dist/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  85. package/dist/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  86. package/dist/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
  87. package/dist/behaviors-embeddings.json +476 -452
  88. package/dist/behaviors-registry.json +2814 -877
  89. package/dist/index.d.ts +1 -1
  90. package/dist/index.js +143 -4
  91. package/dist/knob-embeddings.json +1 -1
  92. package/dist/registry/factory-signatures.json +2435 -782
  93. package/package.json +3 -3
@@ -236,6 +236,8 @@
236
236
  "variant": "ghost"
237
237
  }
238
238
  ],
239
+ "description": "Item actions - schema-driven or function-based",
240
+ "label": "Item Actions",
239
241
  "tier": "presentation",
240
242
  "type": "json"
241
243
  },
@@ -333,8 +333,61 @@
333
333
  "variant": "ghost"
334
334
  }
335
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",
336
389
  "tier": "presentation",
337
- "type": "json"
390
+ "type": "[EntityTableItemActionsItem]"
338
391
  },
339
392
  "look": {
340
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": "json"
190
+ "type": "[TimelineItemActionsItem]"
159
191
  },
160
192
  "items": {
161
193
  "default": [],
@@ -0,0 +1,196 @@
1
+ {
2
+ "description": "DrawGroup — UI factory (1:1 with the @almadar/ui draw-group pattern).",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01KYMSJ0XC4FZ6XDMWJFY33XPW": {
6
+ "bakedName": "DrawGroupItem",
7
+ "curName": "DrawGroupItem",
8
+ "id": "ent_01KYMSJ0XC4FZ6XDMWJFY33XPW",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01KYMSJ0XCMQ913RB16GM5PWV3": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01KYMSJ0XCMQ913RB16GM5PWV3",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01KYMSJ0XCXD36RE50XVZ2PJDP",
20
+ "renames": []
21
+ },
22
+ "orb_01KYMSJ0XCK8CKQ75MKSNFD3JY": {
23
+ "bakedName": "DrawGroupOrbital",
24
+ "curName": "DrawGroupOrbital",
25
+ "id": "orb_01KYMSJ0XCK8CKQ75MKSNFD3JY",
26
+ "kind": "orbital",
27
+ "owner": "workspace",
28
+ "renames": []
29
+ },
30
+ "pag_01KYMSJ0XGAMW6KQFWSN214CQZ": {
31
+ "bakedName": "DrawGroupPage",
32
+ "curName": "DrawGroupPage",
33
+ "id": "pag_01KYMSJ0XGAMW6KQFWSN214CQZ",
34
+ "kind": "page",
35
+ "owner": "workspace",
36
+ "renames": []
37
+ },
38
+ "trt_01KYMSJ0XCXD36RE50XVZ2PJDP": {
39
+ "bakedName": "DrawGroupRender",
40
+ "curName": "DrawGroupRender",
41
+ "id": "trt_01KYMSJ0XCXD36RE50XVZ2PJDP",
42
+ "kind": "trait",
43
+ "owner": "workspace",
44
+ "renames": []
45
+ }
46
+ },
47
+ "schemaVersion": 1
48
+ },
49
+ "name": "ui-draw-group",
50
+ "orbitals": [
51
+ {
52
+ "entity": {
53
+ "fields": [
54
+ {
55
+ "name": "id",
56
+ "required": true,
57
+ "type": "string"
58
+ }
59
+ ],
60
+ "id": "ent_01KYMSJ0XC4FZ6XDMWJFY33XPW",
61
+ "name": "DrawGroupItem",
62
+ "persistence": "runtime"
63
+ },
64
+ "id": "orb_01KYMSJ0XCK8CKQ75MKSNFD3JY",
65
+ "name": "DrawGroupOrbital",
66
+ "pages": [
67
+ {
68
+ "id": "pag_01KYMSJ0XGAMW6KQFWSN214CQZ",
69
+ "name": "DrawGroupPage",
70
+ "path": "/draw-group",
71
+ "traits": [
72
+ {
73
+ "ref": "DrawGroupRender",
74
+ "refId": "trt_01KYMSJ0XCXD36RE50XVZ2PJDP"
75
+ }
76
+ ]
77
+ }
78
+ ],
79
+ "traits": [
80
+ {
81
+ "category": "interaction",
82
+ "config": {
83
+ "items": {
84
+ "default": [],
85
+ "description": "The grouped drawables, painted through the normal dispatch.",
86
+ "items": {
87
+ "type": "object"
88
+ },
89
+ "label": "Items",
90
+ "tier": "presentation",
91
+ "type": "[json]"
92
+ },
93
+ "opacity": {
94
+ "description": "0..1 opacity.",
95
+ "label": "Opacity",
96
+ "tier": "presentation",
97
+ "type": "number"
98
+ },
99
+ "position": {
100
+ "default": {
101
+ "x": 1.0,
102
+ "y": 1.0,
103
+ "z": 1.0
104
+ },
105
+ "description": "Logical scene position; the projector maps it to pixels / world.",
106
+ "label": "Position",
107
+ "properties": {
108
+ "x": {
109
+ "name": "x",
110
+ "required": true,
111
+ "type": "number"
112
+ },
113
+ "y": {
114
+ "name": "y",
115
+ "required": true,
116
+ "type": "number"
117
+ },
118
+ "z": {
119
+ "name": "z",
120
+ "required": false,
121
+ "type": "number"
122
+ }
123
+ },
124
+ "tier": "presentation",
125
+ "type": "DrawGroupPosition"
126
+ },
127
+ "rotate": {
128
+ "description": "Rotation in radians (painter units).",
129
+ "label": "Rotate",
130
+ "tier": "presentation",
131
+ "type": "number"
132
+ },
133
+ "scale": {
134
+ "description": "Uniform scale applied to the whole group.",
135
+ "label": "Scale",
136
+ "tier": "presentation",
137
+ "type": "number"
138
+ }
139
+ },
140
+ "entityContract": {
141
+ "provides": [],
142
+ "requires": []
143
+ },
144
+ "entityRebindable": true,
145
+ "entityRefIds": {
146
+ "DrawGroupItem": "ent_01KYMSJ0XC4FZ6XDMWJFY33XPW"
147
+ },
148
+ "id": "trt_01KYMSJ0XCXD36RE50XVZ2PJDP",
149
+ "linkedEntity": "DrawGroupItem",
150
+ "linkedEntityId": "ent_01KYMSJ0XC4FZ6XDMWJFY33XPW",
151
+ "name": "DrawGroupRender",
152
+ "scope": "instance",
153
+ "stateMachine": {
154
+ "events": [
155
+ {
156
+ "id": "evt_01KYMSJ0XCMQ913RB16GM5PWV3",
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
+ "items": "@config.items",
175
+ "opacity": "@config.opacity",
176
+ "position": "@config.position",
177
+ "rotate": "@config.rotate",
178
+ "scale": "@config.scale",
179
+ "type": "draw-group"
180
+ }
181
+ ]
182
+ ],
183
+ "event": "INIT",
184
+ "eventId": "evt_01KYMSJ0XCMQ913RB16GM5PWV3",
185
+ "from": "idle",
186
+ "to": "idle"
187
+ }
188
+ ]
189
+ }
190
+ }
191
+ ]
192
+ }
193
+ ],
194
+ "schemaVersion": 1,
195
+ "version": "1.0.0"
196
+ }
@@ -87,6 +87,12 @@
87
87
  "tier": "presentation",
88
88
  "type": "json"
89
89
  },
90
+ "d": {
91
+ "description": "SVG path data in world units relative to the cell's projected top-left — same coordinate convention as `points`.",
92
+ "label": "D",
93
+ "tier": "presentation",
94
+ "type": "string"
95
+ },
90
96
  "fill": {
91
97
  "description": "fill prop",
92
98
  "label": "Fill",
@@ -177,7 +183,8 @@
177
183
  "cell",
178
184
  "rect",
179
185
  "ellipse",
180
- "poly"
186
+ "poly",
187
+ "path"
181
188
  ]
182
189
  },
183
190
  "stroke": {
@@ -234,6 +241,7 @@
234
241
  "main",
235
242
  {
236
243
  "anchor": "@config.anchor",
244
+ "d": "@config.d",
237
245
  "fill": "@config.fill",
238
246
  "height": "@config.height",
239
247
  "offsetX": "@config.offsetX",
@@ -0,0 +1,186 @@
1
+ {
2
+ "description": "SvgDrawGroup — UI factory (1:1 with the @almadar/ui svg-draw-group pattern).",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01KYMKTF35MDDAS1R74C2SG6T5": {
6
+ "bakedName": "SvgDrawGroupItem",
7
+ "curName": "SvgDrawGroupItem",
8
+ "id": "ent_01KYMKTF35MDDAS1R74C2SG6T5",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01KYMKTF3562FXPARGCC220TWE": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01KYMKTF3562FXPARGCC220TWE",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01KYMKTF35P7FYP2AJB4689VCN",
20
+ "renames": []
21
+ },
22
+ "orb_01KYMKTF35FTQ5Y8HCZBQPYVZ4": {
23
+ "bakedName": "SvgDrawGroupOrbital",
24
+ "curName": "SvgDrawGroupOrbital",
25
+ "id": "orb_01KYMKTF35FTQ5Y8HCZBQPYVZ4",
26
+ "kind": "orbital",
27
+ "owner": "workspace",
28
+ "renames": []
29
+ },
30
+ "pag_01KYMKTF36J0SESNTGYJ55AZTF": {
31
+ "bakedName": "SvgDrawGroupPage",
32
+ "curName": "SvgDrawGroupPage",
33
+ "id": "pag_01KYMKTF36J0SESNTGYJ55AZTF",
34
+ "kind": "page",
35
+ "owner": "workspace",
36
+ "renames": []
37
+ },
38
+ "trt_01KYMKTF35P7FYP2AJB4689VCN": {
39
+ "bakedName": "SvgDrawGroupRender",
40
+ "curName": "SvgDrawGroupRender",
41
+ "id": "trt_01KYMKTF35P7FYP2AJB4689VCN",
42
+ "kind": "trait",
43
+ "owner": "workspace",
44
+ "renames": []
45
+ }
46
+ },
47
+ "schemaVersion": 1
48
+ },
49
+ "name": "ui-svg-draw-group",
50
+ "orbitals": [
51
+ {
52
+ "entity": {
53
+ "fields": [
54
+ {
55
+ "name": "id",
56
+ "required": true,
57
+ "type": "string"
58
+ }
59
+ ],
60
+ "id": "ent_01KYMKTF35MDDAS1R74C2SG6T5",
61
+ "name": "SvgDrawGroupItem",
62
+ "persistence": "runtime"
63
+ },
64
+ "id": "orb_01KYMKTF35FTQ5Y8HCZBQPYVZ4",
65
+ "name": "SvgDrawGroupOrbital",
66
+ "pages": [
67
+ {
68
+ "id": "pag_01KYMKTF36J0SESNTGYJ55AZTF",
69
+ "name": "SvgDrawGroupPage",
70
+ "path": "/svg-draw-group",
71
+ "traits": [
72
+ {
73
+ "ref": "SvgDrawGroupRender",
74
+ "refId": "trt_01KYMKTF35P7FYP2AJB4689VCN"
75
+ }
76
+ ]
77
+ }
78
+ ],
79
+ "traits": [
80
+ {
81
+ "category": "interaction",
82
+ "config": {
83
+ "children": {
84
+ "description": "children prop",
85
+ "label": "Children",
86
+ "tier": "presentation",
87
+ "type": "node"
88
+ },
89
+ "className": {
90
+ "description": "Additional CSS classes",
91
+ "label": "Class Name",
92
+ "tier": "presentation",
93
+ "type": "string"
94
+ },
95
+ "opacity": {
96
+ "description": "0..1 opacity.",
97
+ "label": "Opacity",
98
+ "tier": "presentation",
99
+ "type": "number"
100
+ },
101
+ "rotate": {
102
+ "description": "Rotation in degrees applied after the translate.",
103
+ "label": "Rotate",
104
+ "tier": "presentation",
105
+ "type": "number"
106
+ },
107
+ "scale": {
108
+ "description": "Uniform scale applied after the translate.",
109
+ "label": "Scale",
110
+ "tier": "presentation",
111
+ "type": "number"
112
+ },
113
+ "x": {
114
+ "default": 0.0,
115
+ "description": "Grid-cell x of the group's origin.",
116
+ "label": "X",
117
+ "tier": "presentation",
118
+ "type": "number"
119
+ },
120
+ "y": {
121
+ "default": 0.0,
122
+ "description": "Grid-cell y of the group's origin.",
123
+ "label": "Y",
124
+ "tier": "presentation",
125
+ "type": "number"
126
+ }
127
+ },
128
+ "entityContract": {
129
+ "provides": [],
130
+ "requires": []
131
+ },
132
+ "entityRebindable": true,
133
+ "entityRefIds": {
134
+ "SvgDrawGroupItem": "ent_01KYMKTF35MDDAS1R74C2SG6T5"
135
+ },
136
+ "id": "trt_01KYMKTF35P7FYP2AJB4689VCN",
137
+ "linkedEntity": "SvgDrawGroupItem",
138
+ "linkedEntityId": "ent_01KYMKTF35MDDAS1R74C2SG6T5",
139
+ "name": "SvgDrawGroupRender",
140
+ "scope": "instance",
141
+ "stateMachine": {
142
+ "events": [
143
+ {
144
+ "id": "evt_01KYMKTF3562FXPARGCC220TWE",
145
+ "key": "INIT",
146
+ "name": "Initialize"
147
+ }
148
+ ],
149
+ "states": [
150
+ {
151
+ "isInitial": true,
152
+ "name": "idle"
153
+ }
154
+ ],
155
+ "transitions": [
156
+ {
157
+ "effects": [
158
+ [
159
+ "render-ui",
160
+ "main",
161
+ {
162
+ "children": "@config.children",
163
+ "className": "@config.className",
164
+ "opacity": "@config.opacity",
165
+ "rotate": "@config.rotate",
166
+ "scale": "@config.scale",
167
+ "type": "svg-draw-group",
168
+ "x": "@config.x",
169
+ "y": "@config.y"
170
+ }
171
+ ]
172
+ ],
173
+ "event": "INIT",
174
+ "eventId": "evt_01KYMKTF3562FXPARGCC220TWE",
175
+ "from": "idle",
176
+ "to": "idle"
177
+ }
178
+ ]
179
+ }
180
+ }
181
+ ]
182
+ }
183
+ ],
184
+ "schemaVersion": 1,
185
+ "version": "1.0.0"
186
+ }