@valbuild/ui 0.59.0 → 0.60.1
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/valbuild-ui.cjs.d.ts +3 -14
- package/dist/valbuild-ui.cjs.js +1 -88148
- package/dist/valbuild-ui.esm.js +6 -88130
- package/package.json +7 -9
- package/server/.tmp/assets/index-AOJXxfaA.js +239 -0
- package/server/.tmp/assets/{index-FU9L7oI1.css → index-ctzNOPVY.css} +1 -1
- package/server/.tmp/index.html +2 -2
- package/server/dist/.vite/manifest.json +0 -5
- package/server/dist/valbuild-ui-server.cjs.js +1 -94
- package/server/dist/valbuild-ui-server.esm.js +42 -64
- package/server/.tmp/assets/index-REL3fiGb.js +0 -237
- package/server/dist/valbuild-ui-main.cjs.js +0 -94223
- package/server/dist/valbuild-ui-main.esm.js +0 -94224
|
@@ -1,19 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import { ValApi } from '@valbuild/core';
|
|
3
|
-
import { ValStore } from '@valbuild/shared/internal';
|
|
4
|
-
|
|
5
|
-
type ValOverlayProps = {
|
|
6
|
-
defaultTheme?: "dark" | "light";
|
|
7
|
-
api: ValApi;
|
|
8
|
-
store: ValStore;
|
|
9
|
-
onSubmit: (refreshRequired: boolean) => void;
|
|
10
|
-
};
|
|
11
|
-
declare function ValOverlay({ defaultTheme, api, store, onSubmit: reloadPage, }: ValOverlayProps): react_jsx_runtime.JSX.Element;
|
|
12
|
-
|
|
13
|
-
declare const VAL_CSS_PATH = "/src/index.css";
|
|
1
|
+
declare const VAL_CSS_PATH = "/spa/index.css";
|
|
14
2
|
declare const VAL_APP_PATH = "/app";
|
|
15
3
|
declare const VAL_APP_ID = "val-app";
|
|
4
|
+
declare const VAL_OVERLAY_ID = "val-overlay";
|
|
16
5
|
|
|
17
6
|
declare const IS_DEV = false;
|
|
18
7
|
|
|
19
|
-
export { IS_DEV, VAL_APP_ID, VAL_APP_PATH, VAL_CSS_PATH,
|
|
8
|
+
export { IS_DEV, VAL_APP_ID, VAL_APP_PATH, VAL_CSS_PATH, VAL_OVERLAY_ID };
|