ets-fe-ng-sdk 19.0.97 → 19.0.99

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.
@@ -19195,6 +19195,8 @@ class PageTemplateComponent {
19195
19195
  this.isShow = computed(() => this.uS.pageS.isShow(this.route, this.overridePageTypeSignal()));
19196
19196
  /** Signal computed to determine if the current page is in show or edit mode */
19197
19197
  this.isShowOrEdit = computed(() => this.isEdit() || this.isShow());
19198
+ /** Signal computed to determine if the current page is in show or edit or clone mode */
19199
+ this.isShowOrEditOrClone = computed(() => this.isEdit() || this.isShow() || this.isClone());
19198
19200
  /** The current activated route */
19199
19201
  this.route = inject(ActivatedRoute);
19200
19202
  /** Utility service instance */