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.
- package/fesm2022/ets-fe-ng-sdk.mjs +2 -0
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/number-format.service.d.ts +1 -1
- package/lib/Services/utility.service.d.ts +2 -2
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/page-template/page-template.component.d.ts +2 -0
- package/lib/Shared/components/phone-number/phone-number.component.d.ts +4 -4
- package/lib/Shared/components/table/table-https/table-https.component.d.ts +3 -3
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +3 -3
|
@@ -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 */
|