tin-spa 20.16.54 → 20.16.57
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/core/index.d.ts +5 -0
- package/fesm2022/{tin-spa-accounting.module-DafMM8bL.mjs → tin-spa-accounting.module-kdf7TjzH.mjs} +2 -2
- package/fesm2022/{tin-spa-accounting.module-DafMM8bL.mjs.map → tin-spa-accounting.module-kdf7TjzH.mjs.map} +1 -1
- package/fesm2022/{tin-spa-agent-page.component-BG8NKMWo.mjs → tin-spa-agent-page.component-CQpktUoA.mjs} +2 -2
- package/fesm2022/{tin-spa-agent-page.component-BG8NKMWo.mjs.map → tin-spa-agent-page.component-CQpktUoA.mjs.map} +1 -1
- package/fesm2022/{tin-spa-agent.component-EpAu7Lhb.mjs → tin-spa-agent.component-CIF5LvrD.mjs} +2 -2
- package/fesm2022/{tin-spa-agent.component-EpAu7Lhb.mjs.map → tin-spa-agent.component-CIF5LvrD.mjs.map} +1 -1
- package/fesm2022/{tin-spa-assets.module-DkP8T2hm.mjs → tin-spa-assets.module-Bmupe2MV.mjs} +2 -2
- package/fesm2022/{tin-spa-assets.module-DkP8T2hm.mjs.map → tin-spa-assets.module-Bmupe2MV.mjs.map} +1 -1
- package/fesm2022/tin-spa-core.mjs.map +1 -1
- package/fesm2022/{tin-spa-general-erp.module-xZV__cBd.mjs → tin-spa-general-erp.module-Cvf8mvMU.mjs} +2 -2
- package/fesm2022/{tin-spa-general-erp.module-xZV__cBd.mjs.map → tin-spa-general-erp.module-Cvf8mvMU.mjs.map} +1 -1
- package/fesm2022/{tin-spa-hr.module-DJg-9u0Q.mjs → tin-spa-hr.module-UpR5uqOH.mjs} +2 -2
- package/fesm2022/{tin-spa-hr.module-DJg-9u0Q.mjs.map → tin-spa-hr.module-UpR5uqOH.mjs.map} +1 -1
- package/fesm2022/{tin-spa-inventory.module-ue4V6shh.mjs → tin-spa-inventory.module-aLxT7QXx.mjs} +2 -2
- package/fesm2022/{tin-spa-inventory.module-ue4V6shh.mjs.map → tin-spa-inventory.module-aLxT7QXx.mjs.map} +1 -1
- package/fesm2022/{tin-spa-loans.module-CSCszF9N.mjs → tin-spa-loans.module-D7pEV9Ae.mjs} +2 -2
- package/fesm2022/{tin-spa-loans.module-CSCszF9N.mjs.map → tin-spa-loans.module-D7pEV9Ae.mjs.map} +1 -1
- package/fesm2022/{tin-spa-manufacturing.module-xNhUuWHC.mjs → tin-spa-manufacturing.module-RH8cmmW_.mjs} +2 -2
- package/fesm2022/{tin-spa-manufacturing.module-xNhUuWHC.mjs.map → tin-spa-manufacturing.module-RH8cmmW_.mjs.map} +1 -1
- package/fesm2022/{tin-spa-payroll.module-zWYKDH27.mjs → tin-spa-payroll.module-4nToOUr9.mjs} +2 -2
- package/fesm2022/{tin-spa-payroll.module-zWYKDH27.mjs.map → tin-spa-payroll.module-4nToOUr9.mjs.map} +1 -1
- package/fesm2022/{tin-spa-purchasing.module-Dcqjduuh.mjs → tin-spa-purchasing.module-CsJBMl2X.mjs} +2 -2
- package/fesm2022/{tin-spa-purchasing.module-Dcqjduuh.mjs.map → tin-spa-purchasing.module-CsJBMl2X.mjs.map} +1 -1
- package/fesm2022/{tin-spa-sales.module-BDc523ea.mjs → tin-spa-sales.module-C2xkwSPw.mjs} +2 -2
- package/fesm2022/{tin-spa-sales.module-BDc523ea.mjs.map → tin-spa-sales.module-C2xkwSPw.mjs.map} +1 -1
- package/fesm2022/{tin-spa-tenancy-erp.module-BlotvMY-.mjs → tin-spa-tenancy-erp.module-B48T8mF9.mjs} +2 -2
- package/fesm2022/{tin-spa-tenancy-erp.module-BlotvMY-.mjs.map → tin-spa-tenancy-erp.module-B48T8mF9.mjs.map} +1 -1
- package/fesm2022/{tin-spa-tin-spa-BM0vyL87.mjs → tin-spa-tin-spa-VTj9tE7B.mjs} +397 -211
- package/fesm2022/tin-spa-tin-spa-VTj9tE7B.mjs.map +1 -0
- package/fesm2022/tin-spa.mjs +1 -1
- package/index.d.ts +25 -4
- package/package.json +1 -1
- package/fesm2022/tin-spa-tin-spa-BM0vyL87.mjs.map +0 -1
package/core/index.d.ts
CHANGED
|
@@ -687,6 +687,9 @@ interface ViewField {
|
|
|
687
687
|
label?: string | boolean;
|
|
688
688
|
hidden?: VisibilityValue;
|
|
689
689
|
visible?: VisibilityValue;
|
|
690
|
+
display?: (data: any) => any;
|
|
691
|
+
suffix?: string;
|
|
692
|
+
hideZero?: boolean;
|
|
690
693
|
}
|
|
691
694
|
interface ViewConfig {
|
|
692
695
|
fields?: ViewField[];
|
|
@@ -776,6 +779,8 @@ interface RowField {
|
|
|
776
779
|
label?: string | boolean;
|
|
777
780
|
hidden?: VisibilityValue;
|
|
778
781
|
visible?: VisibilityValue;
|
|
782
|
+
suffix?: string;
|
|
783
|
+
hideZero?: boolean;
|
|
779
784
|
}
|
|
780
785
|
interface RowConfig {
|
|
781
786
|
fields: RowField[];
|
package/fesm2022/{tin-spa-accounting.module-DafMM8bL.mjs → tin-spa-accounting.module-kdf7TjzH.mjs}
RENAMED
|
@@ -4,7 +4,7 @@ import * as i1$2 from '@angular/router';
|
|
|
4
4
|
import { RouterModule } from '@angular/router';
|
|
5
5
|
import * as i1 from 'tin-spa/core';
|
|
6
6
|
import { AccountingService, MessageService, ApiErrorService, PurchasingService, HttpService, DataServiceLib, ReceiptDialogComponent } from 'tin-spa/core';
|
|
7
|
-
import { T as TilesComponent, a as TabsComponent, P as PageComponent, D as DateComponent, b as TableComponent, S as SelectLiteComponent, c as TinSpaModule, C as ChartsComponent, d as TenantTransferService, f as featureGuard, e as SpaAdminModule } from './tin-spa-tin-spa-
|
|
7
|
+
import { T as TilesComponent, a as TabsComponent, P as PageComponent, D as DateComponent, b as TableComponent, S as SelectLiteComponent, c as TinSpaModule, C as ChartsComponent, d as TenantTransferService, f as featureGuard, e as SpaAdminModule } from './tin-spa-tin-spa-VTj9tE7B.mjs';
|
|
8
8
|
import * as i1$1 from '@angular/common';
|
|
9
9
|
import { CommonModule } from '@angular/common';
|
|
10
10
|
import * as i3 from '@angular/material/button';
|
|
@@ -2243,4 +2243,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
2243
2243
|
}] });
|
|
2244
2244
|
|
|
2245
2245
|
export { AccountingModule };
|
|
2246
|
-
//# sourceMappingURL=tin-spa-accounting.module-
|
|
2246
|
+
//# sourceMappingURL=tin-spa-accounting.module-kdf7TjzH.mjs.map
|