@parhelia/core 0.1.12390 → 0.1.12397

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 (79) hide show
  1. package/dist/editor/Editor.js +32 -17
  2. package/dist/editor/Editor.js.map +1 -1
  3. package/dist/editor/PictureCropper.js +9 -4
  4. package/dist/editor/PictureCropper.js.map +1 -1
  5. package/dist/editor/PictureEditor.js +12 -13
  6. package/dist/editor/PictureEditor.js.map +1 -1
  7. package/dist/editor/SetupWizard.js +20 -2
  8. package/dist/editor/SetupWizard.js.map +1 -1
  9. package/dist/editor/ai/AgentTerminal.js +14 -3
  10. package/dist/editor/ai/AgentTerminal.js.map +1 -1
  11. package/dist/editor/ai/dialogs/agentDialogTypes.d.ts +1 -1
  12. package/dist/editor/client/editContext.d.ts +4 -0
  13. package/dist/editor/client/editContext.js.map +1 -1
  14. package/dist/editor/page-editor-chrome/useInlineAICompletion.js +283 -298
  15. package/dist/editor/page-editor-chrome/useInlineAICompletion.js.map +1 -1
  16. package/dist/editor/pictureRawValue.d.ts +3 -0
  17. package/dist/editor/pictureRawValue.js +30 -0
  18. package/dist/editor/pictureRawValue.js.map +1 -0
  19. package/dist/editor/services/templateBuilderService.d.ts +7 -0
  20. package/dist/editor/services/templateBuilderService.js +7 -1
  21. package/dist/editor/services/templateBuilderService.js.map +1 -1
  22. package/dist/editor/settings/About.js +25 -19
  23. package/dist/editor/settings/About.js.map +1 -1
  24. package/dist/editor/settings/panels/AgentProfileEditorPanel.d.ts +14 -0
  25. package/dist/editor/settings/panels/AgentProfileEditorPanel.js +7 -0
  26. package/dist/editor/settings/panels/AgentProfileEditorPanel.js.map +1 -0
  27. package/dist/editor/settings/panels/AgentsPanel.js +2 -2
  28. package/dist/editor/settings/panels/AgentsPanel.js.map +1 -1
  29. package/dist/editor/settings/panels/ProjectTemplatesPanel.js +146 -8
  30. package/dist/editor/settings/panels/ProjectTemplatesPanel.js.map +1 -1
  31. package/dist/editor/setup-wizard/steps/CompleteStep.d.ts +2 -1
  32. package/dist/editor/setup-wizard/steps/CompleteStep.js +2 -1
  33. package/dist/editor/setup-wizard/steps/CompleteStep.js.map +1 -1
  34. package/dist/editor/setup-wizard/steps/LicenseActivationStep.d.ts +9 -0
  35. package/dist/editor/setup-wizard/steps/LicenseActivationStep.js +160 -0
  36. package/dist/editor/setup-wizard/steps/LicenseActivationStep.js.map +1 -0
  37. package/dist/editor/setup-wizard/steps/LicenseEmailStep.d.ts +10 -0
  38. package/dist/editor/setup-wizard/steps/LicenseEmailStep.js +101 -0
  39. package/dist/editor/setup-wizard/steps/LicenseEmailStep.js.map +1 -0
  40. package/dist/editor/template-wizard/TemplateStructureInlineEditor.js +422 -65
  41. package/dist/editor/template-wizard/TemplateStructureInlineEditor.js.map +1 -1
  42. package/dist/licensing/EmailEntry.js +1 -1
  43. package/dist/licensing/EmailEntry.js.map +1 -1
  44. package/dist/licensing/LicenseActivationForm.js +1 -1
  45. package/dist/licensing/LicenseActivationForm.js.map +1 -1
  46. package/dist/licensing/LicenseCodeEntry.js +2 -2
  47. package/dist/licensing/LicenseCodeEntry.js.map +1 -1
  48. package/dist/licensing/LicenseContext.js +18 -9
  49. package/dist/licensing/LicenseContext.js.map +1 -1
  50. package/dist/licensing/LicenseOverlay.js +2 -1
  51. package/dist/licensing/LicenseOverlay.js.map +1 -1
  52. package/dist/licensing/licenseService.d.ts +10 -0
  53. package/dist/licensing/licenseService.js +28 -0
  54. package/dist/licensing/licenseService.js.map +1 -1
  55. package/dist/revision.d.ts +2 -2
  56. package/dist/revision.js +2 -2
  57. package/dist/task-board/TaskBoardWorkspace.js +3 -2
  58. package/dist/task-board/TaskBoardWorkspace.js.map +1 -1
  59. package/dist/task-board/components/ProjectDashboard.d.ts +4 -0
  60. package/dist/task-board/components/ProjectDashboard.js +1 -1
  61. package/dist/task-board/components/ProjectDashboard.js.map +1 -1
  62. package/dist/task-board/components/ProjectListContent.d.ts +1 -1
  63. package/dist/task-board/components/ProjectListContent.js +4 -1
  64. package/dist/task-board/components/ProjectListContent.js.map +1 -1
  65. package/dist/task-board/components/ProjectOverviewContent.d.ts +17 -0
  66. package/dist/task-board/components/ProjectOverviewContent.js +134 -0
  67. package/dist/task-board/components/ProjectOverviewContent.js.map +1 -0
  68. package/dist/task-board/components/ProjectSelector.d.ts +1 -1
  69. package/dist/task-board/components/ProjectSelector.js +1 -1
  70. package/dist/task-board/components/ProjectSelector.js.map +1 -1
  71. package/dist/task-board/components/TaskDetailPanel.js +59 -9
  72. package/dist/task-board/components/TaskDetailPanel.js.map +1 -1
  73. package/dist/task-board/services/taskService.d.ts +4 -1
  74. package/dist/task-board/services/taskService.js +3 -0
  75. package/dist/task-board/services/taskService.js.map +1 -1
  76. package/dist/task-board/taskBoardNavStore.d.ts +3 -1
  77. package/dist/task-board/taskBoardNavStore.js.map +1 -1
  78. package/dist/task-board/types.d.ts +30 -0
  79. package/package.json +1 -1
@@ -101,7 +101,7 @@ export interface QuestionnaireQuestion {
101
101
  * - "item-picker": allow selecting one or more items from the content tree
102
102
  */
103
103
  type?: "options" | "item-picker";
104
- /** For type:"item-picker": optional root item ID or Sitecore path to start browsing from */
104
+ /** For type:"item-picker": required root item ID or Sitecore path to start browsing from */
105
105
  rootItemId?: string;
106
106
  /** Backward-compatible alias for rootItemId */
107
107
  root?: string;
@@ -274,6 +274,10 @@ export type EditContextType = {
274
274
  item?: FullItem;
275
275
  loadItem: (itemToLoad: ItemDescriptor | string, options?: {
276
276
  addToBrowseHistory?: boolean;
277
+ /** When true, do not push an entry onto the editor navigation history. */
278
+ skipNavigationHistory?: boolean;
279
+ /** Internal: avoid view/URL side effects when history already reflects state. */
280
+ skipViewChange?: boolean;
277
281
  openInNewSlot?: boolean;
278
282
  /** Explicit target slot to load into (used when switching active slot). */
279
283
  targetSlotId?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"editContext.js","sourceRoot":"","sources":["../../../src/editor/client/editContext.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,KAAK,EAAE,EAGZ,UAAU,EACV,SAAS,EACT,MAAM,GACP,MAAM,OAAO,CAAC;AA+kBf,MAAM,WAAW,GAAG,KAAK,CAAC,aAAa,CAA8B,SAAS,CAAC,CAAC;AAChF,MAAM,CAAC,MAAM,mBAAmB,GAAG,WAAW,CAAC,QAAQ,CAAC;AAExD,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;AAE5D,MAAM,UAAU,iBAAiB;IAC/B,MAAM,YAAY,GAAG,cAAc,EAAE,CAAC;IACtC,MAAM,UAAU,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;IAExC,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CAAC,OAAO,GAAG,YAAY,CAAC;IACpC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAEnB,OAAO,UAAU,CAAC;AACpB,CAAC;AAyCD,MAAM,iBAAiB,GAAG,KAAK,CAAC,aAAa,CAE3C,SAAS,CAAC,CAAC;AAEb,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;AACxE,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,QAAQ,CAAC;AAEpE,mDAAmD;AACnD,MAAM,UAAU,uBAAuB;IACrC,MAAM,YAAY,GAAG,oBAAoB,EAAE,CAAC;IAC5C,MAAM,UAAU,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;IAExC,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CAAC,OAAO,GAAG,YAAY,CAAC;IACpC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAEnB,OAAO,UAAU,CAAC;AACpB,CAAC;AASD,MAAM,iBAAiB,GAAG,KAAK,CAAC,aAAa,CAE3C,SAAS,CAAC,CAAC;AAEb,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;AACxE,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,QAAQ,CAAC"}
1
+ {"version":3,"file":"editContext.js","sourceRoot":"","sources":["../../../src/editor/client/editContext.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,KAAK,EAAE,EAGZ,UAAU,EACV,SAAS,EACT,MAAM,GACP,MAAM,OAAO,CAAC;AAmlBf,MAAM,WAAW,GAAG,KAAK,CAAC,aAAa,CAA8B,SAAS,CAAC,CAAC;AAChF,MAAM,CAAC,MAAM,mBAAmB,GAAG,WAAW,CAAC,QAAQ,CAAC;AAExD,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;AAE5D,MAAM,UAAU,iBAAiB;IAC/B,MAAM,YAAY,GAAG,cAAc,EAAE,CAAC;IACtC,MAAM,UAAU,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;IAExC,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CAAC,OAAO,GAAG,YAAY,CAAC;IACpC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAEnB,OAAO,UAAU,CAAC;AACpB,CAAC;AAyCD,MAAM,iBAAiB,GAAG,KAAK,CAAC,aAAa,CAE3C,SAAS,CAAC,CAAC;AAEb,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;AACxE,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,QAAQ,CAAC;AAEpE,mDAAmD;AACnD,MAAM,UAAU,uBAAuB;IACrC,MAAM,YAAY,GAAG,oBAAoB,EAAE,CAAC;IAC5C,MAAM,UAAU,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;IAExC,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CAAC,OAAO,GAAG,YAAY,CAAC;IACpC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAEnB,OAAO,UAAU,CAAC;AACpB,CAAC;AASD,MAAM,iBAAiB,GAAG,KAAK,CAAC,aAAa,CAE3C,SAAS,CAAC,CAAC;AAEb,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;AACxE,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,QAAQ,CAAC"}