@paperless/angular 0.1.0-alpha.243 → 0.1.0-alpha.245
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/esm2020/lib/modules/table/index.mjs +2 -1
- package/esm2020/lib/modules/table/utils.mjs +23 -0
- package/fesm2015/paperless-angular.mjs +24 -1
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +24 -1
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/index.d.ts +1 -0
- package/lib/modules/table/utils.d.ts +10 -0
- package/package.json +1 -1
|
@@ -2881,6 +2881,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
2881
2881
|
}]
|
|
2882
2882
|
}] });
|
|
2883
2883
|
|
|
2884
|
+
const createFormFilters = (values, quickFilters, quickFilterKey) => {
|
|
2885
|
+
const filters = [];
|
|
2886
|
+
let quickFilter = null;
|
|
2887
|
+
for (const key of Object.keys(values)) {
|
|
2888
|
+
const value = values[key];
|
|
2889
|
+
if (key !== quickFilterKey && !value?.length) {
|
|
2890
|
+
continue;
|
|
2891
|
+
}
|
|
2892
|
+
if (key === quickFilterKey) {
|
|
2893
|
+
quickFilter = quickFilters.find((f) => f.value === value);
|
|
2894
|
+
continue;
|
|
2895
|
+
}
|
|
2896
|
+
filters.push({
|
|
2897
|
+
key,
|
|
2898
|
+
value,
|
|
2899
|
+
});
|
|
2900
|
+
}
|
|
2901
|
+
return {
|
|
2902
|
+
filters,
|
|
2903
|
+
quickFilter,
|
|
2904
|
+
};
|
|
2905
|
+
};
|
|
2906
|
+
|
|
2884
2907
|
const SLIDE_IN_BOTTOM_OUT_TOP = trigger('pSlideInBottomOutTop', [
|
|
2885
2908
|
transition(':enter', [
|
|
2886
2909
|
style({ transform: 'translateY(50%)', opacity: 0 }),
|
|
@@ -3146,5 +3169,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
3146
3169
|
* Generated bundle index. Do not edit.
|
|
3147
3170
|
*/
|
|
3148
3171
|
|
|
3149
|
-
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CustomCurrencyPipe, CustomDatePipe, DIRECTIVES$1 as DIRECTIVES, FormBaseComponent, MODULES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIPES, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, SafePipe, SelectDirective, StencilModule, TABLE_COMPONENTS, TABLE_DIRECTIVES, TOAST_COMPONENTS, TOAST_DIRECTIVES, TOAST_SERVICES, Table, TableCell, TableColumn, TableDirective, TableFilterModalDirective, TableFooterDirective, TableHeaderDirective, TableModule, TableNgxDirective, ToastContainer, ToastDirective, ToastModule, ToastService, ToastVariants };
|
|
3172
|
+
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CustomCurrencyPipe, CustomDatePipe, DIRECTIVES$1 as DIRECTIVES, FormBaseComponent, MODULES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIPES, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, SafePipe, SelectDirective, StencilModule, TABLE_COMPONENTS, TABLE_DIRECTIVES, TOAST_COMPONENTS, TOAST_DIRECTIVES, TOAST_SERVICES, Table, TableCell, TableColumn, TableDirective, TableFilterModalDirective, TableFooterDirective, TableHeaderDirective, TableModule, TableNgxDirective, ToastContainer, ToastDirective, ToastModule, ToastService, ToastVariants, createFormFilters };
|
|
3150
3173
|
//# sourceMappingURL=paperless-angular.mjs.map
|