@betterstart/cli 0.1.74 → 0.1.76
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 +4 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/ui/button.tsx +29 -28
- package/templates/ui/card.tsx +1 -1
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>
|
|
@@ -10091,8 +10092,8 @@ function defaultSettingsSchema() {
|
|
|
10091
10092
|
{
|
|
10092
10093
|
type: "section",
|
|
10093
10094
|
name: "siteSettings",
|
|
10094
|
-
label: "
|
|
10095
|
-
description: "General settings for the
|
|
10095
|
+
label: "Dashboard Settings",
|
|
10096
|
+
description: "General settings for the dashboard",
|
|
10096
10097
|
fields: [
|
|
10097
10098
|
{ name: "appName", type: "string", label: "App Name", hint: "Displayed in the sidebar and throughout the dashboard", default: "BetterStart" },
|
|
10098
10099
|
{ name: "appDescription", type: "text", label: "App Description", hint: "A brief description of the application" }
|