@rxdrag/website-studio 0.0.58 → 0.0.60
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/LeftDrawer/ComponentsPanel/ComponentsRootNode.d.ts +1 -1
- package/dist/components/LeftDrawer/PagesPanel/PredefinedApis.d.ts +4 -0
- package/dist/components/LeftDrawer/PagesPanel/PredefinedPageCard.d.ts +2 -0
- package/dist/components/common/ComponentCategoryList/ComponentCategoryModal.d.ts +0 -1
- package/dist/components/common/ComponentCategoryList/ComponentCategoryNode.d.ts +0 -1
- package/dist/components/common/ComponentCategoryList/ComponentList.d.ts +0 -1
- package/dist/components/common/ComponentCategoryList/ComponentModal.d.ts +0 -1
- package/dist/components/common/ComponentCategoryList/index.d.ts +0 -1
- package/dist/components/common/ComponentCategoryListScope/index.d.ts +1 -2
- package/dist/components/common/ImportComponentModal/index.d.ts +1 -2
- package/dist/components/utils/ViewModeButtons.d.ts +1 -1
- package/dist/{cssMode-09f3d08a.js → cssMode-ffe0c44c.js} +4 -3
- package/dist/{cssMode-09f3d08a.js.map → cssMode-ffe0c44c.js.map} +1 -1
- package/dist/{freemarker2-e76b71c2.js → freemarker2-541dbdeb.js} +4 -3
- package/dist/{freemarker2-e76b71c2.js.map → freemarker2-541dbdeb.js.map} +1 -1
- package/dist/{handlebars-1e06e488.js → handlebars-4dfc6fda.js} +4 -3
- package/dist/{handlebars-1e06e488.js.map → handlebars-4dfc6fda.js.map} +1 -1
- package/dist/hooks/useSchema.d.ts +1 -0
- package/dist/{html-01a2c82d.js → html-f353ad65.js} +4 -3
- package/dist/{html-01a2c82d.js.map → html-f353ad65.js.map} +1 -1
- package/dist/{htmlMode-71fa2280.js → htmlMode-66d590ee.js} +4 -3
- package/dist/{htmlMode-71fa2280.js.map → htmlMode-66d590ee.js.map} +1 -1
- package/dist/{index-f5bad985.js → index-43a16806.js} +292 -333
- package/dist/{index-f5bad985.js.map → index-43a16806.js.map} +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{javascript-31f976b5.js → javascript-62aac17e.js} +5 -4
- package/dist/{javascript-31f976b5.js.map → javascript-62aac17e.js.map} +1 -1
- package/dist/{jsonMode-0ac682a1.js → jsonMode-40922d8d.js} +4 -3
- package/dist/{jsonMode-0ac682a1.js.map → jsonMode-40922d8d.js.map} +1 -1
- package/dist/{liquid-cf497048.js → liquid-735f1dae.js} +4 -3
- package/dist/{liquid-cf497048.js.map → liquid-735f1dae.js.map} +1 -1
- package/dist/{mdx-8494287c.js → mdx-e495673a.js} +4 -3
- package/dist/{mdx-8494287c.js.map → mdx-e495673a.js.map} +1 -1
- package/dist/{python-7b6d405d.js → python-fbb8e475.js} +4 -3
- package/dist/{python-7b6d405d.js.map → python-fbb8e475.js.map} +1 -1
- package/dist/{razor-0a925e48.js → razor-015f7859.js} +4 -3
- package/dist/{razor-0a925e48.js.map → razor-015f7859.js.map} +1 -1
- package/dist/{tsMode-a79abe6c.js → tsMode-92a6a656.js} +4 -3
- package/dist/{tsMode-a79abe6c.js.map → tsMode-92a6a656.js.map} +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/{typescript-6fed2f8c.js → typescript-ac8dc120.js} +4 -3
- package/dist/{typescript-6fed2f8c.js.map → typescript-ac8dc120.js.map} +1 -1
- package/dist/{xml-7fc2d3d8.js → xml-b791f2df.js} +4 -3
- package/dist/{xml-7fc2d3d8.js.map → xml-b791f2df.js.map} +1 -1
- package/dist/{yaml-e8730fef.js → yaml-e690f8a2.js} +4 -3
- package/dist/{yaml-e8730fef.js.map → yaml-e690f8a2.js.map} +1 -1
- package/package.json +21 -20
|
@@ -3,6 +3,6 @@ export declare function ComponentsRootNode(props: {
|
|
|
3
3
|
themeId?: string | null;
|
|
4
4
|
readonly?: boolean;
|
|
5
5
|
selectedContent?: SelectedContent;
|
|
6
|
-
isSectionBlock?: boolean;
|
|
7
6
|
onSelectContent?: (content: SelectedContent) => void;
|
|
7
|
+
isTheme?: boolean;
|
|
8
8
|
}): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ComponentCategory } from "@rxdrag/rxcms-models";
|
|
2
2
|
import React from "react";
|
|
3
3
|
export declare const ComponentCategoryNode: React.MemoExoticComponent<(props: {
|
|
4
|
-
isSectionBlock?: boolean | undefined;
|
|
5
4
|
category: ComponentCategory;
|
|
6
5
|
themeId: string;
|
|
7
6
|
readonly?: boolean | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export type ImportComponentModalProps = {
|
|
2
2
|
open: boolean;
|
|
3
3
|
onClose: () => void;
|
|
4
|
-
isSectionBlock?: boolean;
|
|
5
4
|
};
|
|
6
|
-
export declare function ImportComponentModal({
|
|
5
|
+
export declare function ImportComponentModal({ open, onClose, }: ImportComponentModalProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function ViewModeButtons(): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export declare function ViewModeButtons(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as monaco_editor_core_star } from "./index-
|
|
1
|
+
import { m as monaco_editor_core_star } from "./index-43a16806.js";
|
|
2
2
|
import "react";
|
|
3
3
|
import "@rxdrag/rxcms-models";
|
|
4
4
|
import "@rxdrag/rxcms-models-ui";
|
|
@@ -22,7 +22,7 @@ import "react-colorful";
|
|
|
22
22
|
import "framer-motion";
|
|
23
23
|
import "react-dom";
|
|
24
24
|
import "lodash-es";
|
|
25
|
-
import "@rxdrag/code-
|
|
25
|
+
import "@rxdrag/code-templates";
|
|
26
26
|
import "@rxdrag/rxcraft";
|
|
27
27
|
import "@rxdrag/ai-agent";
|
|
28
28
|
import "@rxdrag/rxcms-entify-wrapper";
|
|
@@ -31,6 +31,7 @@ import "@rxdrag/shadcn";
|
|
|
31
31
|
import "@rxdrag/shared";
|
|
32
32
|
import "@rxdrag/schema-pro";
|
|
33
33
|
import "@rxdrag/entify-lib";
|
|
34
|
+
import "@rxdrag/code-generator";
|
|
34
35
|
/*!-----------------------------------------------------------------------------
|
|
35
36
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
36
37
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -2072,4 +2073,4 @@ export {
|
|
|
2072
2073
|
toRange,
|
|
2073
2074
|
toTextEdit
|
|
2074
2075
|
};
|
|
2075
|
-
//# sourceMappingURL=cssMode-
|
|
2076
|
+
//# sourceMappingURL=cssMode-ffe0c44c.js.map
|