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 +8 -7
- package/dist/ContactPopup-CjRk2BmN.cjs +9 -0
- package/dist/{ContactPopup-DmIm-LJy.js → ContactPopup-y6sBOvRI.js} +6588 -6539
- package/dist/{PhoneInputField-LIVMqqil.js → PhoneInputField-B4UF-o8O.js} +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/renderer.cjs.js +1 -1
- package/dist/renderer.es.js +1 -1
- package/dist/vite.cjs.js +1 -1
- package/dist/vite.es.js +84 -46
- package/dist/your-ai-workflow-firebase-os.cjs.js +19 -108
- package/dist/your-ai-workflow-firebase-os.css +1 -1
- package/dist/your-ai-workflow-firebase-os.es.js +5007 -3803
- package/package.json +1 -1
- package/scripts/postinstall.js +96 -42
- package/src/configs/theme.config.ts +7 -6
- package/src/index.css +119 -0
- package/dist/ContactPopup-BeeluR-E.cjs +0 -9
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** |
|
|
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
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
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
|
+
* role — the 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
|
|