@uipath/apollo-wind 2.40.0 → 2.41.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.
@@ -29,22 +29,23 @@ __webpack_require__.d(__webpack_exports__, {
29
29
  const jsx_runtime_namespaceObject = require("react/jsx-runtime");
30
30
  const external_react_namespaceObject = require("react");
31
31
  const external_react_hook_form_namespaceObject = require("react-hook-form");
32
- const external_form_schema_cjs_namespaceObject = require("./form-schema.cjs");
33
- const external_rules_engine_cjs_namespaceObject = require("./rules-engine.cjs");
34
- const external_data_fetcher_cjs_namespaceObject = require("./data-fetcher.cjs");
35
- const input_cjs_namespaceObject = require("../ui/input.cjs");
36
- const textarea_cjs_namespaceObject = require("../ui/textarea.cjs");
37
- const select_cjs_namespaceObject = require("../ui/select.cjs");
38
- const multi_select_cjs_namespaceObject = require("../ui/multi-select.cjs");
39
32
  const checkbox_cjs_namespaceObject = require("../ui/checkbox.cjs");
40
- const switch_cjs_namespaceObject = require("../ui/switch.cjs");
41
- const radio_group_cjs_namespaceObject = require("../ui/radio-group.cjs");
42
- const slider_cjs_namespaceObject = require("../ui/slider.cjs");
43
- const label_cjs_namespaceObject = require("../ui/label.cjs");
44
33
  const date_picker_cjs_namespaceObject = require("../ui/date-picker.cjs");
45
34
  const datetime_picker_cjs_namespaceObject = require("../ui/datetime-picker.cjs");
46
35
  const file_upload_cjs_namespaceObject = require("../ui/file-upload.cjs");
36
+ const form_field_cjs_namespaceObject = require("../ui/form-field.cjs");
37
+ const input_cjs_namespaceObject = require("../ui/input.cjs");
38
+ const label_cjs_namespaceObject = require("../ui/label.cjs");
39
+ const multi_select_cjs_namespaceObject = require("../ui/multi-select.cjs");
40
+ const radio_group_cjs_namespaceObject = require("../ui/radio-group.cjs");
41
+ const select_cjs_namespaceObject = require("../ui/select.cjs");
42
+ const slider_cjs_namespaceObject = require("../ui/slider.cjs");
43
+ const switch_cjs_namespaceObject = require("../ui/switch.cjs");
44
+ const textarea_cjs_namespaceObject = require("../ui/textarea.cjs");
47
45
  const index_cjs_namespaceObject = require("../../lib/index.cjs");
46
+ const external_data_fetcher_cjs_namespaceObject = require("./data-fetcher.cjs");
47
+ const external_form_schema_cjs_namespaceObject = require("./form-schema.cjs");
48
+ const external_rules_engine_cjs_namespaceObject = require("./rules-engine.cjs");
48
49
  function FormFieldRenderer({ field, context, customComponents, disabled: formDisabled = false }) {
49
50
  const { control, watch, getValues } = (0, external_react_hook_form_namespaceObject.useFormContext)();
50
51
  const contextRef = (0, external_react_namespaceObject.useRef)(context);
@@ -214,9 +215,9 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
214
215
  switch(field.type){
215
216
  case 'text':
216
217
  case 'email':
217
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
218
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
218
219
  children: [
219
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
220
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
220
221
  required: required,
221
222
  children: field.label
222
223
  }),
@@ -231,18 +232,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
231
232
  disabled: disabled,
232
233
  "aria-label": field.ariaLabel
233
234
  }),
234
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
235
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
235
236
  children: field.description
236
237
  }),
237
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
238
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
238
239
  children: error
239
240
  })
240
241
  ]
241
242
  });
242
243
  case 'number':
243
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
244
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
244
245
  children: [
245
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
246
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
246
247
  required: required,
247
248
  children: field.label
248
249
  }),
@@ -259,18 +260,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
259
260
  disabled: disabled,
260
261
  onChange: (e)=>formField.onChange(parseFloat(e.target.value))
261
262
  }),
262
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
263
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
263
264
  children: field.description
264
265
  }),
265
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
266
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
266
267
  children: error
267
268
  })
268
269
  ]
269
270
  });
270
271
  case 'textarea':
271
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
272
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
272
273
  children: [
273
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
274
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
274
275
  required: required,
275
276
  children: field.label
276
277
  }),
@@ -284,18 +285,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
284
285
  disabled: disabled,
285
286
  rows: field.rows || 4
286
287
  }),
287
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
288
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
288
289
  children: field.description
289
290
  }),
290
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
291
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
291
292
  children: error
292
293
  })
293
294
  ]
294
295
  });
295
296
  case 'select':
296
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
297
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
297
298
  children: [
298
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
299
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
299
300
  required: required,
300
301
  children: field.label
301
302
  }),
@@ -319,18 +320,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
319
320
  })
320
321
  ]
321
322
  }),
322
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
323
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
323
324
  children: field.description
324
325
  }),
325
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
326
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
326
327
  children: error
327
328
  })
328
329
  ]
329
330
  });
330
331
  case 'multiselect':
331
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
332
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
332
333
  children: [
333
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
334
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
334
335
  required: required,
335
336
  children: field.label
336
337
  }),
@@ -347,16 +348,16 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
347
348
  searchPlaceholder: "Search...",
348
349
  maxSelected: field.maxSelected
349
350
  }),
350
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
351
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
351
352
  children: field.description
352
353
  }),
353
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
354
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
354
355
  children: error
355
356
  })
356
357
  ]
357
358
  });
358
359
  case 'checkbox':
359
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
360
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
360
361
  children: [
361
362
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
362
363
  className: "flex items-start space-x-2",
@@ -370,25 +371,25 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
370
371
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
371
372
  className: "space-y-1 leading-none",
372
373
  children: [
373
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
374
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
374
375
  htmlFor: field.name,
375
376
  className: "font-normal",
376
377
  children: field.label
377
378
  }),
378
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
379
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
379
380
  children: field.description
380
381
  })
381
382
  ]
382
383
  })
383
384
  ]
384
385
  }),
385
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
386
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
386
387
  children: error
387
388
  })
388
389
  ]
389
390
  });
390
391
  case 'switch':
391
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
392
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
392
393
  children: [
393
394
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
394
395
  className: "flex items-center justify-between",
@@ -396,10 +397,10 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
396
397
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
397
398
  className: "space-y-0.5",
398
399
  children: [
399
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
400
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
400
401
  children: field.label
401
402
  }),
402
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
403
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
403
404
  children: field.description
404
405
  })
405
406
  ]
@@ -411,15 +412,15 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
411
412
  })
412
413
  ]
413
414
  }),
414
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
415
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
415
416
  children: error
416
417
  })
417
418
  ]
418
419
  });
419
420
  case 'radio':
420
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
421
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
421
422
  children: [
422
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
423
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
423
424
  required: required,
424
425
  children: field.label
425
426
  }),
@@ -436,16 +437,17 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
436
437
  disabled: 'disabled' in option ? Boolean(option.disabled) : false
437
438
  }),
438
439
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(label_cjs_namespaceObject.Label, {
440
+ variant: "muted",
439
441
  htmlFor: `${field.name}-${option.value}`,
440
442
  children: option.label
441
443
  })
442
444
  ]
443
445
  }, String(option.value)))
444
446
  }),
445
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
447
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
446
448
  children: field.description
447
449
  }),
448
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
450
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
449
451
  children: error
450
452
  })
451
453
  ]
@@ -459,9 +461,9 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
459
461
  required: required
460
462
  });
461
463
  case 'date':
462
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
464
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
463
465
  children: [
464
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
466
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
465
467
  required: required,
466
468
  children: field.label
467
469
  }),
@@ -471,18 +473,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
471
473
  disabled: disabled,
472
474
  placeholder: field.placeholder
473
475
  }),
474
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
476
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
475
477
  children: field.description
476
478
  }),
477
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
479
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
478
480
  children: error
479
481
  })
480
482
  ]
481
483
  });
482
484
  case 'datetime':
483
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
485
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
484
486
  children: [
485
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
487
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
486
488
  required: required,
487
489
  children: field.label
488
490
  }),
@@ -493,18 +495,18 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
493
495
  placeholder: field.placeholder,
494
496
  use12Hour: field.use12Hour
495
497
  }),
496
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
498
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
497
499
  children: field.description
498
500
  }),
499
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
501
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
500
502
  children: error
501
503
  })
502
504
  ]
503
505
  });
504
506
  case 'file':
505
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
507
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
506
508
  children: [
507
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
509
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
508
510
  required: required,
509
511
  children: field.label
510
512
  }),
@@ -518,10 +520,10 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
518
520
  formField.onChange(field.multiple ? files : files[0]);
519
521
  }
520
522
  }),
521
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
523
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
522
524
  children: field.description
523
525
  }),
524
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
526
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
525
527
  children: error
526
528
  })
527
529
  ]
@@ -530,41 +532,6 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
530
532
  return null;
531
533
  }
532
534
  }
533
- function FormField({ children, className = '' }) {
534
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
535
- "data-slot": "form-field",
536
- className: (0, index_cjs_namespaceObject.cn)('grid gap-1.5', className),
537
- children: children
538
- });
539
- }
540
- function FormLabel({ children, required, htmlFor, className = '' }) {
541
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(label_cjs_namespaceObject.Label, {
542
- "data-slot": "form-label",
543
- htmlFor: htmlFor,
544
- className: className,
545
- children: [
546
- children,
547
- required && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(label_cjs_namespaceObject.RequiredIndicator, {
548
- className: "ml-1"
549
- })
550
- ]
551
- });
552
- }
553
- function FormDescription({ children }) {
554
- if (!children) return null;
555
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("p", {
556
- "data-slot": "form-description",
557
- className: "text-sm text-muted-foreground",
558
- children: children
559
- });
560
- }
561
- function FormError({ children }) {
562
- if (!children) return null;
563
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("p", {
564
- className: "text-sm text-destructive",
565
- children: children
566
- });
567
- }
568
535
  function SliderField({ field, formField, error, disabled, required }) {
569
536
  const { watch } = (0, external_react_hook_form_namespaceObject.useFormContext)();
570
537
  const watchedMax = field.maxRef ? watch(field.maxRef.fromField) : void 0;
@@ -585,12 +552,12 @@ function SliderField({ field, formField, error, disabled, required }) {
585
552
  if ('number' == typeof v) return Math.min(v, resolvedMax);
586
553
  return v;
587
554
  })();
588
- return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(FormField, {
555
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(form_field_cjs_namespaceObject.FormField, {
589
556
  children: [
590
557
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
591
558
  className: "flex justify-between",
592
559
  children: [
593
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormLabel, {
560
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldLabel, {
594
561
  required: required,
595
562
  children: field.label
596
563
  }),
@@ -610,10 +577,10 @@ function SliderField({ field, formField, error, disabled, required }) {
610
577
  step: field.step || 1,
611
578
  disabled: disabled
612
579
  }),
613
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormDescription, {
580
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldDescription, {
614
581
  children: field.description
615
582
  }),
616
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(FormError, {
583
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(form_field_cjs_namespaceObject.FormFieldError, {
617
584
  children: error
618
585
  })
619
586
  ]
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { FieldMetadata, FormContext, CustomFieldComponentProps } from './form-schema';
2
+ import type { CustomFieldComponentProps, FieldMetadata, FormContext } from './form-schema';
3
3
  /**
4
4
  * Field Renderer - Connects metadata to actual UI components
5
5
  * Integrates with shadcn/ui components from apollo-wind