@olonjs/core 1.0.127 → 1.1.2
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/index.d.ts +8 -0
- package/dist/olonjs-core-runtime.js +4452 -0
- package/dist/olonjs-core.js +3010 -3089
- package/dist/olonjs-core.umd.cjs +42 -42
- package/dist/runtime.d.ts +1117 -0
- package/package.json +11 -3
package/dist/index.d.ts
CHANGED
|
@@ -549,6 +549,12 @@ export declare function normalizeSlugSegments(value: string): string;
|
|
|
549
549
|
*/
|
|
550
550
|
export declare const OlonFormsContext: Context<Record<string, FormState>>;
|
|
551
551
|
|
|
552
|
+
export declare function OlonJSEngine({ config }: OlonJSEngineProps): JSX.Element;
|
|
553
|
+
|
|
554
|
+
export declare interface OlonJSEngineProps {
|
|
555
|
+
config: JsonPagesConfig;
|
|
556
|
+
}
|
|
557
|
+
|
|
552
558
|
declare interface OlonJsPageContract {
|
|
553
559
|
version: '1.0.0';
|
|
554
560
|
kind: 'olonjs-page-contract';
|
|
@@ -743,6 +749,8 @@ export declare namespace runtime {
|
|
|
743
749
|
DefaultNotFound,
|
|
744
750
|
STUDIO_EVENTS,
|
|
745
751
|
EngineErrorBoundary,
|
|
752
|
+
OlonJSEngine,
|
|
753
|
+
OlonJSEngineProps,
|
|
746
754
|
PreviewRoute,
|
|
747
755
|
PreviewRouteProps,
|
|
748
756
|
StudioRoute,
|