@almadar/std 16.23.0 → 16.24.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/ui/core/atoms/ui-day-cell.orb +10 -4
- package/behaviors/registry/ui/core/molecules/ui-calendar-grid.orb +125 -30
- package/behaviors/registry/ui/core/molecules/ui-graph-view.orb +166 -62
- package/behaviors/registry/ui/core/molecules/ui-line-chart.orb +44 -44
- package/behaviors/registry/ui/core/organisms/ui-chart.orb +176 -176
- package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +1239 -179
- package/dist/behaviors/registry/ui/core/atoms/ui-day-cell.orb +10 -4
- package/dist/behaviors/registry/ui/core/molecules/ui-calendar-grid.orb +125 -30
- package/dist/behaviors/registry/ui/core/molecules/ui-graph-view.orb +166 -62
- package/dist/behaviors/registry/ui/core/molecules/ui-line-chart.orb +44 -44
- package/dist/behaviors/registry/ui/core/organisms/ui-chart.orb +176 -176
- package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +1239 -179
- package/dist/registry/ui/core/atoms/ui-day-cell.orb +10 -4
- package/dist/registry/ui/core/molecules/ui-calendar-grid.orb +125 -30
- package/dist/registry/ui/core/molecules/ui-graph-view.orb +166 -62
- package/dist/registry/ui/core/molecules/ui-line-chart.orb +44 -44
- package/dist/registry/ui/core/organisms/ui-chart.orb +176 -176
- package/dist/registry/ui/game/organisms/ui-battle-board.orb +1239 -179
- package/package.json +1 -1
|
@@ -56,7 +56,13 @@
|
|
|
56
56
|
"key": "CLICK",
|
|
57
57
|
"name": "Click",
|
|
58
58
|
"description": "Called when the day is clicked",
|
|
59
|
-
"tier": "essential"
|
|
59
|
+
"tier": "essential",
|
|
60
|
+
"payloadSchema": [
|
|
61
|
+
{
|
|
62
|
+
"name": "date",
|
|
63
|
+
"type": "date"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
60
66
|
}
|
|
61
67
|
],
|
|
62
68
|
"transitions": [
|
|
@@ -69,10 +75,10 @@
|
|
|
69
75
|
"render-ui",
|
|
70
76
|
"main",
|
|
71
77
|
{
|
|
72
|
-
"date": "@config.date",
|
|
73
|
-
"isToday": "@config.isToday",
|
|
74
|
-
"onClick": "CLICK",
|
|
75
78
|
"className": "@config.className",
|
|
79
|
+
"onClick": "CLICK",
|
|
80
|
+
"isToday": "@config.isToday",
|
|
81
|
+
"date": "@config.date",
|
|
76
82
|
"type": "day-cell"
|
|
77
83
|
}
|
|
78
84
|
]
|
|
@@ -63,7 +63,32 @@
|
|
|
63
63
|
"payloadSchema": [
|
|
64
64
|
{
|
|
65
65
|
"name": "event",
|
|
66
|
-
"type": "object"
|
|
66
|
+
"type": "object",
|
|
67
|
+
"properties": [
|
|
68
|
+
{
|
|
69
|
+
"name": "id",
|
|
70
|
+
"type": "string",
|
|
71
|
+
"required": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "title",
|
|
75
|
+
"type": "string",
|
|
76
|
+
"required": true
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "startTime",
|
|
80
|
+
"type": "date",
|
|
81
|
+
"required": true
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "endTime",
|
|
85
|
+
"type": "date"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "color",
|
|
89
|
+
"type": "string"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
67
92
|
}
|
|
68
93
|
]
|
|
69
94
|
},
|
|
@@ -125,37 +150,107 @@
|
|
|
125
150
|
"key": "SLOT_CLICK",
|
|
126
151
|
"name": "Slot Click",
|
|
127
152
|
"description": "Called when a time slot is clicked",
|
|
128
|
-
"tier": "essential"
|
|
153
|
+
"tier": "essential",
|
|
154
|
+
"payloadSchema": [
|
|
155
|
+
{
|
|
156
|
+
"name": "day",
|
|
157
|
+
"type": "date"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "time",
|
|
161
|
+
"type": "string"
|
|
162
|
+
}
|
|
163
|
+
]
|
|
129
164
|
},
|
|
130
165
|
{
|
|
131
166
|
"key": "DAY_CLICK",
|
|
132
167
|
"name": "Day Click",
|
|
133
168
|
"description": "Called when a day header is clicked",
|
|
134
|
-
"tier": "essential"
|
|
169
|
+
"tier": "essential",
|
|
170
|
+
"payloadSchema": [
|
|
171
|
+
{
|
|
172
|
+
"name": "day",
|
|
173
|
+
"type": "date"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
135
176
|
},
|
|
136
177
|
{
|
|
137
178
|
"key": "EVENT_CLICK",
|
|
138
179
|
"name": "Event Click",
|
|
139
180
|
"description": "Called when an event is clicked",
|
|
140
|
-
"tier": "essential"
|
|
181
|
+
"tier": "essential",
|
|
182
|
+
"payloadSchema": [
|
|
183
|
+
{
|
|
184
|
+
"name": "event",
|
|
185
|
+
"type": "object",
|
|
186
|
+
"properties": [
|
|
187
|
+
{
|
|
188
|
+
"name": "id",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"required": true
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "title",
|
|
194
|
+
"type": "string",
|
|
195
|
+
"required": true
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "startTime",
|
|
199
|
+
"type": "date",
|
|
200
|
+
"required": true
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "endTime",
|
|
204
|
+
"type": "date"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "color",
|
|
208
|
+
"type": "string"
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
]
|
|
141
213
|
},
|
|
142
214
|
{
|
|
143
215
|
"key": "LONG_PRESS",
|
|
144
216
|
"name": "Long Press",
|
|
145
217
|
"description": "Event emitted on long-press of a time slot: UI:{longPressEvent} with { date, time, ...longPressPayload }",
|
|
146
|
-
"tier": "essential"
|
|
218
|
+
"tier": "essential",
|
|
219
|
+
"payloadSchema": [
|
|
220
|
+
{
|
|
221
|
+
"name": "date",
|
|
222
|
+
"type": "string",
|
|
223
|
+
"required": true
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "time",
|
|
227
|
+
"type": "string"
|
|
228
|
+
}
|
|
229
|
+
]
|
|
147
230
|
},
|
|
148
231
|
{
|
|
149
232
|
"key": "SWIPE_LEFT",
|
|
150
233
|
"name": "Swipe Left",
|
|
151
234
|
"description": "Event emitted on swipe left (next week): UI:{swipeLeftEvent}",
|
|
152
|
-
"tier": "essential"
|
|
235
|
+
"tier": "essential",
|
|
236
|
+
"payloadSchema": [
|
|
237
|
+
{
|
|
238
|
+
"name": "id",
|
|
239
|
+
"type": "string"
|
|
240
|
+
}
|
|
241
|
+
]
|
|
153
242
|
},
|
|
154
243
|
{
|
|
155
244
|
"key": "SWIPE_RIGHT",
|
|
156
245
|
"name": "Swipe Right",
|
|
157
246
|
"description": "Event emitted on swipe right (prev week): UI:{swipeRightEvent}",
|
|
158
|
-
"tier": "essential"
|
|
247
|
+
"tier": "essential",
|
|
248
|
+
"payloadSchema": [
|
|
249
|
+
{
|
|
250
|
+
"name": "id",
|
|
251
|
+
"type": "string"
|
|
252
|
+
}
|
|
253
|
+
]
|
|
159
254
|
}
|
|
160
255
|
],
|
|
161
256
|
"transitions": [
|
|
@@ -173,19 +268,19 @@
|
|
|
173
268
|
"render-ui",
|
|
174
269
|
"main",
|
|
175
270
|
{
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"swipeRightEvent": "SWIPE_RIGHT",
|
|
271
|
+
"longPressEvent": "LONG_PRESS",
|
|
272
|
+
"swipeLeftEvent": "SWIPE_LEFT",
|
|
179
273
|
"dayWindow": "@config.dayWindow",
|
|
180
|
-
"onSlotClick": "SLOT_CLICK",
|
|
181
|
-
"onDayClick": "DAY_CLICK",
|
|
182
|
-
"className": "@config.className",
|
|
183
|
-
"timeSlots": "@config.timeSlots",
|
|
184
274
|
"events": "@entity",
|
|
185
|
-
"
|
|
275
|
+
"timeSlots": "@config.timeSlots",
|
|
276
|
+
"weekStart": "@config.weekStart",
|
|
186
277
|
"type": "calendar-grid",
|
|
187
|
-
"
|
|
188
|
-
"
|
|
278
|
+
"onEventClick": "EVENT_CLICK",
|
|
279
|
+
"onDayClick": "DAY_CLICK",
|
|
280
|
+
"swipeRightEvent": "SWIPE_RIGHT",
|
|
281
|
+
"className": "@config.className",
|
|
282
|
+
"longPressPayload": "@config.longPressPayload",
|
|
283
|
+
"onSlotClick": "SLOT_CLICK"
|
|
189
284
|
}
|
|
190
285
|
]
|
|
191
286
|
]
|
|
@@ -200,19 +295,6 @@
|
|
|
200
295
|
"description": "Override the viewport-driven day window. `'auto'` (default) tracks `window.innerWidth` — 1 day on mobile, 3 on tablet, 7 on laptop+. Pass an explicit number to force a fixed window (useful for print layouts or screenshot tests).",
|
|
201
296
|
"tier": "presentation"
|
|
202
297
|
},
|
|
203
|
-
"className": {
|
|
204
|
-
"type": "string",
|
|
205
|
-
"default": "",
|
|
206
|
-
"label": "Class Name",
|
|
207
|
-
"description": "Additional CSS classes",
|
|
208
|
-
"tier": "presentation"
|
|
209
|
-
},
|
|
210
|
-
"longPressPayload": {
|
|
211
|
-
"type": "json",
|
|
212
|
-
"label": "Long Press Payload",
|
|
213
|
-
"description": "Additional payload for long-press events",
|
|
214
|
-
"tier": "presentation"
|
|
215
|
-
},
|
|
216
298
|
"weekStart": {
|
|
217
299
|
"type": "date",
|
|
218
300
|
"label": "Week Start",
|
|
@@ -228,6 +310,19 @@
|
|
|
228
310
|
"items": {
|
|
229
311
|
"type": "string"
|
|
230
312
|
}
|
|
313
|
+
},
|
|
314
|
+
"className": {
|
|
315
|
+
"type": "string",
|
|
316
|
+
"default": "",
|
|
317
|
+
"label": "Class Name",
|
|
318
|
+
"description": "Additional CSS classes",
|
|
319
|
+
"tier": "presentation"
|
|
320
|
+
},
|
|
321
|
+
"longPressPayload": {
|
|
322
|
+
"type": "json",
|
|
323
|
+
"label": "Long Press Payload",
|
|
324
|
+
"description": "Additional payload for long-press events",
|
|
325
|
+
"tier": "presentation"
|
|
231
326
|
}
|
|
232
327
|
},
|
|
233
328
|
"scope": "instance"
|
|
@@ -35,7 +35,30 @@
|
|
|
35
35
|
"payloadSchema": [
|
|
36
36
|
{
|
|
37
37
|
"name": "node",
|
|
38
|
-
"type": "object"
|
|
38
|
+
"type": "object",
|
|
39
|
+
"properties": [
|
|
40
|
+
{
|
|
41
|
+
"name": "id",
|
|
42
|
+
"type": "string",
|
|
43
|
+
"required": true
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "label",
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "color",
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "size",
|
|
55
|
+
"type": "number"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "group",
|
|
59
|
+
"type": "string"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
39
62
|
}
|
|
40
63
|
]
|
|
41
64
|
},
|
|
@@ -47,7 +70,30 @@
|
|
|
47
70
|
"payloadSchema": [
|
|
48
71
|
{
|
|
49
72
|
"name": "node",
|
|
50
|
-
"type": "object"
|
|
73
|
+
"type": "object",
|
|
74
|
+
"properties": [
|
|
75
|
+
{
|
|
76
|
+
"name": "id",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"required": true
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "label",
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "color",
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "size",
|
|
90
|
+
"type": "number"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "group",
|
|
94
|
+
"type": "string"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
51
97
|
}
|
|
52
98
|
]
|
|
53
99
|
}
|
|
@@ -68,13 +114,71 @@
|
|
|
68
114
|
"key": "NODE_CLICK",
|
|
69
115
|
"name": "Node Click",
|
|
70
116
|
"description": "Callback when a node is clicked",
|
|
71
|
-
"tier": "essential"
|
|
117
|
+
"tier": "essential",
|
|
118
|
+
"payloadSchema": [
|
|
119
|
+
{
|
|
120
|
+
"name": "node",
|
|
121
|
+
"type": "object",
|
|
122
|
+
"properties": [
|
|
123
|
+
{
|
|
124
|
+
"name": "id",
|
|
125
|
+
"type": "string",
|
|
126
|
+
"required": true
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "label",
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "color",
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "size",
|
|
138
|
+
"type": "number"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "group",
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
]
|
|
72
147
|
},
|
|
73
148
|
{
|
|
74
149
|
"key": "NODE_HOVER",
|
|
75
150
|
"name": "Node Hover",
|
|
76
151
|
"description": "Callback when a node is hovered (null on leave)",
|
|
77
|
-
"tier": "essential"
|
|
152
|
+
"tier": "essential",
|
|
153
|
+
"payloadSchema": [
|
|
154
|
+
{
|
|
155
|
+
"name": "node",
|
|
156
|
+
"type": "object",
|
|
157
|
+
"properties": [
|
|
158
|
+
{
|
|
159
|
+
"name": "id",
|
|
160
|
+
"type": "string",
|
|
161
|
+
"required": true
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "label",
|
|
165
|
+
"type": "string"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "color",
|
|
169
|
+
"type": "string"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "size",
|
|
173
|
+
"type": "number"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "group",
|
|
177
|
+
"type": "string"
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
]
|
|
78
182
|
}
|
|
79
183
|
],
|
|
80
184
|
"transitions": [
|
|
@@ -87,16 +191,16 @@
|
|
|
87
191
|
"render-ui",
|
|
88
192
|
"main",
|
|
89
193
|
{
|
|
90
|
-
"showLabels": "@config.showLabels",
|
|
91
194
|
"edges": "@config.edges",
|
|
92
|
-
"width": "@config.width",
|
|
93
|
-
"zoomToFit": "@config.zoomToFit",
|
|
94
|
-
"nodes": "@config.nodes",
|
|
95
195
|
"onNodeClick": "NODE_CLICK",
|
|
96
|
-
"onNodeHover": "NODE_HOVER",
|
|
97
|
-
"className": "@config.className",
|
|
98
196
|
"height": "@config.height",
|
|
99
|
-
"
|
|
197
|
+
"className": "@config.className",
|
|
198
|
+
"showLabels": "@config.showLabels",
|
|
199
|
+
"type": "graph-view",
|
|
200
|
+
"nodes": "@config.nodes",
|
|
201
|
+
"onNodeHover": "NODE_HOVER",
|
|
202
|
+
"width": "@config.width",
|
|
203
|
+
"zoomToFit": "@config.zoomToFit"
|
|
100
204
|
}
|
|
101
205
|
]
|
|
102
206
|
]
|
|
@@ -104,6 +208,20 @@
|
|
|
104
208
|
]
|
|
105
209
|
},
|
|
106
210
|
"config": {
|
|
211
|
+
"showLabels": {
|
|
212
|
+
"type": "boolean",
|
|
213
|
+
"default": true,
|
|
214
|
+
"label": "Show Labels",
|
|
215
|
+
"description": "Show node labels (default true)",
|
|
216
|
+
"tier": "presentation"
|
|
217
|
+
},
|
|
218
|
+
"height": {
|
|
219
|
+
"type": "number",
|
|
220
|
+
"default": 0.0,
|
|
221
|
+
"label": "Height",
|
|
222
|
+
"description": "Height in pixels",
|
|
223
|
+
"tier": "presentation"
|
|
224
|
+
},
|
|
107
225
|
"zoomToFit": {
|
|
108
226
|
"type": "boolean",
|
|
109
227
|
"default": true,
|
|
@@ -111,71 +229,78 @@
|
|
|
111
229
|
"description": "Auto zoom-to-fit after layout settles (default true)",
|
|
112
230
|
"tier": "presentation"
|
|
113
231
|
},
|
|
114
|
-
"
|
|
115
|
-
"type": "[
|
|
232
|
+
"nodes": {
|
|
233
|
+
"type": "[GraphViewNodesItem]",
|
|
116
234
|
"default": [],
|
|
117
|
-
"label": "
|
|
118
|
-
"description": "Graph
|
|
235
|
+
"label": "Nodes",
|
|
236
|
+
"description": "Graph nodes",
|
|
119
237
|
"tier": "presentation",
|
|
120
238
|
"items": {
|
|
121
239
|
"type": "object",
|
|
122
240
|
"properties": {
|
|
123
|
-
"
|
|
124
|
-
"name": "
|
|
241
|
+
"id": {
|
|
242
|
+
"name": "id",
|
|
125
243
|
"type": "string",
|
|
126
|
-
"required":
|
|
244
|
+
"required": true
|
|
127
245
|
},
|
|
128
246
|
"label": {
|
|
129
247
|
"name": "label",
|
|
130
248
|
"type": "string",
|
|
131
249
|
"required": false
|
|
132
250
|
},
|
|
133
|
-
"
|
|
134
|
-
"name": "
|
|
251
|
+
"color": {
|
|
252
|
+
"name": "color",
|
|
135
253
|
"type": "string",
|
|
136
|
-
"required":
|
|
254
|
+
"required": false
|
|
137
255
|
},
|
|
138
|
-
"
|
|
139
|
-
"name": "
|
|
256
|
+
"group": {
|
|
257
|
+
"name": "group",
|
|
140
258
|
"type": "string",
|
|
141
|
-
"required":
|
|
259
|
+
"required": false
|
|
260
|
+
},
|
|
261
|
+
"size": {
|
|
262
|
+
"name": "size",
|
|
263
|
+
"type": "number",
|
|
264
|
+
"required": false
|
|
142
265
|
}
|
|
143
266
|
}
|
|
144
267
|
}
|
|
145
268
|
},
|
|
146
|
-
"
|
|
147
|
-
"type": "
|
|
269
|
+
"width": {
|
|
270
|
+
"type": "number",
|
|
271
|
+
"default": 0.0,
|
|
272
|
+
"label": "Width",
|
|
273
|
+
"description": "Width in pixels",
|
|
274
|
+
"tier": "presentation"
|
|
275
|
+
},
|
|
276
|
+
"edges": {
|
|
277
|
+
"type": "[GraphViewEdgesItem]",
|
|
148
278
|
"default": [],
|
|
149
|
-
"label": "
|
|
150
|
-
"description": "Graph
|
|
279
|
+
"label": "Edges",
|
|
280
|
+
"description": "Graph edges",
|
|
151
281
|
"tier": "presentation",
|
|
152
282
|
"items": {
|
|
153
283
|
"type": "object",
|
|
154
284
|
"properties": {
|
|
285
|
+
"source": {
|
|
286
|
+
"name": "source",
|
|
287
|
+
"type": "string",
|
|
288
|
+
"required": true
|
|
289
|
+
},
|
|
155
290
|
"label": {
|
|
156
291
|
"name": "label",
|
|
157
292
|
"type": "string",
|
|
158
293
|
"required": false
|
|
159
294
|
},
|
|
160
|
-
"
|
|
161
|
-
"name": "
|
|
295
|
+
"target": {
|
|
296
|
+
"name": "target",
|
|
162
297
|
"type": "string",
|
|
163
|
-
"required":
|
|
298
|
+
"required": true
|
|
164
299
|
},
|
|
165
300
|
"color": {
|
|
166
301
|
"name": "color",
|
|
167
302
|
"type": "string",
|
|
168
303
|
"required": false
|
|
169
|
-
},
|
|
170
|
-
"size": {
|
|
171
|
-
"name": "size",
|
|
172
|
-
"type": "number",
|
|
173
|
-
"required": false
|
|
174
|
-
},
|
|
175
|
-
"id": {
|
|
176
|
-
"name": "id",
|
|
177
|
-
"type": "string",
|
|
178
|
-
"required": true
|
|
179
304
|
}
|
|
180
305
|
}
|
|
181
306
|
}
|
|
@@ -186,27 +311,6 @@
|
|
|
186
311
|
"label": "Class Name",
|
|
187
312
|
"description": "Additional CSS classes",
|
|
188
313
|
"tier": "presentation"
|
|
189
|
-
},
|
|
190
|
-
"showLabels": {
|
|
191
|
-
"type": "boolean",
|
|
192
|
-
"default": true,
|
|
193
|
-
"label": "Show Labels",
|
|
194
|
-
"description": "Show node labels (default true)",
|
|
195
|
-
"tier": "presentation"
|
|
196
|
-
},
|
|
197
|
-
"height": {
|
|
198
|
-
"type": "number",
|
|
199
|
-
"default": 0.0,
|
|
200
|
-
"label": "Height",
|
|
201
|
-
"description": "Height in pixels",
|
|
202
|
-
"tier": "presentation"
|
|
203
|
-
},
|
|
204
|
-
"width": {
|
|
205
|
-
"type": "number",
|
|
206
|
-
"default": 0.0,
|
|
207
|
-
"label": "Width",
|
|
208
|
-
"description": "Width in pixels",
|
|
209
|
-
"tier": "presentation"
|
|
210
314
|
}
|
|
211
315
|
},
|
|
212
316
|
"scope": "instance"
|