@one-paragon/angular-utilities 0.1.32 → 0.1.34
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/action-state/action-state-spinner/action-state-spinner.component.d.ts +12 -12
- package/action-state/action-state-ui/action-state-ui.module.d.ts +9 -9
- package/action-state/index.d.ts +4 -4
- package/action-state/ngrx-ext/ngrx-ext.module.d.ts +8 -8
- package/action-state/ngrx.d.ts +31 -31
- package/esm2022/action-state/action-state-spinner/action-state-spinner.component.mjs +24 -0
- package/esm2022/action-state/action-state-ui/action-state-ui.module.mjs +29 -0
- package/{esm2020 → esm2022}/action-state/index.mjs +7 -7
- package/esm2022/action-state/ngrx-ext/ngrx-ext.module.mjs +24 -0
- package/{esm2020 → esm2022}/action-state/ngrx.mjs +41 -41
- package/esm2022/http-request-state/HttpRequestStateFactory.mjs +28 -0
- package/esm2022/http-request-state/HttpRequestStateStore.mjs +98 -0
- package/esm2022/http-request-state/directives/HttpStateDirectiveBase.mjs +35 -0
- package/esm2022/http-request-state/directives/http-error-state-directive.mjs +30 -0
- package/esm2022/http-request-state/directives/http-inProgress-state-directive.mjs +30 -0
- package/esm2022/http-request-state/directives/http-notStarted-state-directive.mjs +30 -0
- package/esm2022/http-request-state/directives/http-success-state-directive.mjs +35 -0
- package/{esm2020 → esm2022}/http-request-state/directives/index.mjs +5 -5
- package/esm2022/http-request-state/directives/request-state-directive.mjs +61 -0
- package/{esm2020 → esm2022}/http-request-state/helpers.mjs +21 -21
- package/{esm2020 → esm2022}/http-request-state/http-request-state.mjs +38 -38
- package/esm2022/http-request-state/http-state-module.mjs +42 -0
- package/{esm2020 → esm2022}/http-request-state/index.mjs +6 -6
- package/{esm2020 → esm2022}/http-request-state/rxjs/getRequestorBody.mjs +3 -3
- package/{esm2020 → esm2022}/http-request-state/rxjs/getRequestorState.mjs +2 -2
- package/{esm2020 → esm2022}/http-request-state/rxjs/index.mjs +4 -4
- package/{esm2020 → esm2022}/http-request-state/rxjs/tapError.mjs +11 -11
- package/{esm2020 → esm2022}/http-request-state/rxjs/tapSuccess.mjs +11 -11
- package/{esm2020 → esm2022}/http-request-state/types.mjs +15 -15
- package/{esm2020 → esm2022}/ngrx/actionable-selector.mjs +74 -74
- package/{esm2020 → esm2022}/ngrx/index.mjs +1 -1
- package/{esm2020 → esm2022}/one-paragon-angular-utilities.mjs +4 -4
- package/{esm2020 → esm2022}/public-api.mjs +18 -18
- package/{esm2020 → esm2022}/rxjs/defaultShareReplay.mjs +6 -6
- package/{esm2020 → esm2022}/rxjs/index.mjs +4 -4
- package/{esm2020 → esm2022}/rxjs/mapError.mjs +7 -7
- package/{esm2020 → esm2022}/rxjs/rxjs-operators.mjs +90 -90
- package/{esm2020 → esm2022}/rxjs/subjectifier.mjs +14 -14
- package/{esm2020 → esm2022}/table-builder/classes/DefaultSettings.mjs +5 -5
- package/{esm2020 → esm2022}/table-builder/classes/GenericTableDataSource.mjs +12 -12
- package/{esm2020 → esm2022}/table-builder/classes/MatTableObservableDataSource.mjs +20 -20
- package/{esm2020 → esm2022}/table-builder/classes/TableBuilderConfig.mjs +2 -2
- package/{esm2020 → esm2022}/table-builder/classes/TableState.mjs +31 -31
- package/{esm2020 → esm2022}/table-builder/classes/data-filter.mjs +25 -25
- package/{esm2020 → esm2022}/table-builder/classes/display-col.mjs +1 -1
- package/{esm2020 → esm2022}/table-builder/classes/filter-info.mjs +72 -72
- package/{esm2020 → esm2022}/table-builder/classes/table-builder-general-settings.mjs +67 -67
- package/{esm2020 → esm2022}/table-builder/classes/table-builder.mjs +75 -75
- package/esm2022/table-builder/classes/table-store.mjs +293 -0
- package/esm2022/table-builder/components/array-column.component.mjs +58 -0
- package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +113 -0
- package/esm2022/table-builder/components/date-filter/date-filter.component.mjs +26 -0
- package/esm2022/table-builder/components/date-time-filter/date-time-filter.component.mjs +23 -0
- package/esm2022/table-builder/components/filter/filter.component.mjs +55 -0
- package/esm2022/table-builder/components/filter/in-list/in-list-filter.component.mjs +92 -0
- package/esm2022/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +46 -0
- package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +203 -0
- package/esm2022/table-builder/components/generic-table/paginator.component.mjs +75 -0
- package/esm2022/table-builder/components/group-by-list/group-by-list.component.mjs +23 -0
- package/esm2022/table-builder/components/header-menu/header-menu.component.mjs +92 -0
- package/esm2022/table-builder/components/in-filter/in-filter.component.mjs +64 -0
- package/{esm2020 → esm2022}/table-builder/components/index.mjs +9 -9
- package/esm2022/table-builder/components/initialization-component/initialization-component.mjs +34 -0
- package/{esm2020 → esm2022}/table-builder/components/link-column.component.mjs +32 -31
- package/esm2022/table-builder/components/number-filter/number-filter.component.mjs +28 -0
- package/esm2022/table-builder/components/sort-menu/sort-menu.component-store.mjs +43 -0
- package/{esm2020 → esm2022}/table-builder/components/sort-menu/sort-menu.component.mjs +76 -75
- package/esm2022/table-builder/components/table-container/table-container.mjs +323 -0
- package/esm2022/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +43 -0
- package/esm2022/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +31 -0
- package/esm2022/table-builder/components/table-container-filter/table-wrapper-filter-store.mjs +26 -0
- package/esm2022/table-builder/directives/custom-cell-directive.mjs +60 -0
- package/{esm2020 → esm2022}/table-builder/directives/index.mjs +5 -5
- package/esm2022/table-builder/directives/multi-sort.directive.mjs +43 -0
- package/esm2022/table-builder/directives/resize-column.directive.mjs +87 -0
- package/esm2022/table-builder/directives/table-wrapper.directive.mjs +27 -0
- package/esm2022/table-builder/directives/tb-filter.directive.mjs +413 -0
- package/{esm2020 → esm2022}/table-builder/enums/filterTypes.mjs +71 -71
- package/{esm2020 → esm2022}/table-builder/functions/boolean-filter-function.mjs +9 -9
- package/{esm2020 → esm2022}/table-builder/functions/date-filter-function.mjs +57 -57
- package/{esm2020 → esm2022}/table-builder/functions/download-data.mjs +11 -11
- package/{esm2020 → esm2022}/table-builder/functions/null-filter-function.mjs +7 -7
- package/{esm2020 → esm2022}/table-builder/functions/number-filter-function.mjs +31 -31
- package/{esm2020 → esm2022}/table-builder/functions/sort-data-function.mjs +4 -4
- package/{esm2020 → esm2022}/table-builder/functions/string-filter-function.mjs +40 -40
- package/{esm2020 → esm2022}/table-builder/interfaces/ColumnInfo.mjs +1 -1
- package/{esm2020 → esm2022}/table-builder/interfaces/dictionary.mjs +1 -1
- package/{esm2020 → esm2022}/table-builder/interfaces/report-def.mjs +34 -34
- package/esm2022/table-builder/material.module.mjs +208 -0
- package/{esm2020 → esm2022}/table-builder/ngrx/actions.mjs +4 -4
- package/esm2022/table-builder/ngrx/effects.mjs +49 -0
- package/{esm2020 → esm2022}/table-builder/ngrx/reducer.mjs +51 -51
- package/{esm2020 → esm2022}/table-builder/ngrx/selectors.mjs +23 -23
- package/esm2022/table-builder/pipes/column-total.pipe.mjs +21 -0
- package/esm2022/table-builder/pipes/format-filter-type.pipe.mjs +19 -0
- package/esm2022/table-builder/pipes/format-filter-value.pipe.mjs +46 -0
- package/esm2022/table-builder/pipes/key-display.mjs +21 -0
- package/esm2022/table-builder/services/export-to-csv.service.mjs +89 -0
- package/{esm2020 → esm2022}/table-builder/services/link-creator.service.mjs +41 -41
- package/esm2022/table-builder/services/table-template-service.mjs +45 -0
- package/esm2022/table-builder/services/transform-creator.mjs +76 -0
- package/esm2022/table-builder/table-builder.module.mjs +208 -0
- package/esm2022/utilities/directives/auto-focus.directive.mjs +27 -0
- package/esm2022/utilities/directives/clickEmitterDirective.mjs +22 -0
- package/esm2022/utilities/directives/clickSubject.mjs +28 -0
- package/esm2022/utilities/directives/conditional-classes.directive.mjs +36 -0
- package/esm2022/utilities/directives/dialog-service.mjs +26 -0
- package/esm2022/utilities/directives/dialog.mjs +139 -0
- package/esm2022/utilities/directives/mat-toggle-group-directive.mjs +60 -0
- package/esm2022/utilities/directives/prevent-enter.directive.mjs +20 -0
- package/esm2022/utilities/directives/stop-propagation.directive.mjs +26 -0
- package/esm2022/utilities/directives/styler.mjs +27 -0
- package/esm2022/utilities/directives/trim-whitespace.directive.mjs +30 -0
- package/{esm2020 → esm2022}/utilities/index.mjs +15 -15
- package/esm2022/utilities/module.mjs +92 -0
- package/esm2022/utilities/pipes/function.pipe.mjs +22 -0
- package/esm2022/utilities/pipes/phone.pipe.mjs +21 -0
- package/esm2022/utilities/pipes/space-case.pipes.mjs +29 -0
- package/{fesm2020 → fesm2022}/one-paragon-angular-utilities.mjs +4398 -4398
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -0
- package/http-request-state/HttpRequestStateFactory.d.ts +14 -14
- package/http-request-state/HttpRequestStateStore.d.ts +48 -48
- package/http-request-state/directives/HttpStateDirectiveBase.d.ts +16 -16
- package/http-request-state/directives/http-error-state-directive.d.ts +12 -12
- package/http-request-state/directives/http-inProgress-state-directive.d.ts +12 -12
- package/http-request-state/directives/http-notStarted-state-directive.d.ts +12 -12
- package/http-request-state/directives/http-success-state-directive.d.ts +21 -21
- package/http-request-state/directives/index.d.ts +5 -5
- package/http-request-state/directives/request-state-directive.d.ts +35 -35
- package/http-request-state/helpers.d.ts +9 -9
- package/http-request-state/http-request-state.d.ts +12 -12
- package/http-request-state/http-state-module.d.ts +11 -11
- package/http-request-state/index.d.ts +6 -6
- package/http-request-state/rxjs/getRequestorBody.d.ts +3 -3
- package/http-request-state/rxjs/getRequestorState.d.ts +3 -3
- package/http-request-state/rxjs/index.d.ts +4 -4
- package/http-request-state/rxjs/tapError.d.ts +3 -3
- package/http-request-state/rxjs/tapSuccess.d.ts +3 -3
- package/http-request-state/types.d.ts +36 -36
- package/index.d.ts +5 -5
- package/ngrx/actionable-selector.d.ts +15 -15
- package/ngrx/index.d.ts +1 -1
- package/package.json +13 -19
- package/public-api.d.ts +15 -15
- package/rxjs/defaultShareReplay.d.ts +2 -2
- package/rxjs/index.d.ts +4 -4
- package/rxjs/mapError.d.ts +2 -2
- package/rxjs/rxjs-operators.d.ts +12 -12
- package/rxjs/subjectifier.d.ts +9 -9
- package/table-builder/classes/DefaultSettings.d.ts +9 -9
- package/table-builder/classes/GenericTableDataSource.d.ts +8 -8
- package/table-builder/classes/MatTableObservableDataSource.d.ts +9 -9
- package/table-builder/classes/TableBuilderConfig.d.ts +20 -20
- package/table-builder/classes/TableState.d.ts +46 -46
- package/table-builder/classes/data-filter.d.ts +9 -9
- package/table-builder/classes/display-col.d.ts +5 -5
- package/table-builder/classes/filter-info.d.ts +40 -40
- package/table-builder/classes/table-builder-general-settings.d.ts +43 -43
- package/table-builder/classes/table-builder.d.ts +14 -14
- package/table-builder/classes/table-store.d.ts +114 -114
- package/table-builder/components/array-column.component.d.ts +14 -14
- package/table-builder/components/column-builder/column-builder.component.d.ts +50 -50
- package/table-builder/components/date-filter/date-filter.component.d.ts +10 -10
- package/table-builder/components/date-time-filter/date-time-filter.component.d.ts +10 -10
- package/table-builder/components/filter/filter.component.d.ts +371 -371
- package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +27 -27
- package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +16 -16
- package/table-builder/components/generic-table/generic-table.component.d.ts +73 -73
- package/table-builder/components/generic-table/paginator.component.d.ts +28 -28
- package/table-builder/components/group-by-list/group-by-list.component.d.ts +10 -10
- package/table-builder/components/header-menu/header-menu.component.d.ts +25 -25
- package/table-builder/components/in-filter/in-filter.component.d.ts +21 -21
- package/table-builder/components/index.d.ts +9 -9
- package/table-builder/components/initialization-component/initialization-component.d.ts +12 -12
- package/table-builder/components/link-column.component.d.ts +17 -17
- package/table-builder/components/number-filter/number-filter.component.d.ts +12 -12
- package/table-builder/components/sort-menu/sort-menu.component-store.d.ts +24 -24
- package/table-builder/components/sort-menu/sort-menu.component.d.ts +25 -25
- package/table-builder/components/table-container/table-container.d.ts +68 -68
- package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +17 -17
- package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +14 -14
- package/table-builder/components/table-container-filter/table-wrapper-filter-store.d.ts +14 -14
- package/table-builder/directives/custom-cell-directive.d.ts +19 -19
- package/table-builder/directives/index.d.ts +5 -5
- package/table-builder/directives/multi-sort.directive.d.ts +11 -11
- package/table-builder/directives/resize-column.directive.d.ts +43 -43
- package/table-builder/directives/table-wrapper.directive.d.ts +11 -11
- package/table-builder/directives/tb-filter.directive.d.ts +120 -120
- package/table-builder/enums/filterTypes.d.ts +37 -37
- package/table-builder/functions/boolean-filter-function.d.ts +3 -3
- package/table-builder/functions/date-filter-function.d.ts +4 -4
- package/table-builder/functions/download-data.d.ts +1 -1
- package/table-builder/functions/null-filter-function.d.ts +2 -2
- package/table-builder/functions/number-filter-function.d.ts +4 -4
- package/table-builder/functions/sort-data-function.d.ts +3 -3
- package/table-builder/functions/string-filter-function.d.ts +7 -7
- package/table-builder/interfaces/ColumnInfo.d.ts +6 -6
- package/table-builder/interfaces/dictionary.d.ts +3 -3
- package/table-builder/interfaces/report-def.d.ts +142 -142
- package/table-builder/material.module.d.ts +32 -32
- package/table-builder/ngrx/actions.d.ts +23 -23
- package/table-builder/ngrx/effects.d.ts +19 -19
- package/table-builder/ngrx/reducer.d.ts +15 -15
- package/table-builder/ngrx/selectors.d.ts +22 -22
- package/table-builder/pipes/column-total.pipe.d.ts +8 -8
- package/table-builder/pipes/format-filter-type.pipe.d.ts +8 -8
- package/table-builder/pipes/format-filter-value.pipe.d.ts +14 -14
- package/table-builder/pipes/key-display.d.ts +11 -11
- package/table-builder/services/export-to-csv.service.d.ts +22 -22
- package/table-builder/services/link-creator.service.d.ts +12 -12
- package/table-builder/services/table-template-service.d.ts +14 -14
- package/table-builder/services/transform-creator.d.ts +19 -19
- package/table-builder/table-builder.module.d.ts +46 -46
- package/utilities/directives/auto-focus.directive.d.ts +10 -10
- package/utilities/directives/clickEmitterDirective.d.ts +7 -7
- package/utilities/directives/clickSubject.d.ts +9 -9
- package/utilities/directives/conditional-classes.directive.d.ts +14 -14
- package/utilities/directives/dialog-service.d.ts +10 -10
- package/utilities/directives/dialog.d.ts +46 -46
- package/utilities/directives/mat-toggle-group-directive.d.ts +21 -21
- package/utilities/directives/prevent-enter.directive.d.ts +6 -6
- package/utilities/directives/stop-propagation.directive.d.ts +7 -7
- package/utilities/directives/styler.d.ts +9 -9
- package/utilities/directives/trim-whitespace.directive.d.ts +9 -9
- package/utilities/index.d.ts +15 -15
- package/utilities/module.d.ts +19 -19
- package/utilities/pipes/function.pipe.d.ts +7 -7
- package/utilities/pipes/phone.pipe.d.ts +7 -7
- package/utilities/pipes/space-case.pipes.d.ts +17 -17
- package/esm2020/action-state/action-state-spinner/action-state-spinner.component.mjs +0 -23
- package/esm2020/action-state/action-state-ui/action-state-ui.module.mjs +0 -28
- package/esm2020/action-state/ngrx-ext/ngrx-ext.module.mjs +0 -23
- package/esm2020/http-request-state/HttpRequestStateFactory.mjs +0 -27
- package/esm2020/http-request-state/HttpRequestStateStore.mjs +0 -97
- package/esm2020/http-request-state/directives/HttpStateDirectiveBase.mjs +0 -34
- package/esm2020/http-request-state/directives/http-error-state-directive.mjs +0 -29
- package/esm2020/http-request-state/directives/http-inProgress-state-directive.mjs +0 -29
- package/esm2020/http-request-state/directives/http-notStarted-state-directive.mjs +0 -29
- package/esm2020/http-request-state/directives/http-success-state-directive.mjs +0 -34
- package/esm2020/http-request-state/directives/request-state-directive.mjs +0 -60
- package/esm2020/http-request-state/http-state-module.mjs +0 -41
- package/esm2020/table-builder/classes/table-store.mjs +0 -292
- package/esm2020/table-builder/components/array-column.component.mjs +0 -57
- package/esm2020/table-builder/components/column-builder/column-builder.component.mjs +0 -112
- package/esm2020/table-builder/components/date-filter/date-filter.component.mjs +0 -25
- package/esm2020/table-builder/components/date-time-filter/date-time-filter.component.mjs +0 -22
- package/esm2020/table-builder/components/filter/filter.component.mjs +0 -54
- package/esm2020/table-builder/components/filter/in-list/in-list-filter.component.mjs +0 -91
- package/esm2020/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +0 -45
- package/esm2020/table-builder/components/generic-table/generic-table.component.mjs +0 -202
- package/esm2020/table-builder/components/generic-table/paginator.component.mjs +0 -74
- package/esm2020/table-builder/components/group-by-list/group-by-list.component.mjs +0 -22
- package/esm2020/table-builder/components/header-menu/header-menu.component.mjs +0 -91
- package/esm2020/table-builder/components/in-filter/in-filter.component.mjs +0 -63
- package/esm2020/table-builder/components/initialization-component/initialization-component.mjs +0 -33
- package/esm2020/table-builder/components/number-filter/number-filter.component.mjs +0 -27
- package/esm2020/table-builder/components/sort-menu/sort-menu.component-store.mjs +0 -42
- package/esm2020/table-builder/components/table-container/table-container.mjs +0 -322
- package/esm2020/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +0 -42
- package/esm2020/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +0 -30
- package/esm2020/table-builder/components/table-container-filter/table-wrapper-filter-store.mjs +0 -25
- package/esm2020/table-builder/directives/custom-cell-directive.mjs +0 -59
- package/esm2020/table-builder/directives/multi-sort.directive.mjs +0 -42
- package/esm2020/table-builder/directives/resize-column.directive.mjs +0 -86
- package/esm2020/table-builder/directives/table-wrapper.directive.mjs +0 -26
- package/esm2020/table-builder/directives/tb-filter.directive.mjs +0 -403
- package/esm2020/table-builder/material.module.mjs +0 -207
- package/esm2020/table-builder/ngrx/effects.mjs +0 -48
- package/esm2020/table-builder/pipes/column-total.pipe.mjs +0 -20
- package/esm2020/table-builder/pipes/format-filter-type.pipe.mjs +0 -18
- package/esm2020/table-builder/pipes/format-filter-value.pipe.mjs +0 -45
- package/esm2020/table-builder/pipes/key-display.mjs +0 -20
- package/esm2020/table-builder/services/export-to-csv.service.mjs +0 -88
- package/esm2020/table-builder/services/table-template-service.mjs +0 -44
- package/esm2020/table-builder/services/transform-creator.mjs +0 -75
- package/esm2020/table-builder/table-builder.module.mjs +0 -207
- package/esm2020/utilities/directives/auto-focus.directive.mjs +0 -26
- package/esm2020/utilities/directives/clickEmitterDirective.mjs +0 -21
- package/esm2020/utilities/directives/clickSubject.mjs +0 -27
- package/esm2020/utilities/directives/conditional-classes.directive.mjs +0 -35
- package/esm2020/utilities/directives/dialog-service.mjs +0 -25
- package/esm2020/utilities/directives/dialog.mjs +0 -137
- package/esm2020/utilities/directives/mat-toggle-group-directive.mjs +0 -59
- package/esm2020/utilities/directives/prevent-enter.directive.mjs +0 -19
- package/esm2020/utilities/directives/stop-propagation.directive.mjs +0 -25
- package/esm2020/utilities/directives/styler.mjs +0 -26
- package/esm2020/utilities/directives/trim-whitespace.directive.mjs +0 -29
- package/esm2020/utilities/module.mjs +0 -91
- package/esm2020/utilities/pipes/function.pipe.mjs +0 -21
- package/esm2020/utilities/pipes/phone.pipe.mjs +0 -20
- package/esm2020/utilities/pipes/space-case.pipes.mjs +0 -28
- package/fesm2015/one-paragon-angular-utilities.mjs +0 -4777
- package/fesm2015/one-paragon-angular-utilities.mjs.map +0 -1
- package/fesm2020/one-paragon-angular-utilities.mjs.map +0 -1
|
@@ -1,371 +1,371 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FilterInfo, UnmappedTypes, mappedFieldTypes, PartialFilter } from '../../classes/filter-info';
|
|
3
|
-
import { TableStore } from '../../classes/table-store';
|
|
4
|
-
import { FilterType } from '../../enums/filterTypes';
|
|
5
|
-
import { FieldType } from '../../interfaces/report-def';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FilterComponent<T extends mappedFieldTypes = any> {
|
|
8
|
-
state: TableStore;
|
|
9
|
-
filterTypes: Omit<{
|
|
10
|
-
0: Partial<{
|
|
11
|
-
Equals: FilterType[];
|
|
12
|
-
"Does Not Equal": FilterType[];
|
|
13
|
-
"Greater Than": FilterType[];
|
|
14
|
-
"Less Than": FilterType[];
|
|
15
|
-
Between: FilterType[];
|
|
16
|
-
Contains: FilterType[];
|
|
17
|
-
"Does Not Contain": FilterType[];
|
|
18
|
-
"Start With": FilterType[];
|
|
19
|
-
"Ends With": FilterType[];
|
|
20
|
-
"Is on": FilterType[];
|
|
21
|
-
"Is Not On": FilterType[];
|
|
22
|
-
"On or After": FilterType[];
|
|
23
|
-
"On or Before": FilterType[];
|
|
24
|
-
"Is At": FilterType[];
|
|
25
|
-
"Is Not At": FilterType[];
|
|
26
|
-
"At or After": FilterType[];
|
|
27
|
-
"At or Before": FilterType[];
|
|
28
|
-
Is: FilterType[];
|
|
29
|
-
"Is Blank": FilterType[];
|
|
30
|
-
Or: FilterType[];
|
|
31
|
-
And: FilterType[];
|
|
32
|
-
In: FilterType[];
|
|
33
|
-
Custom: FilterType[];
|
|
34
|
-
}>;
|
|
35
|
-
1: Partial<{
|
|
36
|
-
Equals: FilterType[];
|
|
37
|
-
"Does Not Equal": FilterType[];
|
|
38
|
-
"Greater Than": FilterType[];
|
|
39
|
-
"Less Than": FilterType[];
|
|
40
|
-
Between: FilterType[];
|
|
41
|
-
Contains: FilterType[];
|
|
42
|
-
"Does Not Contain": FilterType[];
|
|
43
|
-
"Start With": FilterType[];
|
|
44
|
-
"Ends With": FilterType[];
|
|
45
|
-
"Is on": FilterType[];
|
|
46
|
-
"Is Not On": FilterType[];
|
|
47
|
-
"On or After": FilterType[];
|
|
48
|
-
"On or Before": FilterType[];
|
|
49
|
-
"Is At": FilterType[];
|
|
50
|
-
"Is Not At": FilterType[];
|
|
51
|
-
"At or After": FilterType[];
|
|
52
|
-
"At or Before": FilterType[];
|
|
53
|
-
Is: FilterType[];
|
|
54
|
-
"Is Blank": FilterType[];
|
|
55
|
-
Or: FilterType[];
|
|
56
|
-
And: FilterType[];
|
|
57
|
-
In: FilterType[];
|
|
58
|
-
Custom: FilterType[];
|
|
59
|
-
}>;
|
|
60
|
-
2: Partial<{
|
|
61
|
-
Equals: FilterType[];
|
|
62
|
-
"Does Not Equal": FilterType[];
|
|
63
|
-
"Greater Than": FilterType[];
|
|
64
|
-
"Less Than": FilterType[];
|
|
65
|
-
Between: FilterType[];
|
|
66
|
-
Contains: FilterType[];
|
|
67
|
-
"Does Not Contain": FilterType[];
|
|
68
|
-
"Start With": FilterType[];
|
|
69
|
-
"Ends With": FilterType[];
|
|
70
|
-
"Is on": FilterType[];
|
|
71
|
-
"Is Not On": FilterType[];
|
|
72
|
-
"On or After": FilterType[];
|
|
73
|
-
"On or Before": FilterType[];
|
|
74
|
-
"Is At": FilterType[];
|
|
75
|
-
"Is Not At": FilterType[];
|
|
76
|
-
"At or After": FilterType[];
|
|
77
|
-
"At or Before": FilterType[];
|
|
78
|
-
Is: FilterType[];
|
|
79
|
-
"Is Blank": FilterType[];
|
|
80
|
-
Or: FilterType[];
|
|
81
|
-
And: FilterType[];
|
|
82
|
-
In: FilterType[];
|
|
83
|
-
Custom: FilterType[];
|
|
84
|
-
}>;
|
|
85
|
-
3: Partial<{
|
|
86
|
-
Equals: FilterType[];
|
|
87
|
-
"Does Not Equal": FilterType[];
|
|
88
|
-
"Greater Than": FilterType[];
|
|
89
|
-
"Less Than": FilterType[];
|
|
90
|
-
Between: FilterType[];
|
|
91
|
-
Contains: FilterType[];
|
|
92
|
-
"Does Not Contain": FilterType[];
|
|
93
|
-
"Start With": FilterType[];
|
|
94
|
-
"Ends With": FilterType[];
|
|
95
|
-
"Is on": FilterType[];
|
|
96
|
-
"Is Not On": FilterType[];
|
|
97
|
-
"On or After": FilterType[];
|
|
98
|
-
"On or Before": FilterType[];
|
|
99
|
-
"Is At": FilterType[];
|
|
100
|
-
"Is Not At": FilterType[];
|
|
101
|
-
"At or After": FilterType[];
|
|
102
|
-
"At or Before": FilterType[];
|
|
103
|
-
Is: FilterType[];
|
|
104
|
-
"Is Blank": FilterType[];
|
|
105
|
-
Or: FilterType[];
|
|
106
|
-
And: FilterType[];
|
|
107
|
-
In: FilterType[];
|
|
108
|
-
Custom: FilterType[];
|
|
109
|
-
}>;
|
|
110
|
-
4: Partial<{
|
|
111
|
-
Equals: FilterType[];
|
|
112
|
-
"Does Not Equal": FilterType[];
|
|
113
|
-
"Greater Than": FilterType[];
|
|
114
|
-
"Less Than": FilterType[];
|
|
115
|
-
Between: FilterType[];
|
|
116
|
-
Contains: FilterType[];
|
|
117
|
-
"Does Not Contain": FilterType[];
|
|
118
|
-
"Start With": FilterType[];
|
|
119
|
-
"Ends With": FilterType[];
|
|
120
|
-
"Is on": FilterType[];
|
|
121
|
-
"Is Not On": FilterType[];
|
|
122
|
-
"On or After": FilterType[];
|
|
123
|
-
"On or Before": FilterType[];
|
|
124
|
-
"Is At": FilterType[];
|
|
125
|
-
"Is Not At": FilterType[];
|
|
126
|
-
"At or After": FilterType[];
|
|
127
|
-
"At or Before": FilterType[];
|
|
128
|
-
Is: FilterType[];
|
|
129
|
-
"Is Blank": FilterType[];
|
|
130
|
-
Or: FilterType[];
|
|
131
|
-
And: FilterType[];
|
|
132
|
-
In: FilterType[];
|
|
133
|
-
Custom: FilterType[];
|
|
134
|
-
}>;
|
|
135
|
-
5: Partial<{
|
|
136
|
-
Equals: FilterType[];
|
|
137
|
-
"Does Not Equal": FilterType[];
|
|
138
|
-
"Greater Than": FilterType[];
|
|
139
|
-
"Less Than": FilterType[];
|
|
140
|
-
Between: FilterType[];
|
|
141
|
-
Contains: FilterType[];
|
|
142
|
-
"Does Not Contain": FilterType[];
|
|
143
|
-
"Start With": FilterType[];
|
|
144
|
-
"Ends With": FilterType[];
|
|
145
|
-
"Is on": FilterType[];
|
|
146
|
-
"Is Not On": FilterType[];
|
|
147
|
-
"On or After": FilterType[];
|
|
148
|
-
"On or Before": FilterType[];
|
|
149
|
-
"Is At": FilterType[];
|
|
150
|
-
"Is Not At": FilterType[];
|
|
151
|
-
"At or After": FilterType[];
|
|
152
|
-
"At or Before": FilterType[];
|
|
153
|
-
Is: FilterType[];
|
|
154
|
-
"Is Blank": FilterType[];
|
|
155
|
-
Or: FilterType[];
|
|
156
|
-
And: FilterType[];
|
|
157
|
-
In: FilterType[];
|
|
158
|
-
Custom: FilterType[];
|
|
159
|
-
}>;
|
|
160
|
-
6: Partial<{
|
|
161
|
-
Equals: FilterType[];
|
|
162
|
-
"Does Not Equal": FilterType[];
|
|
163
|
-
"Greater Than": FilterType[];
|
|
164
|
-
"Less Than": FilterType[];
|
|
165
|
-
Between: FilterType[];
|
|
166
|
-
Contains: FilterType[];
|
|
167
|
-
"Does Not Contain": FilterType[];
|
|
168
|
-
"Start With": FilterType[];
|
|
169
|
-
"Ends With": FilterType[];
|
|
170
|
-
"Is on": FilterType[];
|
|
171
|
-
"Is Not On": FilterType[];
|
|
172
|
-
"On or After": FilterType[];
|
|
173
|
-
"On or Before": FilterType[];
|
|
174
|
-
"Is At": FilterType[];
|
|
175
|
-
"Is Not At": FilterType[];
|
|
176
|
-
"At or After": FilterType[];
|
|
177
|
-
"At or Before": FilterType[];
|
|
178
|
-
Is: FilterType[];
|
|
179
|
-
"Is Blank": FilterType[];
|
|
180
|
-
Or: FilterType[];
|
|
181
|
-
And: FilterType[];
|
|
182
|
-
In: FilterType[];
|
|
183
|
-
Custom: FilterType[];
|
|
184
|
-
}>;
|
|
185
|
-
7: Partial<{
|
|
186
|
-
Equals: FilterType[];
|
|
187
|
-
"Does Not Equal": FilterType[];
|
|
188
|
-
"Greater Than": FilterType[];
|
|
189
|
-
"Less Than": FilterType[];
|
|
190
|
-
Between: FilterType[];
|
|
191
|
-
Contains: FilterType[];
|
|
192
|
-
"Does Not Contain": FilterType[];
|
|
193
|
-
"Start With": FilterType[];
|
|
194
|
-
"Ends With": FilterType[];
|
|
195
|
-
"Is on": FilterType[];
|
|
196
|
-
"Is Not On": FilterType[];
|
|
197
|
-
"On or After": FilterType[];
|
|
198
|
-
"On or Before": FilterType[];
|
|
199
|
-
"Is At": FilterType[];
|
|
200
|
-
"Is Not At": FilterType[];
|
|
201
|
-
"At or After": FilterType[];
|
|
202
|
-
"At or Before": FilterType[];
|
|
203
|
-
Is: FilterType[];
|
|
204
|
-
"Is Blank": FilterType[];
|
|
205
|
-
Or: FilterType[];
|
|
206
|
-
And: FilterType[];
|
|
207
|
-
In: FilterType[];
|
|
208
|
-
Custom: FilterType[];
|
|
209
|
-
}>;
|
|
210
|
-
8: Partial<{
|
|
211
|
-
Equals: FilterType[];
|
|
212
|
-
"Does Not Equal": FilterType[];
|
|
213
|
-
"Greater Than": FilterType[];
|
|
214
|
-
"Less Than": FilterType[];
|
|
215
|
-
Between: FilterType[];
|
|
216
|
-
Contains: FilterType[];
|
|
217
|
-
"Does Not Contain": FilterType[];
|
|
218
|
-
"Start With": FilterType[];
|
|
219
|
-
"Ends With": FilterType[];
|
|
220
|
-
"Is on": FilterType[];
|
|
221
|
-
"Is Not On": FilterType[];
|
|
222
|
-
"On or After": FilterType[];
|
|
223
|
-
"On or Before": FilterType[];
|
|
224
|
-
"Is At": FilterType[];
|
|
225
|
-
"Is Not At": FilterType[];
|
|
226
|
-
"At or After": FilterType[];
|
|
227
|
-
"At or Before": FilterType[];
|
|
228
|
-
Is: FilterType[];
|
|
229
|
-
"Is Blank": FilterType[];
|
|
230
|
-
Or: FilterType[];
|
|
231
|
-
And: FilterType[];
|
|
232
|
-
In: FilterType[];
|
|
233
|
-
Custom: FilterType[];
|
|
234
|
-
}>;
|
|
235
|
-
9: Partial<{
|
|
236
|
-
Equals: FilterType[];
|
|
237
|
-
"Does Not Equal": FilterType[];
|
|
238
|
-
"Greater Than": FilterType[];
|
|
239
|
-
"Less Than": FilterType[];
|
|
240
|
-
Between: FilterType[];
|
|
241
|
-
Contains: FilterType[];
|
|
242
|
-
"Does Not Contain": FilterType[];
|
|
243
|
-
"Start With": FilterType[];
|
|
244
|
-
"Ends With": FilterType[];
|
|
245
|
-
"Is on": FilterType[];
|
|
246
|
-
"Is Not On": FilterType[];
|
|
247
|
-
"On or After": FilterType[];
|
|
248
|
-
"On or Before": FilterType[];
|
|
249
|
-
"Is At": FilterType[];
|
|
250
|
-
"Is Not At": FilterType[];
|
|
251
|
-
"At or After": FilterType[];
|
|
252
|
-
"At or Before": FilterType[];
|
|
253
|
-
Is: FilterType[];
|
|
254
|
-
"Is Blank": FilterType[];
|
|
255
|
-
Or: FilterType[];
|
|
256
|
-
And: FilterType[];
|
|
257
|
-
In: FilterType[];
|
|
258
|
-
Custom: FilterType[];
|
|
259
|
-
}>;
|
|
260
|
-
10: Partial<{
|
|
261
|
-
Equals: FilterType[];
|
|
262
|
-
"Does Not Equal": FilterType[];
|
|
263
|
-
"Greater Than": FilterType[];
|
|
264
|
-
"Less Than": FilterType[];
|
|
265
|
-
Between: FilterType[];
|
|
266
|
-
Contains: FilterType[];
|
|
267
|
-
"Does Not Contain": FilterType[];
|
|
268
|
-
"Start With": FilterType[];
|
|
269
|
-
"Ends With": FilterType[];
|
|
270
|
-
"Is on": FilterType[];
|
|
271
|
-
"Is Not On": FilterType[];
|
|
272
|
-
"On or After": FilterType[];
|
|
273
|
-
"On or Before": FilterType[];
|
|
274
|
-
"Is At": FilterType[];
|
|
275
|
-
"Is Not At": FilterType[];
|
|
276
|
-
"At or After": FilterType[];
|
|
277
|
-
"At or Before": FilterType[];
|
|
278
|
-
Is: FilterType[];
|
|
279
|
-
"Is Blank": FilterType[];
|
|
280
|
-
Or: FilterType[];
|
|
281
|
-
And: FilterType[];
|
|
282
|
-
In: FilterType[];
|
|
283
|
-
Custom: FilterType[];
|
|
284
|
-
}>;
|
|
285
|
-
11: Partial<{
|
|
286
|
-
Equals: FilterType[];
|
|
287
|
-
"Does Not Equal": FilterType[];
|
|
288
|
-
"Greater Than": FilterType[];
|
|
289
|
-
"Less Than": FilterType[];
|
|
290
|
-
Between: FilterType[];
|
|
291
|
-
Contains: FilterType[];
|
|
292
|
-
"Does Not Contain": FilterType[];
|
|
293
|
-
"Start With": FilterType[];
|
|
294
|
-
"Ends With": FilterType[];
|
|
295
|
-
"Is on": FilterType[];
|
|
296
|
-
"Is Not On": FilterType[];
|
|
297
|
-
"On or After": FilterType[];
|
|
298
|
-
"On or Before": FilterType[];
|
|
299
|
-
"Is At": FilterType[];
|
|
300
|
-
"Is Not At": FilterType[];
|
|
301
|
-
"At or After": FilterType[];
|
|
302
|
-
"At or Before": FilterType[];
|
|
303
|
-
Is: FilterType[];
|
|
304
|
-
"Is Blank": FilterType[];
|
|
305
|
-
Or: FilterType[];
|
|
306
|
-
And: FilterType[];
|
|
307
|
-
In: FilterType[];
|
|
308
|
-
Custom: FilterType[];
|
|
309
|
-
}>;
|
|
310
|
-
12: Partial<{
|
|
311
|
-
Equals: FilterType[];
|
|
312
|
-
"Does Not Equal": FilterType[];
|
|
313
|
-
"Greater Than": FilterType[];
|
|
314
|
-
"Less Than": FilterType[];
|
|
315
|
-
Between: FilterType[];
|
|
316
|
-
Contains: FilterType[];
|
|
317
|
-
"Does Not Contain": FilterType[];
|
|
318
|
-
"Start With": FilterType[];
|
|
319
|
-
"Ends With": FilterType[];
|
|
320
|
-
"Is on": FilterType[];
|
|
321
|
-
"Is Not On": FilterType[];
|
|
322
|
-
"On or After": FilterType[];
|
|
323
|
-
"On or Before": FilterType[];
|
|
324
|
-
"Is At": FilterType[];
|
|
325
|
-
"Is Not At": FilterType[];
|
|
326
|
-
"At or After": FilterType[];
|
|
327
|
-
"At or Before": FilterType[];
|
|
328
|
-
Is: FilterType[];
|
|
329
|
-
"Is Blank": FilterType[];
|
|
330
|
-
Or: FilterType[];
|
|
331
|
-
And: FilterType[];
|
|
332
|
-
In: FilterType[];
|
|
333
|
-
Custom: FilterType[];
|
|
334
|
-
}>;
|
|
335
|
-
13: Partial<{
|
|
336
|
-
Equals: FilterType[];
|
|
337
|
-
"Does Not Equal": FilterType[];
|
|
338
|
-
"Greater Than": FilterType[];
|
|
339
|
-
"Less Than": FilterType[];
|
|
340
|
-
Between: FilterType[];
|
|
341
|
-
Contains: FilterType[];
|
|
342
|
-
"Does Not Contain": FilterType[];
|
|
343
|
-
"Start With": FilterType[];
|
|
344
|
-
"Ends With": FilterType[];
|
|
345
|
-
"Is on": FilterType[];
|
|
346
|
-
"Is Not On": FilterType[];
|
|
347
|
-
"On or After": FilterType[];
|
|
348
|
-
"On or Before": FilterType[];
|
|
349
|
-
"Is At": FilterType[];
|
|
350
|
-
"Is Not At": FilterType[];
|
|
351
|
-
"At or After": FilterType[];
|
|
352
|
-
"At or Before": FilterType[];
|
|
353
|
-
Is: FilterType[];
|
|
354
|
-
"Is Blank": FilterType[];
|
|
355
|
-
Or: FilterType[];
|
|
356
|
-
And: FilterType[];
|
|
357
|
-
In: FilterType[];
|
|
358
|
-
Custom: FilterType[];
|
|
359
|
-
}>;
|
|
360
|
-
}, UnmappedTypes>;
|
|
361
|
-
FilterType: typeof FilterType;
|
|
362
|
-
FieldType: typeof FieldType;
|
|
363
|
-
filter: PartialFilter;
|
|
364
|
-
close: EventEmitter<any>;
|
|
365
|
-
currentFilterType?: FilterType;
|
|
366
|
-
constructor(state: TableStore);
|
|
367
|
-
ngOnInit(): void;
|
|
368
|
-
onEnter(filter: FilterInfo, event: any): void;
|
|
369
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent<any>, never>;
|
|
370
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "tb-filter", never, { "filter": "filter"; }, { "close": "close"; }, never, never, false, never>;
|
|
371
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FilterInfo, UnmappedTypes, mappedFieldTypes, PartialFilter } from '../../classes/filter-info';
|
|
3
|
+
import { TableStore } from '../../classes/table-store';
|
|
4
|
+
import { FilterType } from '../../enums/filterTypes';
|
|
5
|
+
import { FieldType } from '../../interfaces/report-def';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FilterComponent<T extends mappedFieldTypes = any> {
|
|
8
|
+
state: TableStore;
|
|
9
|
+
filterTypes: Omit<{
|
|
10
|
+
0: Partial<{
|
|
11
|
+
Equals: FilterType[];
|
|
12
|
+
"Does Not Equal": FilterType[];
|
|
13
|
+
"Greater Than": FilterType[];
|
|
14
|
+
"Less Than": FilterType[];
|
|
15
|
+
Between: FilterType[];
|
|
16
|
+
Contains: FilterType[];
|
|
17
|
+
"Does Not Contain": FilterType[];
|
|
18
|
+
"Start With": FilterType[];
|
|
19
|
+
"Ends With": FilterType[];
|
|
20
|
+
"Is on": FilterType[];
|
|
21
|
+
"Is Not On": FilterType[];
|
|
22
|
+
"On or After": FilterType[];
|
|
23
|
+
"On or Before": FilterType[];
|
|
24
|
+
"Is At": FilterType[];
|
|
25
|
+
"Is Not At": FilterType[];
|
|
26
|
+
"At or After": FilterType[];
|
|
27
|
+
"At or Before": FilterType[];
|
|
28
|
+
Is: FilterType[];
|
|
29
|
+
"Is Blank": FilterType[];
|
|
30
|
+
Or: FilterType[];
|
|
31
|
+
And: FilterType[];
|
|
32
|
+
In: FilterType[];
|
|
33
|
+
Custom: FilterType[];
|
|
34
|
+
}>;
|
|
35
|
+
1: Partial<{
|
|
36
|
+
Equals: FilterType[];
|
|
37
|
+
"Does Not Equal": FilterType[];
|
|
38
|
+
"Greater Than": FilterType[];
|
|
39
|
+
"Less Than": FilterType[];
|
|
40
|
+
Between: FilterType[];
|
|
41
|
+
Contains: FilterType[];
|
|
42
|
+
"Does Not Contain": FilterType[];
|
|
43
|
+
"Start With": FilterType[];
|
|
44
|
+
"Ends With": FilterType[];
|
|
45
|
+
"Is on": FilterType[];
|
|
46
|
+
"Is Not On": FilterType[];
|
|
47
|
+
"On or After": FilterType[];
|
|
48
|
+
"On or Before": FilterType[];
|
|
49
|
+
"Is At": FilterType[];
|
|
50
|
+
"Is Not At": FilterType[];
|
|
51
|
+
"At or After": FilterType[];
|
|
52
|
+
"At or Before": FilterType[];
|
|
53
|
+
Is: FilterType[];
|
|
54
|
+
"Is Blank": FilterType[];
|
|
55
|
+
Or: FilterType[];
|
|
56
|
+
And: FilterType[];
|
|
57
|
+
In: FilterType[];
|
|
58
|
+
Custom: FilterType[];
|
|
59
|
+
}>;
|
|
60
|
+
2: Partial<{
|
|
61
|
+
Equals: FilterType[];
|
|
62
|
+
"Does Not Equal": FilterType[];
|
|
63
|
+
"Greater Than": FilterType[];
|
|
64
|
+
"Less Than": FilterType[];
|
|
65
|
+
Between: FilterType[];
|
|
66
|
+
Contains: FilterType[];
|
|
67
|
+
"Does Not Contain": FilterType[];
|
|
68
|
+
"Start With": FilterType[];
|
|
69
|
+
"Ends With": FilterType[];
|
|
70
|
+
"Is on": FilterType[];
|
|
71
|
+
"Is Not On": FilterType[];
|
|
72
|
+
"On or After": FilterType[];
|
|
73
|
+
"On or Before": FilterType[];
|
|
74
|
+
"Is At": FilterType[];
|
|
75
|
+
"Is Not At": FilterType[];
|
|
76
|
+
"At or After": FilterType[];
|
|
77
|
+
"At or Before": FilterType[];
|
|
78
|
+
Is: FilterType[];
|
|
79
|
+
"Is Blank": FilterType[];
|
|
80
|
+
Or: FilterType[];
|
|
81
|
+
And: FilterType[];
|
|
82
|
+
In: FilterType[];
|
|
83
|
+
Custom: FilterType[];
|
|
84
|
+
}>;
|
|
85
|
+
3: Partial<{
|
|
86
|
+
Equals: FilterType[];
|
|
87
|
+
"Does Not Equal": FilterType[];
|
|
88
|
+
"Greater Than": FilterType[];
|
|
89
|
+
"Less Than": FilterType[];
|
|
90
|
+
Between: FilterType[];
|
|
91
|
+
Contains: FilterType[];
|
|
92
|
+
"Does Not Contain": FilterType[];
|
|
93
|
+
"Start With": FilterType[];
|
|
94
|
+
"Ends With": FilterType[];
|
|
95
|
+
"Is on": FilterType[];
|
|
96
|
+
"Is Not On": FilterType[];
|
|
97
|
+
"On or After": FilterType[];
|
|
98
|
+
"On or Before": FilterType[];
|
|
99
|
+
"Is At": FilterType[];
|
|
100
|
+
"Is Not At": FilterType[];
|
|
101
|
+
"At or After": FilterType[];
|
|
102
|
+
"At or Before": FilterType[];
|
|
103
|
+
Is: FilterType[];
|
|
104
|
+
"Is Blank": FilterType[];
|
|
105
|
+
Or: FilterType[];
|
|
106
|
+
And: FilterType[];
|
|
107
|
+
In: FilterType[];
|
|
108
|
+
Custom: FilterType[];
|
|
109
|
+
}>;
|
|
110
|
+
4: Partial<{
|
|
111
|
+
Equals: FilterType[];
|
|
112
|
+
"Does Not Equal": FilterType[];
|
|
113
|
+
"Greater Than": FilterType[];
|
|
114
|
+
"Less Than": FilterType[];
|
|
115
|
+
Between: FilterType[];
|
|
116
|
+
Contains: FilterType[];
|
|
117
|
+
"Does Not Contain": FilterType[];
|
|
118
|
+
"Start With": FilterType[];
|
|
119
|
+
"Ends With": FilterType[];
|
|
120
|
+
"Is on": FilterType[];
|
|
121
|
+
"Is Not On": FilterType[];
|
|
122
|
+
"On or After": FilterType[];
|
|
123
|
+
"On or Before": FilterType[];
|
|
124
|
+
"Is At": FilterType[];
|
|
125
|
+
"Is Not At": FilterType[];
|
|
126
|
+
"At or After": FilterType[];
|
|
127
|
+
"At or Before": FilterType[];
|
|
128
|
+
Is: FilterType[];
|
|
129
|
+
"Is Blank": FilterType[];
|
|
130
|
+
Or: FilterType[];
|
|
131
|
+
And: FilterType[];
|
|
132
|
+
In: FilterType[];
|
|
133
|
+
Custom: FilterType[];
|
|
134
|
+
}>;
|
|
135
|
+
5: Partial<{
|
|
136
|
+
Equals: FilterType[];
|
|
137
|
+
"Does Not Equal": FilterType[];
|
|
138
|
+
"Greater Than": FilterType[];
|
|
139
|
+
"Less Than": FilterType[];
|
|
140
|
+
Between: FilterType[];
|
|
141
|
+
Contains: FilterType[];
|
|
142
|
+
"Does Not Contain": FilterType[];
|
|
143
|
+
"Start With": FilterType[];
|
|
144
|
+
"Ends With": FilterType[];
|
|
145
|
+
"Is on": FilterType[];
|
|
146
|
+
"Is Not On": FilterType[];
|
|
147
|
+
"On or After": FilterType[];
|
|
148
|
+
"On or Before": FilterType[];
|
|
149
|
+
"Is At": FilterType[];
|
|
150
|
+
"Is Not At": FilterType[];
|
|
151
|
+
"At or After": FilterType[];
|
|
152
|
+
"At or Before": FilterType[];
|
|
153
|
+
Is: FilterType[];
|
|
154
|
+
"Is Blank": FilterType[];
|
|
155
|
+
Or: FilterType[];
|
|
156
|
+
And: FilterType[];
|
|
157
|
+
In: FilterType[];
|
|
158
|
+
Custom: FilterType[];
|
|
159
|
+
}>;
|
|
160
|
+
6: Partial<{
|
|
161
|
+
Equals: FilterType[];
|
|
162
|
+
"Does Not Equal": FilterType[];
|
|
163
|
+
"Greater Than": FilterType[];
|
|
164
|
+
"Less Than": FilterType[];
|
|
165
|
+
Between: FilterType[];
|
|
166
|
+
Contains: FilterType[];
|
|
167
|
+
"Does Not Contain": FilterType[];
|
|
168
|
+
"Start With": FilterType[];
|
|
169
|
+
"Ends With": FilterType[];
|
|
170
|
+
"Is on": FilterType[];
|
|
171
|
+
"Is Not On": FilterType[];
|
|
172
|
+
"On or After": FilterType[];
|
|
173
|
+
"On or Before": FilterType[];
|
|
174
|
+
"Is At": FilterType[];
|
|
175
|
+
"Is Not At": FilterType[];
|
|
176
|
+
"At or After": FilterType[];
|
|
177
|
+
"At or Before": FilterType[];
|
|
178
|
+
Is: FilterType[];
|
|
179
|
+
"Is Blank": FilterType[];
|
|
180
|
+
Or: FilterType[];
|
|
181
|
+
And: FilterType[];
|
|
182
|
+
In: FilterType[];
|
|
183
|
+
Custom: FilterType[];
|
|
184
|
+
}>;
|
|
185
|
+
7: Partial<{
|
|
186
|
+
Equals: FilterType[];
|
|
187
|
+
"Does Not Equal": FilterType[];
|
|
188
|
+
"Greater Than": FilterType[];
|
|
189
|
+
"Less Than": FilterType[];
|
|
190
|
+
Between: FilterType[];
|
|
191
|
+
Contains: FilterType[];
|
|
192
|
+
"Does Not Contain": FilterType[];
|
|
193
|
+
"Start With": FilterType[];
|
|
194
|
+
"Ends With": FilterType[];
|
|
195
|
+
"Is on": FilterType[];
|
|
196
|
+
"Is Not On": FilterType[];
|
|
197
|
+
"On or After": FilterType[];
|
|
198
|
+
"On or Before": FilterType[];
|
|
199
|
+
"Is At": FilterType[];
|
|
200
|
+
"Is Not At": FilterType[];
|
|
201
|
+
"At or After": FilterType[];
|
|
202
|
+
"At or Before": FilterType[];
|
|
203
|
+
Is: FilterType[];
|
|
204
|
+
"Is Blank": FilterType[];
|
|
205
|
+
Or: FilterType[];
|
|
206
|
+
And: FilterType[];
|
|
207
|
+
In: FilterType[];
|
|
208
|
+
Custom: FilterType[];
|
|
209
|
+
}>;
|
|
210
|
+
8: Partial<{
|
|
211
|
+
Equals: FilterType[];
|
|
212
|
+
"Does Not Equal": FilterType[];
|
|
213
|
+
"Greater Than": FilterType[];
|
|
214
|
+
"Less Than": FilterType[];
|
|
215
|
+
Between: FilterType[];
|
|
216
|
+
Contains: FilterType[];
|
|
217
|
+
"Does Not Contain": FilterType[];
|
|
218
|
+
"Start With": FilterType[];
|
|
219
|
+
"Ends With": FilterType[];
|
|
220
|
+
"Is on": FilterType[];
|
|
221
|
+
"Is Not On": FilterType[];
|
|
222
|
+
"On or After": FilterType[];
|
|
223
|
+
"On or Before": FilterType[];
|
|
224
|
+
"Is At": FilterType[];
|
|
225
|
+
"Is Not At": FilterType[];
|
|
226
|
+
"At or After": FilterType[];
|
|
227
|
+
"At or Before": FilterType[];
|
|
228
|
+
Is: FilterType[];
|
|
229
|
+
"Is Blank": FilterType[];
|
|
230
|
+
Or: FilterType[];
|
|
231
|
+
And: FilterType[];
|
|
232
|
+
In: FilterType[];
|
|
233
|
+
Custom: FilterType[];
|
|
234
|
+
}>;
|
|
235
|
+
9: Partial<{
|
|
236
|
+
Equals: FilterType[];
|
|
237
|
+
"Does Not Equal": FilterType[];
|
|
238
|
+
"Greater Than": FilterType[];
|
|
239
|
+
"Less Than": FilterType[];
|
|
240
|
+
Between: FilterType[];
|
|
241
|
+
Contains: FilterType[];
|
|
242
|
+
"Does Not Contain": FilterType[];
|
|
243
|
+
"Start With": FilterType[];
|
|
244
|
+
"Ends With": FilterType[];
|
|
245
|
+
"Is on": FilterType[];
|
|
246
|
+
"Is Not On": FilterType[];
|
|
247
|
+
"On or After": FilterType[];
|
|
248
|
+
"On or Before": FilterType[];
|
|
249
|
+
"Is At": FilterType[];
|
|
250
|
+
"Is Not At": FilterType[];
|
|
251
|
+
"At or After": FilterType[];
|
|
252
|
+
"At or Before": FilterType[];
|
|
253
|
+
Is: FilterType[];
|
|
254
|
+
"Is Blank": FilterType[];
|
|
255
|
+
Or: FilterType[];
|
|
256
|
+
And: FilterType[];
|
|
257
|
+
In: FilterType[];
|
|
258
|
+
Custom: FilterType[];
|
|
259
|
+
}>;
|
|
260
|
+
10: Partial<{
|
|
261
|
+
Equals: FilterType[];
|
|
262
|
+
"Does Not Equal": FilterType[];
|
|
263
|
+
"Greater Than": FilterType[];
|
|
264
|
+
"Less Than": FilterType[];
|
|
265
|
+
Between: FilterType[];
|
|
266
|
+
Contains: FilterType[];
|
|
267
|
+
"Does Not Contain": FilterType[];
|
|
268
|
+
"Start With": FilterType[];
|
|
269
|
+
"Ends With": FilterType[];
|
|
270
|
+
"Is on": FilterType[];
|
|
271
|
+
"Is Not On": FilterType[];
|
|
272
|
+
"On or After": FilterType[];
|
|
273
|
+
"On or Before": FilterType[];
|
|
274
|
+
"Is At": FilterType[];
|
|
275
|
+
"Is Not At": FilterType[];
|
|
276
|
+
"At or After": FilterType[];
|
|
277
|
+
"At or Before": FilterType[];
|
|
278
|
+
Is: FilterType[];
|
|
279
|
+
"Is Blank": FilterType[];
|
|
280
|
+
Or: FilterType[];
|
|
281
|
+
And: FilterType[];
|
|
282
|
+
In: FilterType[];
|
|
283
|
+
Custom: FilterType[];
|
|
284
|
+
}>;
|
|
285
|
+
11: Partial<{
|
|
286
|
+
Equals: FilterType[];
|
|
287
|
+
"Does Not Equal": FilterType[];
|
|
288
|
+
"Greater Than": FilterType[];
|
|
289
|
+
"Less Than": FilterType[];
|
|
290
|
+
Between: FilterType[];
|
|
291
|
+
Contains: FilterType[];
|
|
292
|
+
"Does Not Contain": FilterType[];
|
|
293
|
+
"Start With": FilterType[];
|
|
294
|
+
"Ends With": FilterType[];
|
|
295
|
+
"Is on": FilterType[];
|
|
296
|
+
"Is Not On": FilterType[];
|
|
297
|
+
"On or After": FilterType[];
|
|
298
|
+
"On or Before": FilterType[];
|
|
299
|
+
"Is At": FilterType[];
|
|
300
|
+
"Is Not At": FilterType[];
|
|
301
|
+
"At or After": FilterType[];
|
|
302
|
+
"At or Before": FilterType[];
|
|
303
|
+
Is: FilterType[];
|
|
304
|
+
"Is Blank": FilterType[];
|
|
305
|
+
Or: FilterType[];
|
|
306
|
+
And: FilterType[];
|
|
307
|
+
In: FilterType[];
|
|
308
|
+
Custom: FilterType[];
|
|
309
|
+
}>;
|
|
310
|
+
12: Partial<{
|
|
311
|
+
Equals: FilterType[];
|
|
312
|
+
"Does Not Equal": FilterType[];
|
|
313
|
+
"Greater Than": FilterType[];
|
|
314
|
+
"Less Than": FilterType[];
|
|
315
|
+
Between: FilterType[];
|
|
316
|
+
Contains: FilterType[];
|
|
317
|
+
"Does Not Contain": FilterType[];
|
|
318
|
+
"Start With": FilterType[];
|
|
319
|
+
"Ends With": FilterType[];
|
|
320
|
+
"Is on": FilterType[];
|
|
321
|
+
"Is Not On": FilterType[];
|
|
322
|
+
"On or After": FilterType[];
|
|
323
|
+
"On or Before": FilterType[];
|
|
324
|
+
"Is At": FilterType[];
|
|
325
|
+
"Is Not At": FilterType[];
|
|
326
|
+
"At or After": FilterType[];
|
|
327
|
+
"At or Before": FilterType[];
|
|
328
|
+
Is: FilterType[];
|
|
329
|
+
"Is Blank": FilterType[];
|
|
330
|
+
Or: FilterType[];
|
|
331
|
+
And: FilterType[];
|
|
332
|
+
In: FilterType[];
|
|
333
|
+
Custom: FilterType[];
|
|
334
|
+
}>;
|
|
335
|
+
13: Partial<{
|
|
336
|
+
Equals: FilterType[];
|
|
337
|
+
"Does Not Equal": FilterType[];
|
|
338
|
+
"Greater Than": FilterType[];
|
|
339
|
+
"Less Than": FilterType[];
|
|
340
|
+
Between: FilterType[];
|
|
341
|
+
Contains: FilterType[];
|
|
342
|
+
"Does Not Contain": FilterType[];
|
|
343
|
+
"Start With": FilterType[];
|
|
344
|
+
"Ends With": FilterType[];
|
|
345
|
+
"Is on": FilterType[];
|
|
346
|
+
"Is Not On": FilterType[];
|
|
347
|
+
"On or After": FilterType[];
|
|
348
|
+
"On or Before": FilterType[];
|
|
349
|
+
"Is At": FilterType[];
|
|
350
|
+
"Is Not At": FilterType[];
|
|
351
|
+
"At or After": FilterType[];
|
|
352
|
+
"At or Before": FilterType[];
|
|
353
|
+
Is: FilterType[];
|
|
354
|
+
"Is Blank": FilterType[];
|
|
355
|
+
Or: FilterType[];
|
|
356
|
+
And: FilterType[];
|
|
357
|
+
In: FilterType[];
|
|
358
|
+
Custom: FilterType[];
|
|
359
|
+
}>;
|
|
360
|
+
}, UnmappedTypes>;
|
|
361
|
+
FilterType: typeof FilterType;
|
|
362
|
+
FieldType: typeof FieldType;
|
|
363
|
+
filter: PartialFilter;
|
|
364
|
+
close: EventEmitter<any>;
|
|
365
|
+
currentFilterType?: FilterType;
|
|
366
|
+
constructor(state: TableStore);
|
|
367
|
+
ngOnInit(): void;
|
|
368
|
+
onEnter(filter: FilterInfo, event: any): void;
|
|
369
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent<any>, never>;
|
|
370
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "tb-filter", never, { "filter": { "alias": "filter"; "required": false; }; }, { "close": "close"; }, never, never, false, never>;
|
|
371
|
+
}
|