You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| items | array | true | false | 3 items | The list items. |
195
+
| item keys | string | true | false |`"foo": 1` ... | The keys of each card. |
196
+
| Width | string | false | false | "Card" | Whether items should be "Card" of "Full Row". |
197
+
| Min Width Px | number | true | true | 300 | The minimum width in pixels. Only applies when "Width" is set to Card |
198
+
| Height Px | number | true | true | 280 | The height in pixels. |
199
+
| Pagination | string | false | false | "Managed by runnable" | Pagination can be managed using two methods: By the component: Based on a specified page size, the component divides the array into several pages. By the runnable: The component shows all items, leaving the task of pagination to the runnable. The current page number is available in the component outputs. |
200
+
| Page count | number | false | false | 1 | The number of pages. Only applies when pagination is managed by the runnable. |
201
+
| Page size | number | false | false | 3 | The number of items per page. Only applies when pagination is managed by component. |
201
202
202
203
#### Outputs
203
204
@@ -206,6 +207,7 @@ List components also support having [inputs](#inputs) set inside them. Retrieve
206
207
| result | any | The result of the list component. |
207
208
| loading | boolean | The loading state of the component. |
208
209
| inputs | any | The [inputs](#inputs) of the component. |
210
+
| page | number | The current page number. |
209
211
210
212
### Divider X
211
213
@@ -352,11 +354,12 @@ A validation function can be set and won't allow users to go to the next step wh
0 commit comments