@acorex/platform 21.0.0-next.67 → 21.0.0-next.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "21.0.0-next.67",
3
+ "version": "21.0.0-next.70",
4
4
  "peerDependencies": {
5
5
  "@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
6
6
  "@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
@@ -537,6 +537,16 @@ interface AXPEntityPage {
537
537
  * Permissions required to view this page
538
538
  */
539
539
  permissions?: string[];
540
+ /**
541
+ * Controls inclusion on the host entity master **create** / **update** form wizard.
542
+ * Omitted flags behave as **false** (opt-in with `true`), same as `tab-list` / `page-list` related entities.
543
+ */
544
+ appearOn?: {
545
+ /** Include as a wizard step on host create form. */
546
+ create?: boolean;
547
+ /** Include as a wizard step on host update form. */
548
+ update?: boolean;
549
+ };
540
550
  options?: Record<string, any>;
541
551
  }
542
552
  interface AXPCategoryEntity {