ngx-wapp-components 3.2.11 → 3.2.12-alpha.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-wapp-components",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.12-alpha.2",
|
|
4
4
|
"description": "This is a Wapping reusable component library published by Wapping.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code",
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"type": "module"
|
|
63
|
-
}
|
|
63
|
+
}
|
|
@@ -1806,6 +1806,11 @@ declare class WFilterPanelComponent implements OnInit {
|
|
|
1806
1806
|
basicQueryBuilderObject: QueryBuilderComponent;
|
|
1807
1807
|
periodSelectComponent: WPeriodSelectFieldComponent;
|
|
1808
1808
|
constructor(formBuilder: FormBuilder, apiService: ApiService, sessionStorage: SessionStorageService, localStorage: LocalStorageService);
|
|
1809
|
+
private cloneDeep;
|
|
1810
|
+
private hasStoredQueryValues;
|
|
1811
|
+
private buildQueryFromStored;
|
|
1812
|
+
private buildQueryFromControls;
|
|
1813
|
+
private normalizeQueryForEmit;
|
|
1809
1814
|
ngOnInit(): void;
|
|
1810
1815
|
initQueryBuilderControls(): void;
|
|
1811
1816
|
nullableSelectPlaceholder(rule: Rule$1, options: NullableSelectOption[]): string;
|
|
@@ -1814,7 +1819,7 @@ declare class WFilterPanelComponent implements OnInit {
|
|
|
1814
1819
|
updateNullableElements(elements: {
|
|
1815
1820
|
[key: string]: any;
|
|
1816
1821
|
}): void;
|
|
1817
|
-
onSearchClicked(): void;
|
|
1822
|
+
onSearchClicked(source?: 'init-storage' | 'init-default' | 'user-click', preBuiltQuery?: QueryResults): void;
|
|
1818
1823
|
setNoFiltersQueryType(queries: any): Promise<unknown>;
|
|
1819
1824
|
onClearClicked(): void;
|
|
1820
1825
|
clearPeriodSelectComponent(): void;
|