@betterstart/cli 0.1.60 → 0.1.61

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/dist/cli.js CHANGED
@@ -2536,7 +2536,7 @@ ${selectItems}
2536
2536
  if (nf.type === "number") return `${nf.name}: undefined`;
2537
2537
  return `${nf.name}: ''`;
2538
2538
  }).join(", ");
2539
- return ` <div className="space-y-4">
2539
+ return ` <div className="space-y-2">
2540
2540
  <FormLabel className="text-sm font-medium leading-none">${label}${requiredStar}</FormLabel>${hintJSX}
2541
2541
  {${name}FieldArray.fields.map((item, index) => (
2542
2542
  <div key={item.id} className="relative rounded-lg border p-4">
@@ -2545,7 +2545,7 @@ ${selectItems}
2545
2545
  onClick={() => ${name}FieldArray.remove(index)}
2546
2546
  className="absolute right-2 top-2 inline-flex h-7 w-7 items-center justify-center rounded-md text-muted-foreground hover:bg-destructive/10 hover:text-destructive"
2547
2547
  >
2548
- <Trash2 className="h-4 w-4" />
2548
+ <Trash2 className="size-4" />
2549
2549
  <span className="sr-only">Remove</span>
2550
2550
  </button>
2551
2551
  <div className="space-y-4 pr-8">
@@ -2797,13 +2797,13 @@ ${p7.stepContentBlocks}
2797
2797
  onClick={handleBack}
2798
2798
  disabled={currentStep === 0}
2799
2799
  >
2800
- <ChevronLeft className="mr-2 h-4 w-4" />
2800
+ <ChevronLeft className="mr-2 size-4" />
2801
2801
  Back
2802
2802
  </Button>
2803
2803
  {currentStep < STEPS.length - 1 ? (
2804
2804
  <Button type="button" onClick={handleNext}>
2805
2805
  Next
2806
- <ChevronRight className="ml-2 h-4 w-4" />
2806
+ <ChevronRight className="ml-2 size-4" />
2807
2807
  </Button>
2808
2808
  ) : (
2809
2809
  <Button type="button" disabled={submitting} onClick={() => onSubmit(form.getValues())}>