@unifylib/ui-lib 1.1.49 → 1.1.51
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/esm2022/lib/components/base-form-canvas/base-form-canvas.component.mjs +13 -8
- package/esm2022/lib/components/base-table/base-table.component.mjs +16 -3
- package/esm2022/lib/components/snackbar-static/snackbar-static.component.mjs +3 -3
- package/fesm2022/iq-ui-lib.mjs +23 -116
- package/fesm2022/iq-ui-lib.mjs.map +1 -1
- package/fesm2022/unifylib-ui-lib.mjs +28 -11
- package/fesm2022/unifylib-ui-lib.mjs.map +1 -1
- package/lib/components/base-form-canvas/base-form-canvas.component.d.ts +1 -0
- package/lib/components/base-table/base-table.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -95,6 +95,7 @@ export declare class BaseFormCanvasComponent implements OnInit, OnChanges, OnDes
|
|
|
95
95
|
friendlyName(fullPath: string, subPath: string, item: string): string;
|
|
96
96
|
showValue(defaults: any, field: any): string;
|
|
97
97
|
showError(prop: string): boolean;
|
|
98
|
+
clearFieldValue(prop: string): void;
|
|
98
99
|
ngOnDestroy(): void;
|
|
99
100
|
private extractLables;
|
|
100
101
|
private calcFlexSize;
|
|
@@ -145,6 +145,7 @@ export declare class BaseTableComponent extends BaseUtils implements OnInit, OnC
|
|
|
145
145
|
filters: FieldFilter[];
|
|
146
146
|
searchStr: string;
|
|
147
147
|
}): void;
|
|
148
|
+
private resetPaginationForFilterChange;
|
|
148
149
|
applyPendingFilters(): void;
|
|
149
150
|
handleFilterEmpty($event: boolean): void;
|
|
150
151
|
resetData($event: boolean): void;
|