pxengine 0.1.45 → 0.1.47

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/index.cjs CHANGED
@@ -307,6 +307,8 @@ __export(index_exports, {
307
307
  VideoAtom: () => VideoAtom,
308
308
  WorkflowVisualizer: () => WorkflowVisualizer,
309
309
  cn: () => cn,
310
+ generateFieldsFromData: () => generateFieldsFromData,
311
+ generateFieldsFromPropDefinitions: () => generateFieldsFromPropDefinitions,
310
312
  useCreatorWidgetPolling: () => useCreatorWidgetPolling
311
313
  });
312
314
  module.exports = __toCommonJS(index_exports);
@@ -34953,6 +34955,39 @@ function generateFieldsFromData(data) {
34953
34955
  return config;
34954
34956
  });
34955
34957
  }
34958
+ function generateFieldsFromPropDefinitions(propDefs, data) {
34959
+ if (!propDefs || !Array.isArray(propDefs)) return [];
34960
+ return propDefs.filter((def) => def.editable === true).map((def) => {
34961
+ const value = data?.[def.name];
34962
+ const editType = def.editConfig?.editFieldType || inferFieldType(value);
34963
+ const config = {
34964
+ key: def.name,
34965
+ label: def.description || normalizeLabel(def.name),
34966
+ type: editType
34967
+ };
34968
+ if (def.editConfig?.placeholder) {
34969
+ config.placeholder = def.editConfig.placeholder;
34970
+ }
34971
+ if (def.editConfig?.options) {
34972
+ config.options = def.editConfig.options;
34973
+ }
34974
+ if (def.editConfig?.sliderConfig) {
34975
+ config.sliderConfig = {
34976
+ min: def.editConfig.sliderConfig.min,
34977
+ max: def.editConfig.sliderConfig.max,
34978
+ step: def.editConfig.sliderConfig.step
34979
+ };
34980
+ }
34981
+ if (def.editConfig?.numberConfig) {
34982
+ config.numberConfig = {
34983
+ min: def.editConfig.numberConfig.min,
34984
+ max: def.editConfig.numberConfig.max,
34985
+ step: def.editConfig.numberConfig.step
34986
+ };
34987
+ }
34988
+ return config;
34989
+ });
34990
+ }
34956
34991
 
34957
34992
  // src/molecules/creator-discovery/SearchSpecCard/CustomFieldRenderers.tsx
34958
34993
  var import_react59 = require("react");
@@ -38135,23 +38170,43 @@ function UIComponentSelector({
38135
38170
  "div",
38136
38171
  {
38137
38172
  className: cn(
38138
- "rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
38173
+ "my-3 rounded-xl border border-border bg-card overflow-hidden shadow-sm",
38139
38174
  className
38140
38175
  ),
38141
38176
  style: FONT_STYLE6,
38142
38177
  children: [
38143
- /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "px-4 py-3 border-b border-[var(--border-color)] bg-[var(--foreground)]/[0.02]", children: [
38144
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("h3", { className: "text-sm font-semibold text-[var(--foreground)]", children: "Select UI Components" }),
38145
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("p", { className: "text-xs text-[var(--foreground)]/50 mt-0.5", children: "Choose which visual components this agent can use in its responses." })
38146
- ] }),
38178
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "px-4 py-3 border-b border-border/60 bg-muted/40", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "flex items-center gap-2", children: [
38179
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "w-5 h-5 rounded-md bg-interactive/15 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
38180
+ "svg",
38181
+ {
38182
+ width: "12",
38183
+ height: "12",
38184
+ viewBox: "0 0 24 24",
38185
+ fill: "none",
38186
+ stroke: "currentColor",
38187
+ strokeWidth: "2",
38188
+ className: "text-interactive",
38189
+ children: [
38190
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("rect", { x: "3", y: "3", width: "7", height: "7" }),
38191
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("rect", { x: "14", y: "3", width: "7", height: "7" }),
38192
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("rect", { x: "3", y: "14", width: "7", height: "7" }),
38193
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("rect", { x: "14", y: "14", width: "7", height: "7" })
38194
+ ]
38195
+ }
38196
+ ) }),
38197
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { children: [
38198
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("h3", { className: "text-xs font-semibold text-foreground", children: "Select UI Components" }),
38199
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("p", { className: "text-[10px] text-muted-foreground mt-0.5", children: "Choose which visual components this agent can use in its responses." })
38200
+ ] })
38201
+ ] }) }),
38147
38202
  /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "px-4 py-3 space-y-4", children: categoryOrder.map((category) => /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { children: [
38148
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("h4", { className: "text-xs font-medium text-[var(--foreground)]/50 uppercase tracking-wider mb-2", children: category }),
38203
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("h4", { className: "text-[10px] font-semibold text-muted-foreground uppercase tracking-wider mb-2", children: category }),
38149
38204
  /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "space-y-1.5", children: grouped[category].map((comp) => /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
38150
38205
  "label",
38151
38206
  {
38152
38207
  className: cn(
38153
- "flex items-start gap-3 px-3 py-2 rounded-lg cursor-pointer transition-colors",
38154
- submitted || !isLatestMessage ? "cursor-default opacity-70" : "hover:bg-[var(--foreground)]/[0.03]",
38208
+ "flex items-start gap-3 px-3 py-2 rounded-lg cursor-pointer transition-all",
38209
+ submitted || !isLatestMessage ? "cursor-default opacity-60" : "hover:bg-muted/80",
38155
38210
  selected.has(comp.name) && !submitted && "bg-interactive/5 border border-interactive/20",
38156
38211
  selected.has(comp.name) && submitted && "bg-interactive/5"
38157
38212
  ),
@@ -38161,7 +38216,7 @@ function UIComponentSelector({
38161
38216
  {
38162
38217
  className: cn(
38163
38218
  "mt-0.5 w-4 h-4 rounded border flex items-center justify-center shrink-0 transition-colors",
38164
- selected.has(comp.name) ? "bg-interactive border-interactive" : "border-[var(--foreground)]/20"
38219
+ selected.has(comp.name) ? "bg-interactive border-interactive" : "border-muted-foreground/30"
38165
38220
  ),
38166
38221
  onClick: (e) => {
38167
38222
  e.preventDefault();
@@ -38193,7 +38248,7 @@ function UIComponentSelector({
38193
38248
  ),
38194
38249
  /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "flex-1 min-w-0", children: [
38195
38250
  /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "flex items-center gap-1", children: [
38196
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "text-sm font-medium text-[var(--foreground)]", children: comp.display_name }),
38251
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "text-sm font-medium text-foreground", children: comp.display_name }),
38197
38252
  comp.recommended && /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "px-1.5 py-0.5 text-[9px] font-semibold uppercase tracking-wider rounded-full bg-emerald-500/10 text-emerald-600 border border-emerald-500/20", children: "Recommended" }),
38198
38253
  onPreview && /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
38199
38254
  "button",
@@ -38204,7 +38259,7 @@ function UIComponentSelector({
38204
38259
  e.stopPropagation();
38205
38260
  onPreview(comp.name);
38206
38261
  },
38207
- className: "shrink-0 p-0.5 rounded hover:bg-[var(--foreground)]/10 transition-colors",
38262
+ className: "shrink-0 p-0.5 rounded hover:bg-muted transition-colors",
38208
38263
  title: `Preview ${comp.display_name}`,
38209
38264
  children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
38210
38265
  "svg",
@@ -38217,7 +38272,7 @@ function UIComponentSelector({
38217
38272
  strokeWidth: "2",
38218
38273
  strokeLinecap: "round",
38219
38274
  strokeLinejoin: "round",
38220
- className: "text-[var(--foreground)]/40 hover:text-interactive",
38275
+ className: "text-muted-foreground hover:text-interactive",
38221
38276
  children: [
38222
38277
  /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
38223
38278
  /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("line", { x1: "12", y1: "16", x2: "12", y2: "12" }),
@@ -38228,15 +38283,15 @@ function UIComponentSelector({
38228
38283
  }
38229
38284
  )
38230
38285
  ] }),
38231
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "ml-0 text-xs text-[var(--foreground)]/50", children: comp.description })
38286
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "ml-0 text-xs text-muted-foreground", children: comp.description })
38232
38287
  ] })
38233
38288
  ]
38234
38289
  },
38235
38290
  comp.name
38236
38291
  )) })
38237
38292
  ] }, category)) }),
38238
- !submitted && isLatestMessage && /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "px-4 py-3 border-t border-[var(--border-color)] flex items-center justify-between", children: [
38239
- /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("span", { className: "text-xs text-[var(--foreground)]/50", children: [
38293
+ !submitted && isLatestMessage && /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "px-4 py-3 border-t border-border/60 flex items-center justify-between bg-muted/30", children: [
38294
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("span", { className: "text-xs text-muted-foreground", children: [
38240
38295
  selected.size,
38241
38296
  " selected"
38242
38297
  ] }),
@@ -38248,7 +38303,8 @@ function UIComponentSelector({
38248
38303
  children: "Continue"
38249
38304
  }
38250
38305
  )
38251
- ] })
38306
+ ] }),
38307
+ submitted && /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5", children: "Selections confirmed" }) })
38252
38308
  ]
38253
38309
  }
38254
38310
  );
@@ -38501,17 +38557,17 @@ var MultiAgentUISelector = ({
38501
38557
  "div",
38502
38558
  {
38503
38559
  className: cn(
38504
- "text-foreground hover:bg-muted/50 hover:text-foreground my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden shadow-sm",
38560
+ "my-3 rounded-xl border border-border bg-card overflow-hidden shadow-sm",
38505
38561
  className
38506
38562
  ),
38507
38563
  style: FONT_STYLE9,
38508
38564
  children: [
38509
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 py-3 border-b border-[var(--border-color)] bg-[var(--foreground)]/[0.02]", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { className: "flex items-center gap-2", children: [
38510
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "w-4 h-4 rounded bg-interactive/20 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
38565
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 py-3 border-b border-border/60 bg-muted/40", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { className: "flex items-center gap-2", children: [
38566
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "w-5 h-5 rounded-md bg-interactive/15 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
38511
38567
  "svg",
38512
38568
  {
38513
- width: "10",
38514
- height: "10",
38569
+ width: "12",
38570
+ height: "12",
38515
38571
  viewBox: "0 0 24 24",
38516
38572
  fill: "none",
38517
38573
  stroke: "currentColor",
@@ -38525,15 +38581,15 @@ var MultiAgentUISelector = ({
38525
38581
  ]
38526
38582
  }
38527
38583
  ) }),
38528
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "text-xs font-semibold text-[var(--foreground)]", children: "UI Components per Stage" })
38584
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "text-xs font-semibold text-foreground", children: "UI Components per Stage" })
38529
38585
  ] }) }),
38530
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "flex gap-1 border-b border-[var(--border-color)] px-4 py-2 bg-[var(--foreground)]/[0.01]", children: stages.map((stage) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38586
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "flex gap-1 border-b border-border/60 px-4 py-2 bg-muted/20", children: stages.map((stage) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38531
38587
  "button",
38532
38588
  {
38533
38589
  onClick: () => setActiveStageId(stage.id),
38534
38590
  className: cn(
38535
38591
  "px-3 py-1.5 text-[11px] font-medium rounded-full transition-colors",
38536
- activeStageId === stage.id ? "bg-interactive text-white" : "text-[var(--foreground)]/50 hover:text-[var(--foreground)] hover:bg-[var(--foreground)]/[0.05]"
38592
+ activeStageId === stage.id ? "bg-interactive text-white" : "text-muted-foreground hover:text-foreground hover:bg-muted"
38537
38593
  ),
38538
38594
  children: stage.name
38539
38595
  },
@@ -38541,9 +38597,9 @@ var MultiAgentUISelector = ({
38541
38597
  )) }),
38542
38598
  /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { className: "px-4 py-3", children: [
38543
38599
  activeStage && /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { className: "flex items-center justify-between mb-3", children: [
38544
- /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("p", { className: "text-[10px] text-[var(--foreground)]/40", children: [
38600
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("p", { className: "text-[10px] text-muted-foreground", children: [
38545
38601
  "Select components for ",
38546
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("strong", { children: activeStage.name }),
38602
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("strong", { className: "text-foreground", children: activeStage.name }),
38547
38603
  " (",
38548
38604
  activeStage.agent_name,
38549
38605
  ")"
@@ -38557,19 +38613,19 @@ var MultiAgentUISelector = ({
38557
38613
  children: "Select All"
38558
38614
  }
38559
38615
  ),
38560
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "text-[var(--foreground)]/20", children: "|" }),
38616
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "text-muted-foreground/40", children: "|" }),
38561
38617
  /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38562
38618
  "button",
38563
38619
  {
38564
38620
  onClick: () => clearAll(activeStageId),
38565
- className: "text-[10px] text-[var(--foreground)]/40 hover:text-[var(--foreground)]/60 font-medium",
38621
+ className: "text-[10px] text-muted-foreground hover:text-foreground font-medium",
38566
38622
  children: "Clear"
38567
38623
  }
38568
38624
  )
38569
38625
  ] })
38570
38626
  ] }),
38571
38627
  Object.entries(grouped).map(([category, comps]) => /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { className: "mb-3", children: [
38572
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("p", { className: "text-[10px] font-semibold text-[var(--foreground)]/40 uppercase tracking-wide mb-1.5", children: category }),
38628
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("p", { className: "text-[10px] font-semibold text-muted-foreground uppercase tracking-wide mb-1.5", children: category }),
38573
38629
  /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "grid grid-cols-2 gap-1.5", children: comps.map((comp) => {
38574
38630
  const isSelected = selections[activeStageId]?.has(comp.name) || false;
38575
38631
  return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
@@ -38586,7 +38642,7 @@ var MultiAgentUISelector = ({
38586
38642
  },
38587
38643
  className: cn(
38588
38644
  "text-left p-2.5 rounded-lg border text-[11px] transition-all overflow-hidden cursor-pointer",
38589
- isSelected ? "border-interactive bg-interactive/5" : "border-[var(--border-color)] hover:border-interactive/50",
38645
+ isSelected ? "border-interactive bg-interactive/5" : "border-border hover:border-interactive/50",
38590
38646
  (submitted || !isLatestMessage) && "opacity-60 cursor-default"
38591
38647
  ),
38592
38648
  children: [
@@ -38596,7 +38652,7 @@ var MultiAgentUISelector = ({
38596
38652
  {
38597
38653
  className: cn(
38598
38654
  "w-3.5 h-3.5 rounded border flex items-center justify-center shrink-0",
38599
- isSelected ? "bg-interactive border-interactive" : "border-[var(--foreground)]/20"
38655
+ isSelected ? "bg-interactive border-interactive" : "border-muted-foreground/30"
38600
38656
  ),
38601
38657
  children: isSelected && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38602
38658
  "svg",
@@ -38612,7 +38668,7 @@ var MultiAgentUISelector = ({
38612
38668
  )
38613
38669
  }
38614
38670
  ),
38615
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "font-medium text-[var(--foreground)]", children: comp.display_name }),
38671
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "font-medium text-foreground", children: comp.display_name }),
38616
38672
  comp.recommended && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("span", { className: "px-1 py-px text-[8px] font-semibold uppercase tracking-wider rounded-full bg-emerald-500/10 text-emerald-600 border border-emerald-500/20 leading-tight", children: "Rec" }),
38617
38673
  onPreview && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38618
38674
  "button",
@@ -38622,7 +38678,7 @@ var MultiAgentUISelector = ({
38622
38678
  e.stopPropagation();
38623
38679
  onPreview(comp.name);
38624
38680
  },
38625
- className: "ml-auto shrink-0 p-0.5 rounded hover:bg-[var(--foreground)]/10 transition-colors",
38681
+ className: "ml-auto shrink-0 p-0.5 rounded hover:bg-muted transition-colors",
38626
38682
  title: `Preview ${comp.display_name}`,
38627
38683
  children: /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
38628
38684
  "svg",
@@ -38635,7 +38691,7 @@ var MultiAgentUISelector = ({
38635
38691
  strokeWidth: "2",
38636
38692
  strokeLinecap: "round",
38637
38693
  strokeLinejoin: "round",
38638
- className: "text-[var(--foreground)]/40 hover:text-[var(--primary-color)]",
38694
+ className: "text-muted-foreground hover:text-primary",
38639
38695
  children: [
38640
38696
  /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
38641
38697
  /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("line", { x1: "12", y1: "16", x2: "12", y2: "12" }),
@@ -38646,7 +38702,7 @@ var MultiAgentUISelector = ({
38646
38702
  }
38647
38703
  )
38648
38704
  ] }),
38649
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("p", { className: "text-[10px] text-[var(--foreground)]/40 mt-0.5 ml-5 whitespace-normal", children: comp.description })
38705
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("p", { className: "text-[10px] text-muted-foreground mt-0.5 ml-5 whitespace-normal", children: comp.description })
38650
38706
  ]
38651
38707
  },
38652
38708
  comp.name
@@ -38654,7 +38710,7 @@ var MultiAgentUISelector = ({
38654
38710
  }) })
38655
38711
  ] }, category))
38656
38712
  ] }),
38657
- !submitted && isLatestMessage && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38713
+ !submitted && isLatestMessage && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 py-3 border-t border-border/60 bg-muted/30", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
38658
38714
  "button",
38659
38715
  {
38660
38716
  onClick: handleContinue,
@@ -38662,7 +38718,7 @@ var MultiAgentUISelector = ({
38662
38718
  children: "Continue"
38663
38719
  }
38664
38720
  ) }),
38665
- submitted && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5 ", children: "Selections confirmed" }) })
38721
+ submitted && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5", children: "Selections confirmed" }) })
38666
38722
  ]
38667
38723
  }
38668
38724
  );
@@ -40945,6 +41001,8 @@ var PXEngineRenderer = ({
40945
41001
  VideoAtom,
40946
41002
  WorkflowVisualizer,
40947
41003
  cn,
41004
+ generateFieldsFromData,
41005
+ generateFieldsFromPropDefinitions,
40948
41006
  useCreatorWidgetPolling
40949
41007
  });
40950
41008
  /*! Bundled license information: