@almadar/std 16.9.2 → 16.10.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-calendar.orb +121 -63
- package/behaviors/registry/core-variations/atoms/std-board-swim-lanes.orb +58 -58
- package/behaviors/registry/core-variations/atoms/std-board-timeline-roadmap.orb +94 -88
- package/behaviors/registry/core-variations/atoms/std-browse-dense.orb +51 -57
- package/behaviors/registry/core-variations/atoms/std-browse-feed.orb +52 -51
- package/behaviors/registry/core-variations/atoms/std-browse-gallery.orb +53 -53
- package/behaviors/registry/core-variations/atoms/std-browse-triage.orb +66 -86
- package/behaviors/registry/core-variations/atoms/std-calendar-agenda-list.orb +50 -50
- package/behaviors/registry/core-variations/atoms/std-calendar-week-timeline.orb +38 -38
- package/dist/behaviors/behaviors-registry.json +3 -3
- package/dist/behaviors/registry/core/atoms/std-calendar.orb +121 -63
- package/dist/behaviors/registry/core-variations/atoms/std-board-swim-lanes.orb +58 -58
- package/dist/behaviors/registry/core-variations/atoms/std-board-timeline-roadmap.orb +94 -88
- package/dist/behaviors/registry/core-variations/atoms/std-browse-dense.orb +51 -57
- package/dist/behaviors/registry/core-variations/atoms/std-browse-feed.orb +52 -51
- package/dist/behaviors/registry/core-variations/atoms/std-browse-gallery.orb +53 -53
- package/dist/behaviors/registry/core-variations/atoms/std-browse-triage.orb +66 -86
- package/dist/behaviors/registry/core-variations/atoms/std-calendar-agenda-list.orb +50 -50
- package/dist/behaviors/registry/core-variations/atoms/std-calendar-week-timeline.orb +38 -38
- package/dist/behaviors-registry.json +3 -3
- package/dist/registry/core/atoms/std-calendar.orb +121 -63
- package/dist/registry/core-variations/atoms/std-board-swim-lanes.orb +58 -58
- package/dist/registry/core-variations/atoms/std-board-timeline-roadmap.orb +94 -88
- package/dist/registry/core-variations/atoms/std-browse-dense.orb +51 -57
- package/dist/registry/core-variations/atoms/std-browse-feed.orb +52 -51
- package/dist/registry/core-variations/atoms/std-browse-gallery.orb +53 -53
- package/dist/registry/core-variations/atoms/std-browse-triage.orb +66 -86
- package/dist/registry/core-variations/atoms/std-calendar-agenda-list.orb +50 -50
- package/dist/registry/core-variations/atoms/std-calendar-week-timeline.orb +38 -38
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-board-timeline-roadmap",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Timeline / roadmap board — horizontal time axis with quarters or months as columns; items render as cards inside their target column (item.stage = column.key). Mirrors the Linear / Asana / Productboard roadmap UX. Configure `columns` as ['Q1', 'Q2', 'Q3', 'Q4'] (or months) and the board lays them out left-to-right along a time axis. Same BoardItemBoard trait, same state machine, same emits/listens as std-board — only the bodyContent tree differs.",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
@@ -34,7 +34,13 @@
|
|
|
34
34
|
{
|
|
35
35
|
"name": "stage",
|
|
36
36
|
"type": "string",
|
|
37
|
-
"default": "Q1"
|
|
37
|
+
"default": "Q1",
|
|
38
|
+
"values": [
|
|
39
|
+
"Q1",
|
|
40
|
+
"Q2",
|
|
41
|
+
"Q3",
|
|
42
|
+
"Q4"
|
|
43
|
+
]
|
|
38
44
|
},
|
|
39
45
|
{
|
|
40
46
|
"name": "notes",
|
|
@@ -94,214 +100,214 @@
|
|
|
94
100
|
"config": {
|
|
95
101
|
"columns": [
|
|
96
102
|
{
|
|
97
|
-
"icon": "calendar",
|
|
98
|
-
"label": "Q1",
|
|
99
103
|
"variant": "default",
|
|
104
|
+
"label": "Q1",
|
|
105
|
+
"icon": "calendar",
|
|
100
106
|
"key": "Q1"
|
|
101
107
|
},
|
|
102
108
|
{
|
|
103
|
-
"label": "Q2",
|
|
104
|
-
"icon": "calendar",
|
|
105
109
|
"key": "Q2",
|
|
106
|
-
"
|
|
110
|
+
"label": "Q2",
|
|
111
|
+
"variant": "primary",
|
|
112
|
+
"icon": "calendar"
|
|
107
113
|
},
|
|
108
114
|
{
|
|
109
|
-
"key": "Q3",
|
|
110
115
|
"label": "Q3",
|
|
116
|
+
"variant": "info",
|
|
111
117
|
"icon": "calendar",
|
|
112
|
-
"
|
|
118
|
+
"key": "Q3"
|
|
113
119
|
},
|
|
114
120
|
{
|
|
115
|
-
"key": "Q4",
|
|
116
|
-
"label": "Q4",
|
|
117
121
|
"icon": "calendar",
|
|
118
|
-
"
|
|
122
|
+
"key": "Q4",
|
|
123
|
+
"variant": "success",
|
|
124
|
+
"label": "Q4"
|
|
119
125
|
}
|
|
120
126
|
],
|
|
121
|
-
"gridCols": 4.0,
|
|
122
127
|
"bodyContent": {
|
|
123
|
-
"
|
|
124
|
-
"gap": "md",
|
|
128
|
+
"direction": "vertical",
|
|
125
129
|
"children": [
|
|
126
130
|
{
|
|
127
131
|
"className": "px-card-md",
|
|
128
|
-
"direction": "horizontal",
|
|
129
132
|
"children": [
|
|
130
133
|
{
|
|
131
|
-
"
|
|
132
|
-
"
|
|
134
|
+
"type": "icon",
|
|
135
|
+
"name": "calendar-range"
|
|
133
136
|
},
|
|
134
137
|
{
|
|
135
|
-
"
|
|
138
|
+
"type": "typography",
|
|
136
139
|
"content": "@config.title",
|
|
137
|
-
"
|
|
140
|
+
"variant": "h2"
|
|
138
141
|
},
|
|
139
142
|
{
|
|
140
|
-
"type": "typography",
|
|
141
|
-
"className": "ml-2",
|
|
142
143
|
"content": "Roadmap",
|
|
144
|
+
"type": "typography",
|
|
143
145
|
"color": "muted",
|
|
144
|
-
"variant": "caption"
|
|
146
|
+
"variant": "caption",
|
|
147
|
+
"className": "ml-2"
|
|
145
148
|
}
|
|
146
149
|
],
|
|
147
|
-
"
|
|
150
|
+
"direction": "horizontal",
|
|
148
151
|
"type": "stack",
|
|
149
|
-
"gap": "sm"
|
|
152
|
+
"gap": "sm",
|
|
153
|
+
"align": "center"
|
|
150
154
|
},
|
|
151
155
|
{
|
|
152
156
|
"type": "divider"
|
|
153
157
|
},
|
|
154
158
|
{
|
|
155
|
-
"align": "stretch",
|
|
156
|
-
"type": "stack",
|
|
157
|
-
"gap": "none",
|
|
158
159
|
"className": "overflow-x-auto border-y border-[var(--color-border)]",
|
|
160
|
+
"align": "stretch",
|
|
159
161
|
"children": [
|
|
160
162
|
{
|
|
161
|
-
"
|
|
163
|
+
"type": "data-grid",
|
|
162
164
|
"renderItem": [
|
|
163
165
|
"fn",
|
|
164
166
|
"col",
|
|
165
167
|
{
|
|
166
168
|
"children": [
|
|
167
169
|
{
|
|
168
|
-
"gap": "xs",
|
|
169
|
-
"align": "center",
|
|
170
|
-
"type": "stack",
|
|
171
|
-
"className": "px-card-md py-2 bg-[var(--color-surface-subtle)] border-b border-[var(--color-border)] sticky top-0",
|
|
172
|
-
"direction": "horizontal",
|
|
173
170
|
"children": [
|
|
174
171
|
{
|
|
175
172
|
"type": "icon",
|
|
176
173
|
"name": "@col.icon"
|
|
177
174
|
},
|
|
178
175
|
{
|
|
179
|
-
"variant": "h4",
|
|
180
176
|
"content": "@col.label",
|
|
177
|
+
"type": "typography",
|
|
181
178
|
"className": "flex-1",
|
|
182
|
-
"
|
|
179
|
+
"variant": "h4"
|
|
183
180
|
},
|
|
184
181
|
{
|
|
185
|
-
"variant": "primary",
|
|
186
|
-
"label": "@col.count",
|
|
187
182
|
"type": "badge",
|
|
183
|
+
"label": "@col.count",
|
|
184
|
+
"variant": "primary",
|
|
188
185
|
"size": "sm"
|
|
189
186
|
}
|
|
190
|
-
]
|
|
187
|
+
],
|
|
188
|
+
"align": "center",
|
|
189
|
+
"className": "px-card-md py-2 bg-[var(--color-surface-subtle)] border-b border-[var(--color-border)] sticky top-0",
|
|
190
|
+
"gap": "xs",
|
|
191
|
+
"type": "stack",
|
|
192
|
+
"direction": "horizontal"
|
|
191
193
|
},
|
|
192
194
|
{
|
|
195
|
+
"dropEvent": "MOVE_CARD",
|
|
196
|
+
"className": "p-card-md min-h-[160px]",
|
|
197
|
+
"entity": "@col.items",
|
|
193
198
|
"sortable": true,
|
|
194
|
-
"fields": [],
|
|
195
|
-
"positionEvent": "REORDER_POSITION",
|
|
196
199
|
"renderItem": [
|
|
197
200
|
"fn",
|
|
198
201
|
"item",
|
|
199
202
|
{
|
|
203
|
+
"type": "card",
|
|
204
|
+
"look": "elevated",
|
|
205
|
+
"padding": "sm",
|
|
206
|
+
"className": "cursor-grab hover:shadow-md transition-shadow",
|
|
200
207
|
"children": [
|
|
201
208
|
{
|
|
209
|
+
"type": "stack",
|
|
210
|
+
"direction": "vertical",
|
|
211
|
+
"gap": "xs",
|
|
202
212
|
"children": [
|
|
203
213
|
{
|
|
204
|
-
"
|
|
214
|
+
"type": "stack",
|
|
205
215
|
"gap": "xs",
|
|
216
|
+
"direction": "horizontal",
|
|
217
|
+
"align": "center",
|
|
206
218
|
"children": [
|
|
207
219
|
{
|
|
208
220
|
"type": "icon",
|
|
209
221
|
"name": "flag"
|
|
210
222
|
},
|
|
211
223
|
{
|
|
212
|
-
"weight": "medium",
|
|
213
|
-
"variant": "body",
|
|
214
224
|
"type": "typography",
|
|
215
|
-
"
|
|
216
|
-
"content": "@item.title"
|
|
225
|
+
"variant": "body",
|
|
226
|
+
"content": "@item.title",
|
|
227
|
+
"weight": "medium",
|
|
228
|
+
"className": "flex-1"
|
|
217
229
|
}
|
|
218
|
-
]
|
|
219
|
-
"type": "stack",
|
|
220
|
-
"direction": "horizontal"
|
|
230
|
+
]
|
|
221
231
|
},
|
|
222
232
|
{
|
|
223
|
-
"color": "muted",
|
|
224
|
-
"variant": "caption",
|
|
225
233
|
"content": "@item.description",
|
|
234
|
+
"className": "line-clamp-2",
|
|
235
|
+
"variant": "caption",
|
|
226
236
|
"type": "typography",
|
|
227
|
-
"
|
|
237
|
+
"color": "muted"
|
|
228
238
|
},
|
|
229
239
|
{
|
|
230
|
-
"direction": "horizontal",
|
|
231
240
|
"children": [
|
|
232
241
|
{
|
|
242
|
+
"label": "@item.stage",
|
|
233
243
|
"type": "badge",
|
|
234
244
|
"size": "sm",
|
|
235
|
-
"variant": "primary"
|
|
236
|
-
"label": "@item.stage"
|
|
245
|
+
"variant": "primary"
|
|
237
246
|
},
|
|
238
247
|
{
|
|
239
|
-
"action": "OPEN_CARD",
|
|
240
|
-
"className": "ml-auto",
|
|
241
|
-
"label": "Details",
|
|
242
248
|
"variant": "ghost",
|
|
249
|
+
"type": "button",
|
|
250
|
+
"size": "sm",
|
|
251
|
+
"icon": "arrow-right",
|
|
252
|
+
"label": "Details",
|
|
243
253
|
"actionPayload": {
|
|
244
254
|
"id": "@item.id",
|
|
245
255
|
"row": "@item"
|
|
246
256
|
},
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"size": "sm"
|
|
257
|
+
"className": "ml-auto",
|
|
258
|
+
"action": "OPEN_CARD"
|
|
250
259
|
}
|
|
251
260
|
],
|
|
252
261
|
"type": "stack",
|
|
262
|
+
"direction": "horizontal",
|
|
263
|
+
"gap": "xs",
|
|
253
264
|
"align": "center",
|
|
254
|
-
"className": "pt-1"
|
|
255
|
-
"gap": "xs"
|
|
265
|
+
"className": "pt-1"
|
|
256
266
|
}
|
|
257
|
-
]
|
|
258
|
-
"direction": "vertical",
|
|
259
|
-
"gap": "xs",
|
|
260
|
-
"type": "stack"
|
|
267
|
+
]
|
|
261
268
|
}
|
|
262
|
-
]
|
|
263
|
-
"className": "cursor-grab hover:shadow-md transition-shadow",
|
|
264
|
-
"look": "elevated",
|
|
265
|
-
"type": "card",
|
|
266
|
-
"padding": "sm"
|
|
269
|
+
]
|
|
267
270
|
}
|
|
268
271
|
],
|
|
269
|
-
"
|
|
272
|
+
"type": "data-list",
|
|
270
273
|
"accepts": "*",
|
|
274
|
+
"fields": [],
|
|
271
275
|
"gap": "sm",
|
|
272
|
-
"
|
|
273
|
-
"entity": "@col.items",
|
|
274
|
-
"dropEvent": "MOVE_CARD",
|
|
276
|
+
"dragGroup": "@col.key",
|
|
275
277
|
"reorderEvent": "REORDER_CARD",
|
|
276
|
-
"
|
|
278
|
+
"positionEvent": "REORDER_POSITION"
|
|
277
279
|
}
|
|
278
280
|
],
|
|
279
|
-
"gap": "none",
|
|
280
|
-
"className": "min-w-[240px] border-r border-[var(--color-border)] last:border-r-0",
|
|
281
281
|
"type": "stack",
|
|
282
|
-
"direction": "vertical"
|
|
282
|
+
"direction": "vertical",
|
|
283
|
+
"className": "min-w-[240px] border-r border-[var(--color-border)] last:border-r-0",
|
|
284
|
+
"gap": "none"
|
|
283
285
|
}
|
|
284
286
|
],
|
|
285
|
-
"cols": "@config.gridCols",
|
|
286
287
|
"entity": "@entity.boards",
|
|
287
|
-
"type": "data-grid",
|
|
288
288
|
"gap": "none",
|
|
289
|
+
"fields": [],
|
|
289
290
|
"className": "min-w-full",
|
|
290
|
-
"
|
|
291
|
+
"cols": "@config.gridCols",
|
|
292
|
+
"dndRoot": true
|
|
291
293
|
}
|
|
292
294
|
],
|
|
293
|
-
"
|
|
295
|
+
"gap": "none",
|
|
296
|
+
"direction": "horizontal",
|
|
297
|
+
"type": "stack"
|
|
294
298
|
},
|
|
295
299
|
{
|
|
296
|
-
"icon": "plus",
|
|
297
|
-
"type": "floating-action-button",
|
|
298
300
|
"label": "Add milestone",
|
|
299
301
|
"variant": "primary",
|
|
302
|
+
"icon": "plus",
|
|
303
|
+
"type": "floating-action-button",
|
|
300
304
|
"action": "ADD_CARD"
|
|
301
305
|
}
|
|
302
306
|
],
|
|
303
|
-
"
|
|
304
|
-
|
|
307
|
+
"gap": "md",
|
|
308
|
+
"type": "stack"
|
|
309
|
+
},
|
|
310
|
+
"gridCols": 4.0
|
|
305
311
|
}
|
|
306
312
|
}
|
|
307
313
|
],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-browse-dense",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Spreadsheet-style dense browse —
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Spreadsheet-style dense browse — column-row data-table molecule with sticky header, monospaced numerics, status badges, tight row padding.",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "DenseBrowseOrbital",
|
|
@@ -64,32 +64,27 @@
|
|
|
64
64
|
"linkedEntity": "DenseRow",
|
|
65
65
|
"config": {
|
|
66
66
|
"bodyContent": {
|
|
67
|
-
"className": "p-card-md",
|
|
68
|
-
"direction": "vertical",
|
|
69
|
-
"gap": "sm",
|
|
70
67
|
"children": [
|
|
71
68
|
{
|
|
72
|
-
"align": "center",
|
|
73
|
-
"direction": "horizontal",
|
|
74
69
|
"className": "max-w-md",
|
|
75
|
-
"
|
|
70
|
+
"type": "stack",
|
|
71
|
+
"direction": "horizontal",
|
|
76
72
|
"children": [
|
|
77
73
|
{
|
|
78
|
-
"
|
|
79
|
-
"
|
|
74
|
+
"type": "icon",
|
|
75
|
+
"name": "search"
|
|
80
76
|
},
|
|
81
77
|
{
|
|
82
|
-
"type": "input",
|
|
83
78
|
"inputType": "search",
|
|
84
|
-
"
|
|
85
|
-
"action": "REFETCH_QUERY"
|
|
79
|
+
"type": "input",
|
|
80
|
+
"action": "REFETCH_QUERY",
|
|
81
|
+
"placeholder": "Filter records…"
|
|
86
82
|
}
|
|
87
83
|
],
|
|
88
|
-
"
|
|
84
|
+
"align": "center",
|
|
85
|
+
"gap": "sm"
|
|
89
86
|
},
|
|
90
87
|
{
|
|
91
|
-
"type": "stack",
|
|
92
|
-
"direction": "vertical",
|
|
93
88
|
"children": [
|
|
94
89
|
{
|
|
95
90
|
"columns": [
|
|
@@ -97,87 +92,86 @@
|
|
|
97
92
|
"key": "id",
|
|
98
93
|
"header": "ID",
|
|
99
94
|
"align": "left",
|
|
100
|
-
"
|
|
101
|
-
"field": "id",
|
|
95
|
+
"className": "font-mono text-[var(--color-text-muted)] truncate",
|
|
102
96
|
"width": "w-28",
|
|
103
|
-
"
|
|
97
|
+
"field": "id"
|
|
104
98
|
},
|
|
105
99
|
{
|
|
106
|
-
"label": "Name",
|
|
107
|
-
"width": "flex-1 min-w-[10rem]",
|
|
108
100
|
"weight": "medium",
|
|
109
|
-
"field": "name",
|
|
110
101
|
"className": "truncate",
|
|
102
|
+
"header": "Name",
|
|
103
|
+
"field": "name",
|
|
111
104
|
"key": "name",
|
|
112
|
-
"
|
|
105
|
+
"width": "min-w-[10rem]",
|
|
113
106
|
"align": "left"
|
|
114
107
|
},
|
|
115
108
|
{
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"align": "left",
|
|
109
|
+
"width": "min-w-[12rem]",
|
|
110
|
+
"header": "Detail",
|
|
111
|
+
"className": "text-[var(--color-text-muted)] truncate",
|
|
120
112
|
"field": "description",
|
|
121
|
-
"
|
|
122
|
-
"
|
|
113
|
+
"align": "left",
|
|
114
|
+
"key": "description"
|
|
123
115
|
},
|
|
124
116
|
{
|
|
125
|
-
"header": "VALUE",
|
|
126
|
-
"width": "w-28",
|
|
127
117
|
"align": "right",
|
|
128
|
-
"className": "font-mono tabular-nums",
|
|
129
118
|
"field": "value",
|
|
130
|
-
"
|
|
119
|
+
"width": "w-28",
|
|
120
|
+
"className": "font-mono tabular-nums",
|
|
121
|
+
"header": "Value",
|
|
131
122
|
"key": "value"
|
|
132
123
|
},
|
|
133
124
|
{
|
|
134
|
-
"
|
|
135
|
-
"label": "Change",
|
|
136
|
-
"className": "font-mono tabular-nums",
|
|
125
|
+
"field": "change",
|
|
137
126
|
"align": "right",
|
|
138
127
|
"key": "change",
|
|
139
|
-
"header": "
|
|
140
|
-
"
|
|
128
|
+
"header": "Change",
|
|
129
|
+
"width": "w-24",
|
|
130
|
+
"className": "font-mono tabular-nums"
|
|
141
131
|
},
|
|
142
132
|
{
|
|
143
|
-
"label": "Volume",
|
|
144
133
|
"key": "volume",
|
|
134
|
+
"header": "Volume",
|
|
145
135
|
"field": "volume",
|
|
146
|
-
"header": "VOLUME",
|
|
147
|
-
"align": "right",
|
|
148
136
|
"width": "w-24",
|
|
137
|
+
"align": "right",
|
|
149
138
|
"className": "font-mono tabular-nums text-[var(--color-text-muted)]"
|
|
150
139
|
},
|
|
151
140
|
{
|
|
152
|
-
"header": "
|
|
141
|
+
"header": "Status",
|
|
153
142
|
"field": "status",
|
|
154
|
-
"label": "Status",
|
|
155
|
-
"key": "status",
|
|
156
143
|
"width": "w-24",
|
|
157
|
-
"align": "center"
|
|
144
|
+
"align": "center",
|
|
145
|
+
"format": "badge",
|
|
146
|
+
"key": "status"
|
|
158
147
|
},
|
|
159
148
|
{
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
149
|
+
"width": "w-36",
|
|
150
|
+
"className": "font-mono tabular-nums text-[var(--color-text-muted)] whitespace-nowrap",
|
|
151
|
+
"format": "date",
|
|
163
152
|
"key": "createdAt",
|
|
164
|
-
"
|
|
165
|
-
"header": "
|
|
166
|
-
"
|
|
153
|
+
"field": "createdAt",
|
|
154
|
+
"header": "Created",
|
|
155
|
+
"align": "right"
|
|
167
156
|
}
|
|
168
157
|
],
|
|
158
|
+
"type": "table-view",
|
|
159
|
+
"look": "dense",
|
|
160
|
+
"selectable": true,
|
|
169
161
|
"emptyMessage": "No records",
|
|
170
|
-
"
|
|
171
|
-
"className": "w-full text-sm [&_thead]:sticky [&_thead]:top-0 [&_thead]:z-10 [&_thead]:bg-[var(--color-surface-muted)] [&_thead]:text-[var(--color-text-muted)] [&_thead]:uppercase [&_thead]:text-xs [&_thead]:font-semibold [&_thead]:tracking-wide [&_thead]:border-b [&_thead]:border-[var(--color-border)] [&_tbody_tr]:border-b [&_tbody_tr]:border-[var(--color-border)] [&_tbody_tr:last-child]:border-b-0 [&_tbody_tr:hover]:bg-[var(--color-surface-muted)] [&_td]:px-3 [&_td]:py-2 [&_th]:px-3 [&_th]:py-2",
|
|
172
|
-
"entity": "@payload.data",
|
|
173
|
-
"selectable": true
|
|
162
|
+
"entity": "@payload.data"
|
|
174
163
|
}
|
|
175
164
|
],
|
|
165
|
+
"direction": "vertical",
|
|
176
166
|
"gap": "none",
|
|
177
|
-
"
|
|
167
|
+
"type": "stack",
|
|
168
|
+
"className": "rounded-lg border border-[var(--color-border)] overflow-x-auto bg-[var(--color-card)] shadow-sm"
|
|
178
169
|
}
|
|
179
170
|
],
|
|
180
|
-
"
|
|
171
|
+
"gap": "sm",
|
|
172
|
+
"className": "p-card-md",
|
|
173
|
+
"type": "stack",
|
|
174
|
+
"direction": "vertical"
|
|
181
175
|
}
|
|
182
176
|
}
|
|
183
177
|
}
|