@rxdrag/website-studio 0.0.38 → 0.0.39

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.
Files changed (41) hide show
  1. package/dist/backup/useExportTheme.d.ts +0 -4
  2. package/dist/components/ConfigDrawer/DeployConfigPanel/DeploySettings.d.ts +1 -0
  3. package/dist/components/ConfigDrawer/DeployConfigPanel/index.d.ts +3 -0
  4. package/dist/components/ConfigDrawer/types.d.ts +2 -1
  5. package/dist/components/StudioRoot/contexts.d.ts +0 -2
  6. package/dist/components/WebsiteDesigner/Toolbar/DownloadCodeModal.d.ts +6 -0
  7. package/dist/{cssMode-9d59bb7b.js → cssMode-f2090bd3.js} +3 -2
  8. package/dist/{cssMode-9d59bb7b.js.map → cssMode-f2090bd3.js.map} +1 -1
  9. package/dist/{freemarker2-90a46d02.js → freemarker2-8ad8aeb1.js} +3 -2
  10. package/dist/{freemarker2-90a46d02.js.map → freemarker2-8ad8aeb1.js.map} +1 -1
  11. package/dist/{handlebars-30a5598d.js → handlebars-22c22910.js} +3 -2
  12. package/dist/{handlebars-30a5598d.js.map → handlebars-22c22910.js.map} +1 -1
  13. package/dist/{html-4d445396.js → html-60ec2af9.js} +3 -2
  14. package/dist/{html-4d445396.js.map → html-60ec2af9.js.map} +1 -1
  15. package/dist/{htmlMode-ea12bb68.js → htmlMode-c8640f90.js} +3 -2
  16. package/dist/{htmlMode-ea12bb68.js.map → htmlMode-c8640f90.js.map} +1 -1
  17. package/dist/{index-0fa107c4.js → index-0841cd20.js} +292 -76
  18. package/dist/{index-0fa107c4.js.map → index-0841cd20.js.map} +1 -1
  19. package/dist/index.mjs +2 -1
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/{javascript-b4eb4c88.js → javascript-0c8adee5.js} +4 -3
  22. package/dist/{javascript-b4eb4c88.js.map → javascript-0c8adee5.js.map} +1 -1
  23. package/dist/{jsonMode-a59da8ed.js → jsonMode-8ad9852a.js} +3 -2
  24. package/dist/{jsonMode-a59da8ed.js.map → jsonMode-8ad9852a.js.map} +1 -1
  25. package/dist/{liquid-0d0b67e6.js → liquid-acc1cf0e.js} +3 -2
  26. package/dist/{liquid-0d0b67e6.js.map → liquid-acc1cf0e.js.map} +1 -1
  27. package/dist/{mdx-0ab7eeab.js → mdx-85dd6b94.js} +3 -2
  28. package/dist/{mdx-0ab7eeab.js.map → mdx-85dd6b94.js.map} +1 -1
  29. package/dist/{python-72d25c72.js → python-48d1977e.js} +3 -2
  30. package/dist/{python-72d25c72.js.map → python-48d1977e.js.map} +1 -1
  31. package/dist/{razor-a884d84f.js → razor-22507fac.js} +3 -2
  32. package/dist/{razor-a884d84f.js.map → razor-22507fac.js.map} +1 -1
  33. package/dist/{tsMode-0f746593.js → tsMode-324fb60b.js} +3 -2
  34. package/dist/{tsMode-0f746593.js.map → tsMode-324fb60b.js.map} +1 -1
  35. package/dist/{typescript-b1fb2468.js → typescript-5f93813d.js} +3 -2
  36. package/dist/{typescript-b1fb2468.js.map → typescript-5f93813d.js.map} +1 -1
  37. package/dist/{xml-1abe5033.js → xml-bda370ff.js} +3 -2
  38. package/dist/{xml-1abe5033.js.map → xml-bda370ff.js.map} +1 -1
  39. package/dist/{yaml-f40dd63b.js → yaml-5915841b.js} +3 -2
  40. package/dist/{yaml-f40dd63b.js.map → yaml-5915841b.js.map} +1 -1
  41. package/package.json +18 -17
@@ -2,10 +2,6 @@ export declare function useThemeZipExport(fileName: string): {
2
2
  exportAsZip: () => Promise<void>;
3
3
  isExporting: boolean;
4
4
  };
5
- export declare function useThemeGitUpload(repoName: string): {
6
- uploadToGit: () => Promise<void>;
7
- uploading: boolean;
8
- };
9
5
  export interface ThemeFile {
10
6
  name: string;
11
7
  type: 'file' | 'folder';
@@ -0,0 +1 @@
1
+ export declare function DeploySettings(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare function DeployConfigPanel(props: {
2
+ onSuccess?: () => void;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -8,5 +8,6 @@ export declare enum ThemeConfigType {
8
8
  EmailTemplates = "emailTemplates",
9
9
  Fonts = "fonts",
10
10
  Favicon = "favicon",
11
- Redirects = "redirects"
11
+ Redirects = "redirects",
12
+ DeployConfig = "deployConfig"
12
13
  }
@@ -12,7 +12,6 @@ export type StudioContextProps = {
12
12
  parentTheme?: Theme;
13
13
  baseLangThemeId?: string | null;
14
14
  loading?: boolean;
15
- previewUrl?: string;
16
15
  };
17
16
  export declare const StudioContext: React.Context<StudioContextProps>;
18
17
  export declare function useStudioContext(): StudioContextProps;
@@ -29,4 +28,3 @@ export declare function useTemplateCategories(): ListResult<TemplateCategory> |
29
28
  export declare function useTemplates(): SectionTemplate[] | undefined;
30
29
  export declare function useStudioLoading(): boolean | undefined;
31
30
  export declare function useBaseLangThemeId(): string | null | undefined;
32
- export declare function usePreviewUrl(): string | undefined;
@@ -0,0 +1,6 @@
1
+ import { Radio } from "@heroui/react";
2
+ export declare const CustomRadio: (props: React.ComponentProps<typeof Radio>) => import("react/jsx-runtime").JSX.Element;
3
+ export default function DownloadCodeModal(props: {
4
+ isOpen: boolean;
5
+ onClose: () => void;
6
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- import { m as monaco_editor_core_star } from "./index-0fa107c4.js";
1
+ import { m as monaco_editor_core_star } from "./index-0841cd20.js";
2
2
  import "react";
3
3
  import "@rxdrag/rxcms-models";
4
4
  import "@rxdrag/rxcms-models-ui";
@@ -29,6 +29,7 @@ import "@rxdrag/react-fieldy-pro";
29
29
  import "react-colorful";
30
30
  import "framer-motion";
31
31
  import "react-dom";
32
+ import "@rxdrag/code-generator";
32
33
  import "@rxdrag/react-runner-pro";
33
34
  import "tinycolor2";
34
35
  /*!-----------------------------------------------------------------------------
@@ -2072,4 +2073,4 @@ export {
2072
2073
  toRange,
2073
2074
  toTextEdit
2074
2075
  };
2075
- //# sourceMappingURL=cssMode-9d59bb7b.js.map
2076
+ //# sourceMappingURL=cssMode-f2090bd3.js.map