your-ai-workflow-firebase-os 1.2.42 → 1.2.46

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/README.md CHANGED
@@ -31,7 +31,7 @@ That's it. **One component. Zero configuration files.**
31
31
  | 📋 **Templates** | Board (Kanban), Calendar, Table, Drive, Inline Form, Popup Form, Confirmation |
32
32
  | 🎨 **Theme Engine** | Full dark/light mode, custom accent colours, fonts, corner radii, logo |
33
33
  | 📁 **File Storage** | An admin-only Assets screen for public images, plus a drive preset any page can be built on |
34
- | 📬 **Forms** | A page gets its form right on `/pages` — say what it should ask and the AI builds it with the page |
34
+ | 📬 **Forms** | Created with their pages on `/pages` — say what a form should ask and the AI builds it with the page; see and hand-edit every form afterwards on `/forms` |
35
35
  | 📥 **Inbox** | Every form entry in one list at `/inbox`, filtered "From anyone" or "From signed-in users" |
36
36
  | 📖 **Guide** | A walkthrough at `/guide` with the sentences to paste into your assistant |
37
37
  | 📊 **Dashboard** | Personalised user dashboard |
@@ -132,11 +132,12 @@ interface FirebaseOSProps {
132
132
  };
133
133
 
134
134
  /**
135
- * Email addresses that are automatically assigned the 'admin' role once
136
- * they have verified their email. Replaces the VITE_ADMIN_EMAILS env var.
137
- * The same addresses have to be in the Firestore rules you pasted during
138
- * setup/setup writes them in for you since the rules, not the client,
139
- * are what actually grant the role.
135
+ * Optional. Who owns the app is decided by the Firestore rules alone: the
136
+ * /setup page has a bar where the owner types their address and generates
137
+ * rules that already name them, and the app simply asks Firebase for the
138
+ * rolethe rules say yes to the listed addresses and no to everyone else.
139
+ * This prop only prefills that bar (handy for pre-configured installs);
140
+ * nothing requires it any more.
140
141
  */
141
142
  adminEmails?: string[];
142
143
 
@@ -209,7 +210,7 @@ Your AI Firebase is built to be driven from an AI chat (Google AI Studio, Cursor
209
210
 
210
211
  **That file is the contract, and it is the only copy.** It is generated by [`scripts/postinstall.js`](scripts/postinstall.js) — read it there, and change it there. This README deliberately does not restate it, so the two can never disagree.
211
212
 
212
- The short version for a person evaluating the library: you ask for a page or a form in plain language, the assistant writes it, and it appears on the `/pages` screen where the basics — name, web address, icon, order, visibility — are yours to edit. Everything else is the assistant's job; ask it in chat.
213
+ The short version for a person evaluating the library: you ask for a page or a form in plain language, the assistant writes it, and it appears on the `/pages` screen where the basics — name, web address, icon, order, visibility — are yours to edit. A form is created with its page there, and once built it also shows up on `/forms`, where you edit its title, questions and button text yourself. Everything else is the assistant's job; ask it in chat.
213
214
 
214
215
  ## 📐 CSS Isolation
215
216