@rxdrag/website-studio 0.0.48 → 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.
- package/dist/components/ConfigDrawer/{EmialTemplatesPanel.d.ts → EmailTemplatesPanel.d.ts} +1 -1
- package/dist/components/StatusBar/StopButton.d.ts +7 -0
- package/dist/components/StatusBar/useSubscribeTaskEvents.d.ts +2 -0
- package/dist/components/StudioRoot/contexts.d.ts +6 -4
- package/dist/components/common/ComponentCategoryListScope/index.d.ts +1 -1
- package/dist/{cssMode-e235f5c4.js → cssMode-b245dcc4.js} +2 -2
- package/dist/{cssMode-e235f5c4.js.map → cssMode-b245dcc4.js.map} +1 -1
- package/dist/{freemarker2-775aff18.js → freemarker2-530ef1c5.js} +2 -2
- package/dist/{freemarker2-775aff18.js.map → freemarker2-530ef1c5.js.map} +1 -1
- package/dist/{handlebars-46315f0e.js → handlebars-bcc85b9a.js} +2 -2
- package/dist/{handlebars-46315f0e.js.map → handlebars-bcc85b9a.js.map} +1 -1
- package/dist/{html-ed8824db.js → html-d6634f22.js} +2 -2
- package/dist/{html-ed8824db.js.map → html-d6634f22.js.map} +1 -1
- package/dist/{htmlMode-6d3a7f40.js → htmlMode-ba8f0a0a.js} +2 -2
- package/dist/{htmlMode-6d3a7f40.js.map → htmlMode-ba8f0a0a.js.map} +1 -1
- package/dist/{index-aaa4e570.js → index-b7a393f5.js} +351 -154
- package/dist/{index-aaa4e570.js.map → index-b7a393f5.js.map} +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{javascript-c0d8cc8b.js → javascript-f4cdea9d.js} +3 -3
- package/dist/{javascript-c0d8cc8b.js.map → javascript-f4cdea9d.js.map} +1 -1
- package/dist/{jsonMode-165aee85.js → jsonMode-d1ffc4d7.js} +2 -2
- package/dist/{jsonMode-165aee85.js.map → jsonMode-d1ffc4d7.js.map} +1 -1
- package/dist/{liquid-fd914edd.js → liquid-61fde33b.js} +2 -2
- package/dist/{liquid-fd914edd.js.map → liquid-61fde33b.js.map} +1 -1
- package/dist/{mdx-5e7a0f83.js → mdx-da1aa872.js} +2 -2
- package/dist/{mdx-5e7a0f83.js.map → mdx-da1aa872.js.map} +1 -1
- package/dist/{python-e1d6d047.js → python-ac19bfb8.js} +2 -2
- package/dist/{python-e1d6d047.js.map → python-ac19bfb8.js.map} +1 -1
- package/dist/{razor-e15c6655.js → razor-31e1398a.js} +2 -2
- package/dist/{razor-e15c6655.js.map → razor-31e1398a.js.map} +1 -1
- package/dist/store/atoms.d.ts +7 -1
- package/dist/{tsMode-2f97f8d8.js → tsMode-1dd13bfc.js} +2 -2
- package/dist/{tsMode-2f97f8d8.js.map → tsMode-1dd13bfc.js.map} +1 -1
- package/dist/{typescript-0b9ed5c9.js → typescript-6541a5f9.js} +2 -2
- package/dist/{typescript-0b9ed5c9.js.map → typescript-6541a5f9.js.map} +1 -1
- package/dist/{xml-4e563c2c.js → xml-c8d528af.js} +2 -2
- package/dist/{xml-4e563c2c.js.map → xml-c8d528af.js.map} +1 -1
- package/dist/{yaml-c9882143.js → yaml-9d155394.js} +2 -2
- package/dist/{yaml-c9882143.js.map → yaml-9d155394.js.map} +1 -1
- package/package.json +16 -16
|
@@ -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>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ListResult } from "@rxdrag/entify-
|
|
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():
|
|
28
|
-
export declare function useTemplateCategories():
|
|
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
|
-
import { m as monaco_editor_core_star } from "./index-
|
|
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-
|
|
2077
|
+
//# sourceMappingURL=cssMode-b245dcc4.js.map
|