@betterstart/cli 0.1.73 → 0.1.75
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 +2 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/ui/button.tsx +29 -28
package/dist/cli.js
CHANGED
|
@@ -6547,6 +6547,7 @@ ${indent} <FormControl>
|
|
|
6547
6547
|
${indent} <Input
|
|
6548
6548
|
${indent} type="${fieldType}"
|
|
6549
6549
|
${indent} placeholder="Enter ${label.toLowerCase()}"
|
|
6550
|
+
${indent} disabled={isPending}
|
|
6550
6551
|
${indent} {...formField}
|
|
6551
6552
|
${indent} />
|
|
6552
6553
|
${indent} </FormControl>
|
|
@@ -7140,7 +7141,7 @@ ${fieldArrayHooks}
|
|
|
7140
7141
|
${fieldsJSX}
|
|
7141
7142
|
</CardContent>
|
|
7142
7143
|
<CardFooter>${group3.hint ? `
|
|
7143
|
-
<p className="text-
|
|
7144
|
+
<p className="text-base text-muted-foreground">${group3.hint}</p>` : ""}
|
|
7144
7145
|
<Button type="submit" disabled={isPending} size="sm" className="ml-auto">
|
|
7145
7146
|
{isPending ? 'Saving...' : 'Save'}
|
|
7146
7147
|
</Button>
|