@rxdrag/website-studio 0.0.42 → 0.0.44
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/ThemeStudio.d.ts +1 -0
- package/dist/WebsiteStudio.d.ts +1 -1
- package/dist/components/StudioRoot/StudioRoot.d.ts +1 -1
- package/dist/components/StudioRoot/contexts.d.ts +2 -0
- package/dist/components/WebsiteDesigner/Toolbar/index.d.ts +3 -1
- package/dist/components/WebsiteDesigner/index.d.ts +1 -0
- package/dist/components/utils/uploadDeploymentFile.d.ts +1 -0
- package/dist/{cssMode-f2090bd3.js → cssMode-f6ed7ab1.js} +3 -2
- package/dist/{cssMode-f2090bd3.js.map → cssMode-f6ed7ab1.js.map} +1 -1
- package/dist/{freemarker2-8ad8aeb1.js → freemarker2-0b5a20e1.js} +3 -2
- package/dist/{freemarker2-8ad8aeb1.js.map → freemarker2-0b5a20e1.js.map} +1 -1
- package/dist/generator/hooks/useGetFrontComponents.d.ts +2 -0
- package/dist/generator/hooks/useGetPages.d.ts +2 -0
- package/dist/{handlebars-22c22910.js → handlebars-3e804cdc.js} +3 -2
- package/dist/{handlebars-22c22910.js.map → handlebars-3e804cdc.js.map} +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useTranslateTheme.d.ts +1 -0
- package/dist/{html-60ec2af9.js → html-bef31e01.js} +3 -2
- package/dist/{html-60ec2af9.js.map → html-bef31e01.js.map} +1 -1
- package/dist/{htmlMode-c8640f90.js → htmlMode-190446f0.js} +3 -2
- package/dist/{htmlMode-c8640f90.js.map → htmlMode-190446f0.js.map} +1 -1
- package/dist/{index-0841cd20.js → index-add86284.js} +81 -47
- package/dist/{index-0841cd20.js.map → index-add86284.js.map} +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/{javascript-0c8adee5.js → javascript-a482a18d.js} +4 -3
- package/dist/{javascript-0c8adee5.js.map → javascript-a482a18d.js.map} +1 -1
- package/dist/{jsonMode-8ad9852a.js → jsonMode-36321e55.js} +3 -2
- package/dist/{jsonMode-8ad9852a.js.map → jsonMode-36321e55.js.map} +1 -1
- package/dist/{liquid-acc1cf0e.js → liquid-91f2b334.js} +3 -2
- package/dist/{liquid-acc1cf0e.js.map → liquid-91f2b334.js.map} +1 -1
- package/dist/{mdx-85dd6b94.js → mdx-5b3f4043.js} +3 -2
- package/dist/{mdx-85dd6b94.js.map → mdx-5b3f4043.js.map} +1 -1
- package/dist/{python-48d1977e.js → python-5ab24881.js} +3 -2
- package/dist/{python-48d1977e.js.map → python-5ab24881.js.map} +1 -1
- package/dist/{razor-22507fac.js → razor-e2cba756.js} +3 -2
- package/dist/{razor-22507fac.js.map → razor-e2cba756.js.map} +1 -1
- package/dist/{tsMode-324fb60b.js → tsMode-a884ed37.js} +3 -2
- package/dist/{tsMode-324fb60b.js.map → tsMode-a884ed37.js.map} +1 -1
- package/dist/{typescript-5f93813d.js → typescript-47724791.js} +3 -2
- package/dist/{typescript-5f93813d.js.map → typescript-47724791.js.map} +1 -1
- package/dist/{xml-bda370ff.js → xml-3d847f47.js} +3 -2
- package/dist/{xml-bda370ff.js.map → xml-3d847f47.js.map} +1 -1
- package/dist/{yaml-5915841b.js → yaml-f547855f.js} +3 -2
- package/dist/{yaml-5915841b.js.map → yaml-f547855f.js.map} +1 -1
- package/package.json +21 -20
package/dist/ThemeStudio.d.ts
CHANGED
package/dist/WebsiteStudio.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type StudioContextProps = {
|
|
|
12
12
|
parentTheme?: Theme;
|
|
13
13
|
baseLangThemeId?: string | null;
|
|
14
14
|
loading?: boolean;
|
|
15
|
+
deployURL?: string;
|
|
15
16
|
};
|
|
16
17
|
export declare const StudioContext: React.Context<StudioContextProps>;
|
|
17
18
|
export declare function useStudioContext(): StudioContextProps;
|
|
@@ -28,3 +29,4 @@ export declare function useTemplateCategories(): any;
|
|
|
28
29
|
export declare function useTemplates(): SectionTemplate[] | undefined;
|
|
29
30
|
export declare function useStudioLoading(): boolean | undefined;
|
|
30
31
|
export declare function useBaseLangThemeId(): string | null | undefined;
|
|
32
|
+
export declare function useDeployURL(): string | undefined;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const WebsiteToolbar: import("react").MemoExoticComponent<(
|
|
2
|
+
export declare const WebsiteToolbar: import("react").MemoExoticComponent<(props: {
|
|
3
|
+
deployUrl?: string;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function uploadDeploymentFile(formData: FormData, deployURL: string | undefined): Promise<void>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as monaco_editor_core_star } from "./index-
|
|
1
|
+
import { m as monaco_editor_core_star } from "./index-add86284.js";
|
|
2
2
|
import "react";
|
|
3
3
|
import "@rxdrag/rxcms-models";
|
|
4
4
|
import "@rxdrag/rxcms-models-ui";
|
|
@@ -30,6 +30,7 @@ import "react-colorful";
|
|
|
30
30
|
import "framer-motion";
|
|
31
31
|
import "react-dom";
|
|
32
32
|
import "@rxdrag/code-generator";
|
|
33
|
+
import "@rxdrag/entify-lib";
|
|
33
34
|
import "@rxdrag/react-runner-pro";
|
|
34
35
|
import "tinycolor2";
|
|
35
36
|
/*!-----------------------------------------------------------------------------
|
|
@@ -2073,4 +2074,4 @@ export {
|
|
|
2073
2074
|
toRange,
|
|
2074
2075
|
toTextEdit
|
|
2075
2076
|
};
|
|
2076
|
-
//# sourceMappingURL=cssMode-
|
|
2077
|
+
//# sourceMappingURL=cssMode-f6ed7ab1.js.map
|