@rxdrag/website-studio 0.0.47 → 0.0.49

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 (40) hide show
  1. package/dist/components/ConfigDrawer/{EmialTemplatesPanel.d.ts → EmailTemplatesPanel.d.ts} +1 -1
  2. package/dist/components/StatusBar/StopButton.d.ts +7 -0
  3. package/dist/components/StatusBar/useSubscribeTaskEvents.d.ts +2 -0
  4. package/dist/components/StudioRoot/contexts.d.ts +6 -4
  5. package/dist/components/common/ComponentCategoryListScope/index.d.ts +1 -1
  6. package/dist/{cssMode-f01e76a3.js → cssMode-b245dcc4.js} +2 -2
  7. package/dist/{cssMode-f01e76a3.js.map → cssMode-b245dcc4.js.map} +1 -1
  8. package/dist/{freemarker2-150b7f6f.js → freemarker2-530ef1c5.js} +2 -2
  9. package/dist/{freemarker2-150b7f6f.js.map → freemarker2-530ef1c5.js.map} +1 -1
  10. package/dist/{handlebars-db028e5f.js → handlebars-bcc85b9a.js} +2 -2
  11. package/dist/{handlebars-db028e5f.js.map → handlebars-bcc85b9a.js.map} +1 -1
  12. package/dist/{html-88b581e7.js → html-d6634f22.js} +2 -2
  13. package/dist/{html-88b581e7.js.map → html-d6634f22.js.map} +1 -1
  14. package/dist/{htmlMode-beb480ee.js → htmlMode-ba8f0a0a.js} +2 -2
  15. package/dist/{htmlMode-beb480ee.js.map → htmlMode-ba8f0a0a.js.map} +1 -1
  16. package/dist/{index-f82df144.js → index-b7a393f5.js} +357 -152
  17. package/dist/{index-f82df144.js.map → index-b7a393f5.js.map} +1 -1
  18. package/dist/index.mjs +1 -1
  19. package/dist/{javascript-ae528407.js → javascript-f4cdea9d.js} +3 -3
  20. package/dist/{javascript-ae528407.js.map → javascript-f4cdea9d.js.map} +1 -1
  21. package/dist/{jsonMode-b53dd865.js → jsonMode-d1ffc4d7.js} +2 -2
  22. package/dist/{jsonMode-b53dd865.js.map → jsonMode-d1ffc4d7.js.map} +1 -1
  23. package/dist/{liquid-f0927f78.js → liquid-61fde33b.js} +2 -2
  24. package/dist/{liquid-f0927f78.js.map → liquid-61fde33b.js.map} +1 -1
  25. package/dist/{mdx-f143f913.js → mdx-da1aa872.js} +2 -2
  26. package/dist/{mdx-f143f913.js.map → mdx-da1aa872.js.map} +1 -1
  27. package/dist/{python-aa6deb94.js → python-ac19bfb8.js} +2 -2
  28. package/dist/{python-aa6deb94.js.map → python-ac19bfb8.js.map} +1 -1
  29. package/dist/{razor-3120b1d8.js → razor-31e1398a.js} +2 -2
  30. package/dist/{razor-3120b1d8.js.map → razor-31e1398a.js.map} +1 -1
  31. package/dist/store/atoms.d.ts +7 -1
  32. package/dist/{tsMode-5445108e.js → tsMode-1dd13bfc.js} +2 -2
  33. package/dist/{tsMode-5445108e.js.map → tsMode-1dd13bfc.js.map} +1 -1
  34. package/dist/{typescript-2c76a3d1.js → typescript-6541a5f9.js} +2 -2
  35. package/dist/{typescript-2c76a3d1.js.map → typescript-6541a5f9.js.map} +1 -1
  36. package/dist/{xml-ee85ffe4.js → xml-c8d528af.js} +2 -2
  37. package/dist/{xml-ee85ffe4.js.map → xml-c8d528af.js.map} +1 -1
  38. package/dist/{yaml-2503ced6.js → yaml-9d155394.js} +2 -2
  39. package/dist/{yaml-2503ced6.js.map → yaml-9d155394.js.map} +1 -1
  40. package/package.json +21 -21
@@ -1,3 +1,3 @@
1
- export declare function EmialTemplatesPanel(props: {
1
+ export declare function EmailTemplatesPanel(props: {
2
2
  onSuccess?: () => void;
3
3
  }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { ButtonProps } from "@heroui/react";
3
+ export type StopButtonProps = ButtonProps & {
4
+ confirm?: string | boolean;
5
+ onStop?: () => void;
6
+ };
7
+ export declare const StopButton: import("react").ForwardRefExoticComponent<Omit<StopButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,2 @@
1
+ import { Task } from "@rxdrag/rxcms-models";
2
+ export declare function useSubscribeTaskEvents(onTaskEvent?: (taks: Task) => void): void;
@@ -1,5 +1,5 @@
1
- import { ListResult } from "@rxdrag/entify-hooks";
2
- import { ComponentCategory, FrontComponent, Page, SectionTemplate, StyleConfig, TemplateCategory, Theme } from "@rxdrag/rxcms-models";
1
+ import { ListResult } from "@rxdrag/entify-lib";
2
+ import { ComponentCategory, FrontComponent, Page, SectionTemplate, StyleConfig, Task, TemplateCategory, Theme } from "@rxdrag/rxcms-models";
3
3
  import React from "react";
4
4
  export type StudioContextProps = {
5
5
  componentCategories?: ListResult<ComponentCategory>;
@@ -13,6 +13,7 @@ export type StudioContextProps = {
13
13
  baseLangThemeId?: string | null;
14
14
  loading?: boolean;
15
15
  deployURL?: string;
16
+ tasksNotDone?: Task[];
16
17
  };
17
18
  export declare const StudioContext: React.Context<StudioContextProps>;
18
19
  export declare function useStudioContext(): StudioContextProps;
@@ -24,9 +25,10 @@ export declare function useParentTheme(): Theme | undefined;
24
25
  export declare function useThemeStyleConfig(): StyleConfig | undefined;
25
26
  export declare function useThemeSettings(): import("@rxdrag/rxcms-models").ThemeSettings | undefined;
26
27
  export declare function usePages(): Page[] | undefined;
27
- export declare function useComponentCategories(): any;
28
- export declare function useTemplateCategories(): any;
28
+ export declare function useComponentCategories(): ListResult<ComponentCategory> | undefined;
29
+ export declare function useTemplateCategories(): ListResult<TemplateCategory> | undefined;
29
30
  export declare function useTemplates(): SectionTemplate[] | undefined;
30
31
  export declare function useStudioLoading(): boolean | undefined;
31
32
  export declare function useBaseLangThemeId(): string | null | undefined;
32
33
  export declare function useDeployURL(): string | undefined;
34
+ export declare function useTasksNotDone(): Task[] | undefined;
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  export declare function ComponentCategoryListScope(props: {
3
3
  children: React.ReactNode;
4
- }): any;
4
+ }): import("react/jsx-runtime").JSX.Element | undefined;
@@ -1,4 +1,4 @@
1
- import { m as monaco_editor_core_star } from "./index-f82df144.js";
1
+ import { m as monaco_editor_core_star } from "./index-b7a393f5.js";
2
2
  import "react";
3
3
  import "@rxdrag/rxcms-models";
4
4
  import "@rxdrag/rxcms-models-ui";
@@ -2074,4 +2074,4 @@ export {
2074
2074
  toRange,
2075
2075
  toTextEdit
2076
2076
  };
2077
- //# sourceMappingURL=cssMode-f01e76a3.js.map
2077
+ //# sourceMappingURL=cssMode-b245dcc4.js.map