robobyte-front-builder 1.0.8 → 1.0.10
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/package.json
CHANGED
package/src/lib/index.js
CHANGED
|
@@ -73,6 +73,9 @@ export { default as RoboByteFrontBuilderProvider } from './providers/RoboByteFro
|
|
|
73
73
|
export { default as UIBuilderPage } from '../pages/viewBuilder/index'
|
|
74
74
|
export { default as ReportBuilderPage } from '../pages/reportModule/reportBuilder/index'
|
|
75
75
|
export { default as NavigatorBuilderPage } from '../pages/navigatorBuilder/index'
|
|
76
|
+
// ViewerPage renders a saved UI Builder view (read-only production mode).
|
|
77
|
+
// Create a host page at e.g. pages/viewer/[id].jsx and re-export this component.
|
|
78
|
+
export { default as ViewerPage } from '../pages/viewer/[id]/index'
|
|
76
79
|
|
|
77
80
|
// ── Core Contexts & Hooks (advanced use) ─────────────────────────────────────
|
|
78
81
|
// Useful when you need to read or drive builder state from the host app.
|
|
@@ -1851,7 +1851,7 @@ const NavigatorBuilder = () => {
|
|
|
1851
1851
|
|
|
1852
1852
|
const jsonString = JSON.stringify(saveData)
|
|
1853
1853
|
|
|
1854
|
-
//
|
|
1854
|
+
// C# endpoint: [FromBody] NavigatorSettingForm form → expects { "value": "..." }
|
|
1855
1855
|
const result = await PostService(Endpoints.Navigator.Post.NavigatorSetting, true, {
|
|
1856
1856
|
value: jsonString
|
|
1857
1857
|
})
|