cloud-ide-fees 0.0.11 → 0.0.13
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/cloud-ide-fees.mjs +190 -33
- package/fesm2022/cloud-ide-fees.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1028,6 +1028,7 @@ declare class TemplateDesignerComponent extends CideLytSharedWrapperComponent im
|
|
|
1028
1028
|
private readonly confirmationService;
|
|
1029
1029
|
private readonly destroyRef;
|
|
1030
1030
|
private readonly receiptTemplateService;
|
|
1031
|
+
private readonly cdr;
|
|
1031
1032
|
htmlEditorRef?: ElementRef<HTMLTextAreaElement>;
|
|
1032
1033
|
templateForm: FormGroup;
|
|
1033
1034
|
readonly activeCategory: _angular_core.WritableSignal<string>;
|
|
@@ -1266,6 +1267,10 @@ declare class FeeDetailsViewerComponent implements OnInit, OnDestroy {
|
|
|
1266
1267
|
private processFeeData;
|
|
1267
1268
|
private processFeeAssignmentData;
|
|
1268
1269
|
private processFeeItemData;
|
|
1270
|
+
/**
|
|
1271
|
+
* Helper method to ensure a value is a Date object
|
|
1272
|
+
*/
|
|
1273
|
+
private ensureDate;
|
|
1269
1274
|
private calculateAndSetFeeDetails;
|
|
1270
1275
|
onClose(): void;
|
|
1271
1276
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeeDetailsViewerComponent, never>;
|