@arpproject/recrate 0.1.40 → 0.1.41
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/recrate.es.js +8 -8
- package/package.json +1 -1
package/dist/recrate.es.js
CHANGED
|
@@ -73043,7 +73043,7 @@ const CoreEntityFields = ({
|
|
|
73043
73043
|
"div",
|
|
73044
73044
|
{
|
|
73045
73045
|
"data-recrate-property": "@id",
|
|
73046
|
-
className: `flex-grow
|
|
73046
|
+
className: `flex-grow recrate-property recrate-property-name-id ${savedProperty === "@id" ? "bg-green-200 rounded p-1 my-1" : ""} ${selectedAiApprovalProperty === "@id" ? "recrate-ai-review-current" : ""}`,
|
|
73047
73047
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73048
73048
|
EntityId,
|
|
73049
73049
|
{
|
|
@@ -73061,7 +73061,7 @@ const CoreEntityFields = ({
|
|
|
73061
73061
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "flex-grow" }),
|
|
73062
73062
|
/* @__PURE__ */ jsxRuntimeExports.jsx(RequiredPropertiesWarningButton, { onClick: onToggleHighlightRequiredProperties })
|
|
73063
73063
|
] }),
|
|
73064
|
-
shouldRenderCoreField("@type") && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { "data-recrate-property": "@type", className: `my-2 p-2
|
|
73064
|
+
shouldRenderCoreField("@type") && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { "data-recrate-property": "@type", className: `my-2 p-2 recrate-property recrate-property-name-type ${selectedAiApprovalProperty === "@type" ? "recrate-ai-review-current" : ""}`, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73065
73065
|
EntityType,
|
|
73066
73066
|
{
|
|
73067
73067
|
entity,
|
|
@@ -73074,7 +73074,7 @@ const CoreEntityFields = ({
|
|
|
73074
73074
|
"div",
|
|
73075
73075
|
{
|
|
73076
73076
|
"data-recrate-property": "name",
|
|
73077
|
-
className: `my-2 p-2
|
|
73077
|
+
className: `my-2 p-2 recrate-property recrate-property-name-name ${savedProperty === "name" ? untabbedNameSavedClassName : ""}`,
|
|
73078
73078
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73079
73079
|
EntityName,
|
|
73080
73080
|
{
|
|
@@ -73095,7 +73095,7 @@ const CoreEntityFields = ({
|
|
|
73095
73095
|
"div",
|
|
73096
73096
|
{
|
|
73097
73097
|
"data-recrate-property": "@id",
|
|
73098
|
-
className: `p-2
|
|
73098
|
+
className: `p-2 recrate-property recrate-property-name-id ${savedProperty === "@id" ? "bg-green-200 rounded" : ""} ${selectedAiApprovalProperty === "@id" ? "recrate-ai-review-current" : ""}`,
|
|
73099
73099
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73100
73100
|
EntityId,
|
|
73101
73101
|
{
|
|
@@ -73107,7 +73107,7 @@ const CoreEntityFields = ({
|
|
|
73107
73107
|
)
|
|
73108
73108
|
}
|
|
73109
73109
|
),
|
|
73110
|
-
shouldRenderCoreField("@type") && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { "data-recrate-property": "@type", className: `p-2
|
|
73110
|
+
shouldRenderCoreField("@type") && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { "data-recrate-property": "@type", className: `p-2 recrate-property recrate-property-name-type ${selectedAiApprovalProperty === "@type" ? "recrate-ai-review-current" : ""}`, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73111
73111
|
EntityType,
|
|
73112
73112
|
{
|
|
73113
73113
|
entity,
|
|
@@ -73120,7 +73120,7 @@ const CoreEntityFields = ({
|
|
|
73120
73120
|
"div",
|
|
73121
73121
|
{
|
|
73122
73122
|
"data-recrate-property": "name",
|
|
73123
|
-
className: `p-2
|
|
73123
|
+
className: `p-2 recrate-property recrate-property-name-name ${savedProperty === "name" ? "bg-green-200 rounded" : ""}`,
|
|
73124
73124
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
73125
73125
|
EntityName,
|
|
73126
73126
|
{
|
|
@@ -88007,7 +88007,7 @@ const getWrapperClassName = ({
|
|
|
88007
88007
|
spacingClassName,
|
|
88008
88008
|
"hover:bg-sky-100",
|
|
88009
88009
|
saved ? "bg-green-200 hover:bg-green-200" : "",
|
|
88010
|
-
selected ? "
|
|
88010
|
+
selected ? "recrate-ai-review-current" : ""
|
|
88011
88011
|
].filter(Boolean).join(" ");
|
|
88012
88012
|
};
|
|
88013
88013
|
const EntityPropertyField = ({
|
|
@@ -126573,7 +126573,7 @@ var EmotionCacheContext = /* @__PURE__ */ React.createContext(
|
|
|
126573
126573
|
}) : null
|
|
126574
126574
|
);
|
|
126575
126575
|
var CacheProvider = EmotionCacheContext.Provider;
|
|
126576
|
-
const version = "0.1.
|
|
126576
|
+
const version = "0.1.41";
|
|
126577
126577
|
const pkg = {
|
|
126578
126578
|
version
|
|
126579
126579
|
};
|