robobyte-front-builder 1.0.26 → 1.0.27
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/LICENSE +65 -0
- package/README.md +57 -0
- package/docs/ReportViewer.md +581 -0
- package/docs/fetchReportData.md +379 -0
- package/docs/printLayout.md +405 -0
- package/package.json +29 -1
- package/training/00-index.md +168 -0
- package/training/01-input.md +144 -0
- package/training/02-checkbox.md +107 -0
- package/training/03-dropdown.md +135 -0
- package/training/04-datepicker.md +139 -0
- package/training/05-radio.md +123 -0
- package/training/06-number.md +133 -0
- package/training/07-textarea.md +114 -0
- package/training/08-richtext.md +112 -0
- package/training/09-tag.md +110 -0
- package/training/10-time.md +107 -0
- package/training/11-toggle.md +108 -0
- package/training/12-signature.md +107 -0
- package/training/13-autocomplete.md +134 -0
- package/training/14-button.md +168 -0
- package/training/15-label.md +138 -0
- package/training/16-header.md +128 -0
- package/training/17-divider.md +96 -0
- package/training/18-image.md +105 -0
- package/training/19-link.md +108 -0
- package/training/20-banner.md +122 -0
- package/training/21-progress-circle.md +101 -0
- package/training/22-progress-line.md +93 -0
- package/training/23-menu.md +139 -0
- package/training/24-popover.md +114 -0
- package/training/25-layout.md +116 -0
- package/training/26-layout-cell.md +143 -0
- package/training/27-card.md +87 -0
- package/training/28-wizard.md +126 -0
- package/training/29-wizard-step.md +92 -0
- package/training/30-repeater.md +123 -0
- package/training/31-dialog.md +131 -0
- package/training/32-breadcrumb.md +121 -0
- package/training/33-dataGrid.md +129 -0
- package/training/34-dataTableViewer.md +115 -0
- package/training/35-reportViewer.md +673 -0
- package/training/36-viewRenderer.md +110 -0
- package/training/37-treeView.md +170 -0
- package/training/38-kpi-metric.md +148 -0
- package/training/39-kpi-trend.md +105 -0
- package/training/40-kpi-badge.md +112 -0
- package/training/41-kpi-statusDot.md +118 -0
- package/training/42-kpi-iconBox.md +114 -0
- package/training/43-kpi-gauge.md +143 -0
- package/training/44-kpi-bulletChart.md +126 -0
- package/training/45-kpi-colorScale.md +143 -0
- package/training/46-kpi-rating.md +125 -0
- package/training/47-kpi-countdown.md +151 -0
- package/training/48-fetchReportData.md +276 -0
- package/training/49-printLayout.md +215 -0
- package/training/examples/01-login-form.json +176 -0
- package/training/examples/02-contact-form.json +141 -0
- package/training/examples/03-kpi-cards-row.json +123 -0
- package/training/examples/04-settings-toggles.json +153 -0
- package/training/examples/05-user-profile-card.json +136 -0
- package/training/examples/06-date-range-filter.json +108 -0
- package/training/examples/07-search-bar-results.json +130 -0
- package/training/examples/08-notification-settings.json +131 -0
- package/training/examples/09-employee-profile-form.json +259 -0
- package/training/examples/10-invoice-form.json +241 -0
- package/training/examples/11-dashboard-overview.json +251 -0
- package/training/examples/12-registration-wizard.json +154 -0
- package/training/examples/13-product-catalog.json +168 -0
- package/training/examples/14-data-table-with-filters.json +180 -0
- package/training/examples/15-tabbed-profile.json +92 -0
- package/training/examples/16-kpi-full-row.json +203 -0
- package/training/examples/17-tree-detail-view.json +139 -0
- package/training/examples/18-employee-management.json +233 -0
- package/training/examples/19-sales-dashboard.json +272 -0
- package/training/examples/20-checkout-wizard.json +225 -0
- package/training/examples/21-analytics-page.json +222 -0
- package/training/examples/22-hr-onboarding.json +222 -0
- package/training/examples/23-document-browser.json +241 -0
- package/training/examples/24-order-management.json +290 -0
- package/training/examples/25-crm-contact-page.json +272 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 RoboByte / Hossny37
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Third-party components and commercial dependencies
|
|
26
|
+
|
|
27
|
+
The MIT license above applies to the source code of `robobyte-front-builder`
|
|
28
|
+
itself. This package depends on third-party libraries with their own licenses
|
|
29
|
+
that consumers must comply with separately. The notable ones:
|
|
30
|
+
|
|
31
|
+
### AG Grid Enterprise (peer dependency)
|
|
32
|
+
|
|
33
|
+
This package's report and grid components rely on AG Grid Enterprise features
|
|
34
|
+
(server-side row model, side tool panel, integrated charts, etc.) via the
|
|
35
|
+
`ag-grid-enterprise` peer dependency. AG Grid Enterprise is a **commercial,
|
|
36
|
+
proprietary product owned by AG Grid Ltd**. Consumers deploying this package
|
|
37
|
+
in production must obtain a valid AG Grid Enterprise license from AG Grid
|
|
38
|
+
Ltd and comply with their license terms:
|
|
39
|
+
|
|
40
|
+
https://www.ag-grid.com/license-pricing/
|
|
41
|
+
|
|
42
|
+
AG Grid Community (the base library, MIT-licensed) is sufficient for
|
|
43
|
+
development with a watermark; production use requires a paid license.
|
|
44
|
+
|
|
45
|
+
### MUI X (peer dependency)
|
|
46
|
+
|
|
47
|
+
`@mui/x-data-grid`, `@mui/x-date-pickers`, and related packages have free
|
|
48
|
+
(MIT) and paid (Pro / Premium) tiers. This package uses only the free
|
|
49
|
+
tiers by default. If a consumer opts to install Pro / Premium variants,
|
|
50
|
+
they must comply with MUI's commercial license:
|
|
51
|
+
|
|
52
|
+
https://mui.com/pricing/
|
|
53
|
+
|
|
54
|
+
### Other dependencies
|
|
55
|
+
|
|
56
|
+
All other runtime and peer dependencies are open-source under permissive
|
|
57
|
+
licenses (MIT, Apache 2.0, ISC, BSD). Run `npm ls --omit dev` to inspect
|
|
58
|
+
the full graph and `npm-license-checker` (or similar) to enumerate licenses.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
The license above does not waive or modify the terms of any third-party
|
|
63
|
+
license referenced in this document. Consumers are responsible for
|
|
64
|
+
obtaining and complying with licenses required by their use of those
|
|
65
|
+
third-party components.
|
package/README.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
3
3
|
A low-code **UI Builder**, **Report Builder**, **Print Layout Designer**, and **Navigation Extension API** for Next.js applications.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/robobyte-front-builder)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
[](https://github.com/Hossny37/RoboByteFrontBuilder)
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 📚 Documentation
|
|
12
|
+
|
|
13
|
+
| Document | Audience | What it covers |
|
|
14
|
+
|---|---|---|
|
|
15
|
+
| **[README.md](./README.md)** *(this file)* | Everyone | Public surface, provider props, every component's inspector schema, action-scope tables, troubleshooting, changelog. The exhaustive reference. |
|
|
16
|
+
| **[INTEGRATION.md](./INTEGRATION.md)** | Host-app developers | `next.config.js` setup, peer deps, page wrapper pattern, provider bridge, print layout integration steps. |
|
|
17
|
+
| **[docs/ReportViewer.md](./docs/ReportViewer.md)** | Host-app developers | Embedding `<ReportViewer>` in regular React (cancellation, memo'd filters, `viewerActions`, master/detail patterns). |
|
|
18
|
+
| **[docs/fetchReportData.md](./docs/fetchReportData.md)** | Host-app developers | Calling `fetchReportDataByPageId` directly from host code (hooks, KPI counters, XLSX export, paginated cursors). |
|
|
19
|
+
| **[docs/printLayout.md](./docs/printLayout.md)** | Host-app developers | Triggering print layouts via `PrintDialog` ref API, recommended `PrintProvider` + `usePrintLayout()` pattern. |
|
|
20
|
+
| **[training/00-index.md](./training/00-index.md)** | AI sessions / schema authors | Component catalog index — categories and one-page refs for every component the builder ships. |
|
|
21
|
+
| **[training/35-reportViewer.md](./training/35-reportViewer.md)** | AI sessions / schema authors | Full AI manual for the `reportViewer` component (Calculation scope, action arrays, filter shape, recipes). |
|
|
22
|
+
| **[training/48-fetchReportData.md](./training/48-fetchReportData.md)** | AI sessions / schema authors | In-builder Calculation reference for the auto-injected `fetchReportData` helper. |
|
|
23
|
+
| **[training/49-printLayout.md](./training/49-printLayout.md)** | AI sessions / schema authors | In-builder Calculation reference for `openPrintLayout` / `closePrintLayout`. |
|
|
24
|
+
| **[RoboByteBuilder_User_Manual.docx](./RoboByteBuilder_User_Manual.docx)** | End users | Visual user manual for the builder UI. Ships inside the package. |
|
|
25
|
+
|
|
26
|
+
> **Pair convention.** Most features have **two** manuals: a `docs/` one for host-app React code (consumer of the package) and a `training/` one for AI sessions emitting builder schemas / Calculation code. They cross-link each other; pick the audience that matches your task.
|
|
6
27
|
|
|
7
28
|
---
|
|
8
29
|
|
|
@@ -996,4 +1017,40 @@ npm publish --dry-run
|
|
|
996
1017
|
|
|
997
1018
|
---
|
|
998
1019
|
|
|
1020
|
+
## License & third-party components
|
|
1021
|
+
|
|
1022
|
+
`robobyte-front-builder` itself is released under the **[MIT License](./LICENSE)** — the source code in this repository is free to use, modify, and distribute, including in commercial products.
|
|
1023
|
+
|
|
1024
|
+
> **Important:** this package depends on third-party libraries with their own licenses. The MIT license applies only to *this* package's source code; it does not relicense or waive obligations under those third-party licenses.
|
|
1025
|
+
|
|
1026
|
+
### AG Grid Enterprise — commercial license required for production
|
|
1027
|
+
|
|
1028
|
+
The report and grid components use AG Grid Enterprise features (server-side row model, side tool panel, status bar, integrated charts, master/detail). The `ag-grid-enterprise` package is a **commercial product** owned by AG Grid Ltd:
|
|
1029
|
+
|
|
1030
|
+
- **Development:** AG Grid Enterprise works without a license key, but renders a watermark and prints a console warning. Fine for local dev and evaluation.
|
|
1031
|
+
- **Production deployment:** requires a paid AG Grid Enterprise license. See [ag-grid.com/license-pricing](https://www.ag-grid.com/license-pricing/) for the current terms.
|
|
1032
|
+
|
|
1033
|
+
Pass your license key via the provider — the package calls `LicenseManager.setLicenseKey()` and registers `AllEnterpriseModule` + `IntegratedChartsModule.with(AgChartsEnterpriseModule)` internally:
|
|
1034
|
+
|
|
1035
|
+
```jsx
|
|
1036
|
+
<RoboByteFrontBuilderProvider
|
|
1037
|
+
agGridLicenseKey={process.env.NEXT_PUBLIC_AG_GRID_LICENSE_KEY}
|
|
1038
|
+
// …other props…
|
|
1039
|
+
>
|
|
1040
|
+
…
|
|
1041
|
+
</RoboByteFrontBuilderProvider>
|
|
1042
|
+
```
|
|
1043
|
+
|
|
1044
|
+
### MUI X — free vs. Pro / Premium tiers
|
|
1045
|
+
|
|
1046
|
+
`@mui/x-data-grid`, `@mui/x-date-pickers`, and related packages have a free MIT tier and paid Pro / Premium tiers. This package uses only the free tier. If you swap in `@mui/x-data-grid-pro` or `@mui/x-date-pickers-pro` in your host app, comply with MUI's commercial license: [mui.com/pricing](https://mui.com/pricing/).
|
|
1047
|
+
|
|
1048
|
+
### Everything else
|
|
1049
|
+
|
|
1050
|
+
All other runtime and peer dependencies are open-source under permissive licenses (MIT, Apache 2.0, ISC, BSD). Run `npm ls --omit dev` for the full dependency graph and a tool like `license-checker` for a license enumeration.
|
|
1051
|
+
|
|
1052
|
+
A condensed version of this notice lives in the [`LICENSE`](./LICENSE) file shipped with the package.
|
|
1053
|
+
|
|
1054
|
+
---
|
|
1055
|
+
|
|
999
1056
|
*Full user manual: [RoboByteBuilder_User_Manual.docx](./RoboByteBuilder_User_Manual.docx) (included in the package)*
|