@one-paragon/angular-utilities 1.2.11 → 1.2.12
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +16 -30
- package/src/action-state/action-state-spinner/action-state-spinner.component.css +16 -0
- package/src/action-state/action-state-spinner/action-state-spinner.component.html +6 -0
- package/src/action-state/action-state-spinner/action-state-spinner.component.spec.ts +25 -0
- package/src/action-state/action-state-spinner/action-state-spinner.component.ts +26 -0
- package/src/action-state/action-state-ui/action-state-ui.module.ts +13 -0
- package/{action-state/index.d.ts → src/action-state/index.ts} +8 -4
- package/src/action-state/ngrx-ext/ngrx-ext.module.ts +15 -0
- package/src/action-state/ngrx.ts +69 -0
- package/src/http-request-state/HttpRequestStateFactory.ts +66 -0
- package/src/http-request-state/HttpRequestStateStore.ts +173 -0
- package/src/http-request-state/directives/HttpStateDirectiveBase.ts +29 -0
- package/src/http-request-state/directives/http-error-state-directive.ts +21 -0
- package/src/http-request-state/directives/http-inProgress-state-directive.ts +19 -0
- package/src/http-request-state/directives/http-notStarted-state-directive.ts +19 -0
- package/src/http-request-state/directives/http-success-state-directive.ts +29 -0
- package/{http-request-state/directives/index.d.ts → src/http-request-state/directives/index.ts} +5 -5
- package/src/http-request-state/directives/request-state-directive.spec.ts +72 -0
- package/src/http-request-state/directives/request-state-directive.ts +78 -0
- package/src/http-request-state/helpers.ts +30 -0
- package/src/http-request-state/http-request-state.ts +69 -0
- package/src/http-request-state/http-state-module.ts +23 -0
- package/{http-request-state/index.d.ts → src/http-request-state/index.ts} +6 -6
- package/src/http-request-state/observable.spec.ts +43 -0
- package/src/http-request-state/rxjs/getRequestorBody.ts +10 -0
- package/src/http-request-state/rxjs/getRequestorState.ts +8 -0
- package/{http-request-state/rxjs/index.d.ts → src/http-request-state/rxjs/index.ts} +4 -4
- package/src/http-request-state/rxjs/tapError.ts +16 -0
- package/src/http-request-state/rxjs/tapSuccess.ts +16 -0
- package/src/http-request-state/strategies.spec.ts +42 -0
- package/src/http-request-state/types.ts +55 -0
- package/src/ngrx/actionable-selector.ts +95 -0
- package/src/ngrx/index.ts +1 -0
- package/{public-api.d.ts → src/public-api.ts} +35 -16
- package/src/rxjs/defaultShareReplay.ts +8 -0
- package/{rxjs/index.d.ts → src/rxjs/index.ts} +5 -5
- package/src/rxjs/mapError.ts +8 -0
- package/src/rxjs/rxjs-operators.ts +132 -0
- package/src/rxjs/subjectifier.ts +17 -0
- package/src/rxjs/subscriber.directive.ts +57 -0
- package/src/specs/clickSubject.spec.ts +95 -0
- package/src/specs/dialog.spec.ts +101 -0
- package/src/specs/toggleGroupDirective.spec.ts +229 -0
- package/src/table-builder/classes/DefaultSettings.ts +11 -0
- package/src/table-builder/classes/MatTableObservableDataSource.ts +23 -0
- package/src/table-builder/classes/TableBuilderConfig.ts +35 -0
- package/src/table-builder/classes/TableBuilderDataSource.ts +80 -0
- package/src/table-builder/classes/TableState.ts +96 -0
- package/src/table-builder/classes/data-store.ts +10 -0
- package/{table-builder/classes/display-col.d.ts → src/table-builder/classes/display-col.ts} +5 -5
- package/src/table-builder/classes/filter-info.ts +108 -0
- package/src/table-builder/classes/table-builder-general-settings.ts +129 -0
- package/src/table-builder/classes/table-builder.ts +94 -0
- package/src/table-builder/classes/table-store.ts +471 -0
- package/src/table-builder/components/array-column.component.ts +36 -0
- package/src/table-builder/components/column-builder/column-builder.component.html +61 -0
- package/src/table-builder/components/column-builder/column-builder.component.scss +43 -0
- package/src/table-builder/components/column-builder/column-builder.component.spec.ts +49 -0
- package/src/table-builder/components/column-builder/column-builder.component.ts +135 -0
- package/src/table-builder/components/column-builder/column-helpers.ts +53 -0
- package/src/table-builder/components/date-filter/date-filter.component.html +23 -0
- package/src/table-builder/components/date-filter/date-filter.component.ts +24 -0
- package/src/table-builder/components/date-time-filter/date-time-filter.component.html +9 -0
- package/src/table-builder/components/date-time-filter/date-time-filter.component.ts +22 -0
- package/src/table-builder/components/filter/filter.component.html +91 -0
- package/src/table-builder/components/filter/filter.component.scss +64 -0
- package/src/table-builder/components/filter/filter.component.spec.ts +87 -0
- package/src/table-builder/components/filter/filter.component.ts +60 -0
- package/src/table-builder/components/filter/in-list/in-list-filter.component.ts +93 -0
- package/src/table-builder/components/gen-col-displayer/gen-col-displayer.component.html +55 -0
- package/src/table-builder/components/gen-col-displayer/gen-col-displayer.component.scss +57 -0
- package/src/table-builder/components/gen-col-displayer/gen-col-displayer.component.ts +59 -0
- package/src/table-builder/components/generic-table/generic-table.component.html +78 -0
- package/src/table-builder/components/generic-table/generic-table.component.scss +42 -0
- package/src/table-builder/components/generic-table/generic-table.component.ts +299 -0
- package/src/table-builder/components/generic-table/paginator.component.ts +99 -0
- package/src/table-builder/components/group-by-list/group-by-list.component.css +8 -0
- package/src/table-builder/components/group-by-list/group-by-list.component.html +12 -0
- package/src/table-builder/components/group-by-list/group-by-list.component.spec.ts +23 -0
- package/src/table-builder/components/group-by-list/group-by-list.component.ts +21 -0
- package/src/table-builder/components/header-menu/header-menu.component.html +104 -0
- package/src/table-builder/components/header-menu/header-menu.component.scss +96 -0
- package/src/table-builder/components/header-menu/header-menu.component.ts +99 -0
- package/src/table-builder/components/in-filter/in-filter.component.css +3 -0
- package/src/table-builder/components/in-filter/in-filter.component.html +20 -0
- package/src/table-builder/components/in-filter/in-filter.component.ts +66 -0
- package/{table-builder/components/index.d.ts → src/table-builder/components/index.ts} +9 -9
- package/src/table-builder/components/initialization-component/initialization-component.html +29 -0
- package/src/table-builder/components/initialization-component/initialization-component.ts +24 -0
- package/src/table-builder/components/link-column.component.ts +47 -0
- package/src/table-builder/components/number-filter/number-filter.component.css +10 -0
- package/src/table-builder/components/number-filter/number-filter.component.html +19 -0
- package/src/table-builder/components/number-filter/number-filter.component.spec.ts +30 -0
- package/src/table-builder/components/number-filter/number-filter.component.ts +25 -0
- package/src/table-builder/components/profiles-menu/profiles-menu.component.html +74 -0
- package/src/table-builder/components/profiles-menu/profiles-menu.component.scss +98 -0
- package/src/table-builder/components/profiles-menu/profiles-menu.component.spec.ts +23 -0
- package/src/table-builder/components/profiles-menu/profiles-menu.component.ts +65 -0
- package/src/table-builder/components/scroll-strategy.ts +76 -0
- package/src/table-builder/components/sort-menu/sort-menu.component-store.ts +66 -0
- package/src/table-builder/components/sort-menu/sort-menu.component.html +111 -0
- package/src/table-builder/components/sort-menu/sort-menu.component.scss +119 -0
- package/src/table-builder/components/sort-menu/sort-menu.component.ts +98 -0
- package/{table-builder/components/table-container/table-container-imports.d.ts → src/table-builder/components/table-container/table-container-imports.ts} +32 -14
- package/src/table-builder/components/table-container/table-container.css +54 -0
- package/src/table-builder/components/table-container/table-container.helpers/data-state.helpers.ts +141 -0
- package/src/table-builder/components/table-container/table-container.helpers/filter-state.helpers.ts +106 -0
- package/src/table-builder/components/table-container/table-container.helpers/groupBy.helpers.ts +86 -0
- package/src/table-builder/components/table-container/table-container.helpers/sort-state.helpers.ts +45 -0
- package/src/table-builder/components/table-container/table-container.html +95 -0
- package/src/table-builder/components/table-container/table-container.spec.ts +154 -0
- package/src/table-builder/components/table-container/table-container.ts +356 -0
- package/src/table-builder/components/table-container/tableProps.ts +20 -0
- package/src/table-builder/components/table-container/virtual-scroll-container.ts +145 -0
- package/src/table-builder/components/table-container-filter/filter-list/filter-list.component.html +31 -0
- package/src/table-builder/components/table-container-filter/filter-list/filter-list.component.ts +46 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.css +42 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.html +10 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.spec.ts +86 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.ts +34 -0
- package/src/table-builder/components/table-container-filter/table-wrapper-filter-store.ts +23 -0
- package/src/table-builder/directives/custom-cell-directive.ts +58 -0
- package/{table-builder/directives/index.d.ts → src/table-builder/directives/index.ts} +6 -5
- package/src/table-builder/directives/multi-sort.directive.spec.ts +124 -0
- package/src/table-builder/directives/multi-sort.directive.ts +51 -0
- package/src/table-builder/directives/resize-column.directive.ts +108 -0
- package/src/table-builder/directives/table-wrapper.directive.ts +14 -0
- package/src/table-builder/directives/tb-filter.directive.ts +396 -0
- package/src/table-builder/enums/filterTypes.ts +40 -0
- package/src/table-builder/functions/boolean-filter-function.ts +12 -0
- package/src/table-builder/functions/date-filter-function.ts +68 -0
- package/src/table-builder/functions/download-data.ts +11 -0
- package/src/table-builder/functions/null-filter-function.ts +9 -0
- package/src/table-builder/functions/number-filter-function.ts +41 -0
- package/src/table-builder/functions/sort-data-function.ts +23 -0
- package/src/table-builder/functions/string-filter-function.ts +51 -0
- package/{table-builder/interfaces/ColumnInfo.d.ts → src/table-builder/interfaces/ColumnInfo.ts} +7 -6
- package/src/table-builder/interfaces/column-template.ts +9 -0
- package/{table-builder/interfaces/dictionary.d.ts → src/table-builder/interfaces/dictionary.ts} +3 -3
- package/src/table-builder/interfaces/report-def.ts +155 -0
- package/src/table-builder/ngrx/tableBuilderStateStore.ts +199 -0
- package/src/table-builder/pipes/column-total.pipe.ts +17 -0
- package/src/table-builder/pipes/format-filter-type.pipe.ts +12 -0
- package/src/table-builder/pipes/format-filter-value.pipe.ts +42 -0
- package/src/table-builder/pipes/key-display.ts +16 -0
- package/src/table-builder/services/export-to-csv.service.ts +97 -0
- package/src/table-builder/services/link-creator.service.ts +67 -0
- package/src/table-builder/services/table-template-service.ts +59 -0
- package/src/table-builder/services/transform-creator.ts +95 -0
- package/src/table-builder/specs/table-custom-filters.spec.ts +262 -0
- package/src/table-builder/styles/collapser.styles.scss +16 -0
- package/src/table-builder/table-builder.module.ts +73 -0
- package/src/test.ts +17 -0
- package/src/utilities/array-helpers.ts +13 -0
- package/src/utilities/directives/auto-focus.directive.ts +21 -0
- package/src/utilities/directives/clickEmitterDirective.ts +16 -0
- package/src/utilities/directives/clickSubject.ts +20 -0
- package/src/utilities/directives/conditional-classes.directive.ts +36 -0
- package/src/utilities/directives/dialog-service.ts +19 -0
- package/src/utilities/directives/dialog.ts +144 -0
- package/src/utilities/directives/mat-toggle-group-directive.ts +61 -0
- package/src/utilities/directives/prevent-enter.directive.ts +13 -0
- package/src/utilities/directives/stop-propagation.directive.ts +20 -0
- package/src/utilities/directives/styler.ts +40 -0
- package/src/utilities/directives/trim-whitespace.directive.ts +21 -0
- package/{utilities/index.d.ts → src/utilities/index.ts} +22 -15
- package/src/utilities/module.ts +55 -0
- package/src/utilities/pipes/function.pipe.ts +16 -0
- package/src/utilities/pipes/phone.pipe.ts +15 -0
- package/src/utilities/pipes/space-case.pipes.spec.ts +47 -0
- package/src/utilities/pipes/space-case.pipes.ts +23 -0
- package/tsconfig.lib.json +19 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/action-state/action-state-spinner/action-state-spinner.component.d.ts +0 -12
- package/action-state/action-state-ui/action-state-ui.module.d.ts +0 -7
- package/action-state/ngrx-ext/ngrx-ext.module.d.ts +0 -8
- package/action-state/ngrx.d.ts +0 -31
- package/esm2022/action-state/action-state-spinner/action-state-spinner.component.mjs +0 -24
- package/esm2022/action-state/action-state-ui/action-state-ui.module.mjs +0 -20
- package/esm2022/action-state/index.mjs +0 -8
- package/esm2022/action-state/ngrx-ext/ngrx-ext.module.mjs +0 -23
- package/esm2022/action-state/ngrx.mjs +0 -47
- package/esm2022/http-request-state/HttpRequestStateFactory.mjs +0 -51
- package/esm2022/http-request-state/HttpRequestStateStore.mjs +0 -121
- package/esm2022/http-request-state/directives/HttpStateDirectiveBase.mjs +0 -30
- package/esm2022/http-request-state/directives/http-error-state-directive.mjs +0 -23
- package/esm2022/http-request-state/directives/http-inProgress-state-directive.mjs +0 -23
- package/esm2022/http-request-state/directives/http-notStarted-state-directive.mjs +0 -23
- package/esm2022/http-request-state/directives/http-success-state-directive.mjs +0 -29
- package/esm2022/http-request-state/directives/index.mjs +0 -6
- package/esm2022/http-request-state/directives/request-state-directive.mjs +0 -61
- package/esm2022/http-request-state/helpers.mjs +0 -22
- package/esm2022/http-request-state/http-request-state.mjs +0 -39
- package/esm2022/http-request-state/http-state-module.mjs +0 -40
- package/esm2022/http-request-state/index.mjs +0 -7
- package/esm2022/http-request-state/rxjs/getRequestorBody.mjs +0 -4
- package/esm2022/http-request-state/rxjs/getRequestorState.mjs +0 -3
- package/esm2022/http-request-state/rxjs/index.mjs +0 -5
- package/esm2022/http-request-state/rxjs/tapError.mjs +0 -12
- package/esm2022/http-request-state/rxjs/tapSuccess.mjs +0 -12
- package/esm2022/http-request-state/types.mjs +0 -16
- package/esm2022/ngrx/actionable-selector.mjs +0 -71
- package/esm2022/ngrx/index.mjs +0 -2
- package/esm2022/one-paragon-angular-utilities.mjs +0 -5
- package/esm2022/public-api.mjs +0 -20
- package/esm2022/rxjs/defaultShareReplay.mjs +0 -7
- package/esm2022/rxjs/index.mjs +0 -6
- package/esm2022/rxjs/mapError.mjs +0 -8
- package/esm2022/rxjs/rxjs-operators.mjs +0 -92
- package/esm2022/rxjs/subjectifier.mjs +0 -15
- package/esm2022/rxjs/subscriber.directive.mjs +0 -50
- package/esm2022/table-builder/classes/DefaultSettings.mjs +0 -6
- package/esm2022/table-builder/classes/MatTableObservableDataSource.mjs +0 -23
- package/esm2022/table-builder/classes/TableBuilderConfig.mjs +0 -18
- package/esm2022/table-builder/classes/TableBuilderDataSource.mjs +0 -54
- package/esm2022/table-builder/classes/TableState.mjs +0 -49
- package/esm2022/table-builder/classes/data-store.mjs +0 -15
- package/esm2022/table-builder/classes/display-col.mjs +0 -2
- package/esm2022/table-builder/classes/filter-info.mjs +0 -61
- package/esm2022/table-builder/classes/table-builder-general-settings.mjs +0 -112
- package/esm2022/table-builder/classes/table-builder.mjs +0 -77
- package/esm2022/table-builder/classes/table-store.mjs +0 -387
- package/esm2022/table-builder/components/array-column.component.mjs +0 -53
- package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +0 -134
- package/esm2022/table-builder/components/column-builder/column-helpers.mjs +0 -47
- package/esm2022/table-builder/components/date-filter/date-filter.component.mjs +0 -29
- package/esm2022/table-builder/components/date-time-filter/date-time-filter.component.mjs +0 -24
- package/esm2022/table-builder/components/filter/filter.component.mjs +0 -64
- package/esm2022/table-builder/components/filter/in-list/in-list-filter.component.mjs +0 -102
- package/esm2022/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +0 -53
- package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +0 -300
- package/esm2022/table-builder/components/generic-table/paginator.component.mjs +0 -98
- package/esm2022/table-builder/components/group-by-list/group-by-list.component.mjs +0 -21
- package/esm2022/table-builder/components/header-menu/header-menu.component.mjs +0 -103
- package/esm2022/table-builder/components/in-filter/in-filter.component.mjs +0 -65
- package/esm2022/table-builder/components/index.mjs +0 -10
- package/esm2022/table-builder/components/initialization-component/initialization-component.mjs +0 -47
- package/esm2022/table-builder/components/link-column.component.mjs +0 -74
- package/esm2022/table-builder/components/number-filter/number-filter.component.mjs +0 -29
- package/esm2022/table-builder/components/profiles-menu/profiles-menu.component.mjs +0 -64
- package/esm2022/table-builder/components/scroll-strategy.mjs +0 -60
- package/esm2022/table-builder/components/sort-menu/sort-menu.component-store.mjs +0 -46
- package/esm2022/table-builder/components/sort-menu/sort-menu.component.mjs +0 -82
- package/esm2022/table-builder/components/table-container/table-container-imports.mjs +0 -26
- package/esm2022/table-builder/components/table-container/table-container.helpers/data-state.helpers.mjs +0 -135
- package/esm2022/table-builder/components/table-container/table-container.helpers/filter-state.helpers.mjs +0 -83
- package/esm2022/table-builder/components/table-container/table-container.helpers/groupBy.helpers.mjs +0 -71
- package/esm2022/table-builder/components/table-container/table-container.helpers/sort-state.helpers.mjs +0 -36
- package/esm2022/table-builder/components/table-container/table-container.mjs +0 -323
- package/esm2022/table-builder/components/table-container/tableProps.mjs +0 -8
- package/esm2022/table-builder/components/table-container/virtual-scroll-container.mjs +0 -128
- package/esm2022/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +0 -44
- package/esm2022/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +0 -36
- package/esm2022/table-builder/components/table-container-filter/table-wrapper-filter-store.mjs +0 -25
- package/esm2022/table-builder/directives/custom-cell-directive.mjs +0 -73
- package/esm2022/table-builder/directives/index.mjs +0 -6
- package/esm2022/table-builder/directives/multi-sort.directive.mjs +0 -50
- package/esm2022/table-builder/directives/resize-column.directive.mjs +0 -87
- package/esm2022/table-builder/directives/table-wrapper.directive.mjs +0 -18
- package/esm2022/table-builder/directives/tb-filter.directive.mjs +0 -405
- package/esm2022/table-builder/enums/filterTypes.mjs +0 -29
- package/esm2022/table-builder/functions/boolean-filter-function.mjs +0 -10
- package/esm2022/table-builder/functions/date-filter-function.mjs +0 -58
- package/esm2022/table-builder/functions/download-data.mjs +0 -12
- package/esm2022/table-builder/functions/null-filter-function.mjs +0 -8
- package/esm2022/table-builder/functions/number-filter-function.mjs +0 -32
- package/esm2022/table-builder/functions/sort-data-function.mjs +0 -17
- package/esm2022/table-builder/functions/string-filter-function.mjs +0 -41
- package/esm2022/table-builder/interfaces/ColumnInfo.mjs +0 -2
- package/esm2022/table-builder/interfaces/dictionary.mjs +0 -2
- package/esm2022/table-builder/interfaces/report-def.mjs +0 -50
- package/esm2022/table-builder/ngrx/tableBuilderStateStore.mjs +0 -154
- package/esm2022/table-builder/pipes/column-total.pipe.mjs +0 -22
- package/esm2022/table-builder/pipes/format-filter-type.pipe.mjs +0 -18
- package/esm2022/table-builder/pipes/format-filter-value.pipe.mjs +0 -43
- package/esm2022/table-builder/pipes/key-display.mjs +0 -18
- package/esm2022/table-builder/services/export-to-csv.service.mjs +0 -85
- package/esm2022/table-builder/services/link-creator.service.mjs +0 -50
- package/esm2022/table-builder/services/table-template-service.mjs +0 -60
- package/esm2022/table-builder/services/transform-creator.mjs +0 -100
- package/esm2022/table-builder/table-builder.module.mjs +0 -124
- package/esm2022/utilities/array-helpers.mjs +0 -14
- package/esm2022/utilities/directives/auto-focus.directive.mjs +0 -25
- package/esm2022/utilities/directives/clickEmitterDirective.mjs +0 -22
- package/esm2022/utilities/directives/clickSubject.mjs +0 -29
- package/esm2022/utilities/directives/conditional-classes.directive.mjs +0 -36
- package/esm2022/utilities/directives/dialog-service.mjs +0 -21
- package/esm2022/utilities/directives/dialog.mjs +0 -145
- package/esm2022/utilities/directives/mat-toggle-group-directive.mjs +0 -59
- package/esm2022/utilities/directives/prevent-enter.directive.mjs +0 -20
- package/esm2022/utilities/directives/stop-propagation.directive.mjs +0 -26
- package/esm2022/utilities/directives/styler.mjs +0 -41
- package/esm2022/utilities/directives/trim-whitespace.directive.mjs +0 -28
- package/esm2022/utilities/index.mjs +0 -16
- package/esm2022/utilities/module.mjs +0 -90
- package/esm2022/utilities/pipes/function.pipe.mjs +0 -22
- package/esm2022/utilities/pipes/phone.pipe.mjs +0 -20
- package/esm2022/utilities/pipes/space-case.pipes.mjs +0 -28
- package/fesm2022/one-paragon-angular-utilities.mjs +0 -5673
- package/fesm2022/one-paragon-angular-utilities.mjs.map +0 -1
- package/http-request-state/HttpRequestStateFactory.d.ts +0 -17
- package/http-request-state/HttpRequestStateStore.d.ts +0 -54
- package/http-request-state/directives/HttpStateDirectiveBase.d.ts +0 -14
- package/http-request-state/directives/http-error-state-directive.d.ts +0 -9
- package/http-request-state/directives/http-inProgress-state-directive.d.ts +0 -9
- package/http-request-state/directives/http-notStarted-state-directive.d.ts +0 -9
- package/http-request-state/directives/http-success-state-directive.d.ts +0 -16
- package/http-request-state/directives/request-state-directive.d.ts +0 -34
- package/http-request-state/helpers.d.ts +0 -9
- package/http-request-state/http-request-state.d.ts +0 -12
- package/http-request-state/http-state-module.d.ts +0 -11
- package/http-request-state/rxjs/getRequestorBody.d.ts +0 -3
- package/http-request-state/rxjs/getRequestorState.d.ts +0 -3
- package/http-request-state/rxjs/tapError.d.ts +0 -3
- package/http-request-state/rxjs/tapSuccess.d.ts +0 -3
- package/http-request-state/types.d.ts +0 -41
- package/index.d.ts +0 -5
- package/ngrx/actionable-selector.d.ts +0 -17
- package/ngrx/index.d.ts +0 -1
- package/rxjs/defaultShareReplay.d.ts +0 -2
- package/rxjs/mapError.d.ts +0 -2
- package/rxjs/rxjs-operators.d.ts +0 -13
- package/rxjs/subjectifier.d.ts +0 -8
- package/rxjs/subscriber.directive.d.ts +0 -14
- package/table-builder/classes/DefaultSettings.d.ts +0 -9
- package/table-builder/classes/MatTableObservableDataSource.d.ts +0 -9
- package/table-builder/classes/TableBuilderConfig.d.ts +0 -21
- package/table-builder/classes/TableBuilderDataSource.d.ts +0 -12
- package/table-builder/classes/TableState.d.ts +0 -67
- package/table-builder/classes/data-store.d.ts +0 -8
- package/table-builder/classes/filter-info.d.ts +0 -35
- package/table-builder/classes/table-builder-general-settings.d.ts +0 -78
- package/table-builder/classes/table-builder.d.ts +0 -18
- package/table-builder/classes/table-store.d.ts +0 -136
- package/table-builder/components/array-column.component.d.ts +0 -15
- package/table-builder/components/column-builder/column-builder.component.d.ts +0 -47
- package/table-builder/components/column-builder/column-helpers.d.ts +0 -36
- package/table-builder/components/date-filter/date-filter.component.d.ts +0 -37
- package/table-builder/components/date-time-filter/date-time-filter.component.d.ts +0 -37
- package/table-builder/components/filter/filter.component.d.ts +0 -46
- package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +0 -24
- package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +0 -15
- package/table-builder/components/generic-table/generic-table.component.d.ts +0 -81
- package/table-builder/components/generic-table/paginator.component.d.ts +0 -29
- package/table-builder/components/group-by-list/group-by-list.component.d.ts +0 -7
- package/table-builder/components/header-menu/header-menu.component.d.ts +0 -51
- package/table-builder/components/in-filter/in-filter.component.d.ts +0 -20
- package/table-builder/components/initialization-component/initialization-component.d.ts +0 -13
- package/table-builder/components/link-column.component.d.ts +0 -25
- package/table-builder/components/number-filter/number-filter.component.d.ts +0 -39
- package/table-builder/components/profiles-menu/profiles-menu.component.d.ts +0 -32
- package/table-builder/components/scroll-strategy.d.ts +0 -22
- package/table-builder/components/sort-menu/sort-menu.component-store.d.ts +0 -24
- package/table-builder/components/sort-menu/sort-menu.component.d.ts +0 -24
- package/table-builder/components/table-container/table-container.d.ts +0 -80
- package/table-builder/components/table-container/table-container.helpers/data-state.helpers.d.ts +0 -6
- package/table-builder/components/table-container/table-container.helpers/filter-state.helpers.d.ts +0 -17
- package/table-builder/components/table-container/table-container.helpers/groupBy.helpers.d.ts +0 -17
- package/table-builder/components/table-container/table-container.helpers/sort-state.helpers.d.ts +0 -8
- package/table-builder/components/table-container/tableProps.d.ts +0 -12
- package/table-builder/components/table-container/virtual-scroll-container.d.ts +0 -22
- package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +0 -15
- package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +0 -12
- package/table-builder/components/table-container-filter/table-wrapper-filter-store.d.ts +0 -14
- package/table-builder/directives/custom-cell-directive.d.ts +0 -33
- package/table-builder/directives/multi-sort.directive.d.ts +0 -10
- package/table-builder/directives/resize-column.directive.d.ts +0 -43
- package/table-builder/directives/table-wrapper.directive.d.ts +0 -8
- package/table-builder/directives/tb-filter.directive.d.ts +0 -116
- package/table-builder/enums/filterTypes.d.ts +0 -36
- package/table-builder/functions/boolean-filter-function.d.ts +0 -3
- package/table-builder/functions/date-filter-function.d.ts +0 -4
- package/table-builder/functions/download-data.d.ts +0 -1
- package/table-builder/functions/null-filter-function.d.ts +0 -2
- package/table-builder/functions/number-filter-function.d.ts +0 -4
- package/table-builder/functions/sort-data-function.d.ts +0 -6
- package/table-builder/functions/string-filter-function.d.ts +0 -5
- package/table-builder/interfaces/report-def.d.ts +0 -147
- package/table-builder/ngrx/tableBuilderStateStore.d.ts +0 -70
- package/table-builder/pipes/column-total.pipe.d.ts +0 -8
- package/table-builder/pipes/format-filter-type.pipe.d.ts +0 -8
- package/table-builder/pipes/format-filter-value.pipe.d.ts +0 -12
- package/table-builder/pipes/key-display.d.ts +0 -10
- package/table-builder/services/export-to-csv.service.d.ts +0 -19
- package/table-builder/services/link-creator.service.d.ts +0 -16
- package/table-builder/services/table-template-service.d.ts +0 -14
- package/table-builder/services/transform-creator.d.ts +0 -16
- package/table-builder/table-builder.module.d.ts +0 -21
- package/utilities/array-helpers.d.ts +0 -1
- package/utilities/directives/auto-focus.directive.d.ts +0 -9
- package/utilities/directives/clickEmitterDirective.d.ts +0 -7
- package/utilities/directives/clickSubject.d.ts +0 -9
- package/utilities/directives/conditional-classes.directive.d.ts +0 -13
- package/utilities/directives/dialog-service.d.ts +0 -10
- package/utilities/directives/dialog.d.ts +0 -44
- package/utilities/directives/mat-toggle-group-directive.d.ts +0 -21
- package/utilities/directives/prevent-enter.directive.d.ts +0 -6
- package/utilities/directives/stop-propagation.directive.d.ts +0 -7
- package/utilities/directives/styler.d.ts +0 -15
- package/utilities/directives/trim-whitespace.directive.d.ts +0 -7
- package/utilities/module.d.ts +0 -19
- package/utilities/pipes/function.pipe.d.ts +0 -7
- package/utilities/pipes/phone.pipe.d.ts +0 -7
- package/utilities/pipes/space-case.pipes.d.ts +0 -17
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import { MetaData } from '../interfaces/report-def';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { GroupedData, InitializationState, PersistedTableState, TableState } from './TableState';
|
|
4
|
-
import { Predicate } from '@angular/core';
|
|
5
|
-
import { CustomFilter, FilterInfo } from './filter-info';
|
|
6
|
-
import { Sort, SortDirection } from '@angular/material/sort';
|
|
7
|
-
import { ComponentStore } from '@ngrx/component-store';
|
|
8
|
-
import { Dictionary } from '../interfaces/dictionary';
|
|
9
|
-
import { GeneralTableSettings, NotPersistedTableSettings, PersistedTableSettings } from './table-builder-general-settings';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare function stateIs(initializationState: InitializationState): (state: TableState) => boolean;
|
|
12
|
-
export declare class TableStore extends ComponentStore<TableState> {
|
|
13
|
-
constructor();
|
|
14
|
-
selectStateReady: Observable<InitializationState>;
|
|
15
|
-
getSavableState(): Observable<PersistedTableState>;
|
|
16
|
-
getSavableStateSignal: import("@angular/core").Signal<PersistedTableState>;
|
|
17
|
-
private mapSaveableState;
|
|
18
|
-
on: <V>(srcObservable: Observable<V>, func: (obj: V) => void) => this;
|
|
19
|
-
readonly metaData$: Observable<Dictionary<MetaData>>;
|
|
20
|
-
$metaData: import("@angular/core").Signal<Dictionary<MetaData>>;
|
|
21
|
-
$userDefinedOrder: import("@angular/core").Signal<Dictionary<number>>;
|
|
22
|
-
$hiddenKeys: import("@angular/core").Signal<string[]>;
|
|
23
|
-
$metaDataArray: import("@angular/core").Signal<MetaData[]>;
|
|
24
|
-
getMetaData$: (key: string) => Observable<MetaData>;
|
|
25
|
-
$getUserDefinedWidth: (key: string) => import("@angular/core").Signal<number>;
|
|
26
|
-
$getUserDefinedWidths: import("@angular/core").Signal<Dictionary<number>>;
|
|
27
|
-
tableSettingsMinWidth: import("@angular/core").Signal<number | undefined>;
|
|
28
|
-
readonly resetState: () => void;
|
|
29
|
-
readonly showColumn: (observableOrValue: string | Observable<string>) => import("rxjs").Subscription;
|
|
30
|
-
readonly hideColumn: (observableOrValue: string | Observable<string>) => import("rxjs").Subscription;
|
|
31
|
-
readonly setHiddenColumns: (observableOrValue: {
|
|
32
|
-
key: string;
|
|
33
|
-
visible: boolean;
|
|
34
|
-
}[] | Observable<{
|
|
35
|
-
key: string;
|
|
36
|
-
visible: boolean;
|
|
37
|
-
}[]>) => import("rxjs").Subscription;
|
|
38
|
-
setUserDefinedWidth: (observableOrValue: {
|
|
39
|
-
key: string;
|
|
40
|
-
widthInPixel: number;
|
|
41
|
-
}[] | Observable<{
|
|
42
|
-
key: string;
|
|
43
|
-
widthInPixel: number;
|
|
44
|
-
}[]>) => import("rxjs").Subscription;
|
|
45
|
-
setUserDefinedOrder: (observableOrValue: {
|
|
46
|
-
newOrder: number;
|
|
47
|
-
oldOrder: number;
|
|
48
|
-
} | Observable<{
|
|
49
|
-
newOrder: number;
|
|
50
|
-
oldOrder: number;
|
|
51
|
-
}>) => import("rxjs").Subscription;
|
|
52
|
-
$filters: import("@angular/core").Signal<Dictionary<FilterInfo<any, any> | CustomFilter<any>>>;
|
|
53
|
-
readonly filters$: Observable<Dictionary<FilterInfo<any, any> | CustomFilter<any>>>;
|
|
54
|
-
readonly getFilter$: (filterId: string) => Observable<FilterInfo | CustomFilter | undefined>;
|
|
55
|
-
readonly addFilter: (observableOrValue: FilterInfo<any, any> | CustomFilter<any> | Observable<FilterInfo<any, any> | CustomFilter<any>>) => import("rxjs").Subscription;
|
|
56
|
-
readonly addFilters: (observableOrValue: (FilterInfo<any, any> | CustomFilter<any>)[] | Observable<(FilterInfo<any, any> | CustomFilter<any>)[]>) => import("rxjs").Subscription;
|
|
57
|
-
private addFiltersToState;
|
|
58
|
-
readonly removeFilter: (observableOrValue: string | Observable<string>) => import("rxjs").Subscription;
|
|
59
|
-
readonly removeFilters: (observableOrValue: string[] | Observable<string[]>) => import("rxjs").Subscription;
|
|
60
|
-
readonly clearFilters: () => void;
|
|
61
|
-
selectSorted: Observable<Sort[]>;
|
|
62
|
-
readonly sort$: Observable<Sort[]>;
|
|
63
|
-
createPreSort: (metaDatas: Dictionary<MetaData>) => Sort[];
|
|
64
|
-
readonly setSort: (observableOrValue: {
|
|
65
|
-
key: string;
|
|
66
|
-
direction?: SortDirection | undefined;
|
|
67
|
-
} | Observable<{
|
|
68
|
-
key: string;
|
|
69
|
-
direction?: SortDirection | undefined;
|
|
70
|
-
}>) => import("rxjs").Subscription;
|
|
71
|
-
readonly setAllSort: (observableOrValue: Sort[] | Observable<Sort[]>) => import("rxjs").Subscription;
|
|
72
|
-
updateStateFunc: (state: TableState, incomingTableState: Partial<TableState>) => TableState;
|
|
73
|
-
readonly setPageSize: (observableOrValue: number | Observable<number>) => import("rxjs").Subscription;
|
|
74
|
-
getPageSize: Observable<number>;
|
|
75
|
-
readonly updateState: (observableOrValue: Partial<TableState> | Observable<Partial<TableState>>) => import("rxjs").Subscription;
|
|
76
|
-
readonly updateStateFromPersistedState: (observableOrValue: PersistedTableState | Observable<PersistedTableState>) => import("rxjs").Subscription;
|
|
77
|
-
getUserDefinedTableSize: import("@angular/core").Signal<number | undefined>;
|
|
78
|
-
getUserDefinedTableSize$: Observable<number | undefined>;
|
|
79
|
-
setTableWidth: (observableOrValue: number | Observable<number>) => import("rxjs").Subscription;
|
|
80
|
-
mergeMeta: (orig: MetaData, merge: MetaData) => MetaData;
|
|
81
|
-
readonly setInitializationState: (observableOrValue: InitializationState | Observable<InitializationState>) => import("rxjs").Subscription;
|
|
82
|
-
runOnceWhen(predicate: Predicate<TableState>, func: (state: TableState) => void): void;
|
|
83
|
-
onReady(func: (state: TableState) => void): void;
|
|
84
|
-
readonly setMetaData: (observableOrValue: MetaData[] | Observable<MetaData[]>) => import("rxjs").Subscription;
|
|
85
|
-
private initializeOrder;
|
|
86
|
-
toggleCollapseHeader: () => void;
|
|
87
|
-
toggleCollapseFooter: () => void;
|
|
88
|
-
addGroupByKey: (observableOrValue: string | Observable<string>) => import("rxjs").Subscription;
|
|
89
|
-
removeGroupByKey: (observableOrValue: string | Observable<string>) => import("rxjs").Subscription;
|
|
90
|
-
updateExpandedGroups: (observableOrValue: {
|
|
91
|
-
key: string;
|
|
92
|
-
groupKey: string;
|
|
93
|
-
isExpanded: boolean;
|
|
94
|
-
} | Observable<{
|
|
95
|
-
key: string;
|
|
96
|
-
groupKey: string;
|
|
97
|
-
isExpanded: boolean;
|
|
98
|
-
}>) => import("rxjs").Subscription;
|
|
99
|
-
expandAllOfGroup: (observableOrValue: {
|
|
100
|
-
groupHeadersByKey: Dictionary<{
|
|
101
|
-
groupName: string;
|
|
102
|
-
}[]>;
|
|
103
|
-
} | Observable<{
|
|
104
|
-
groupHeadersByKey: Dictionary<{
|
|
105
|
-
groupName: string;
|
|
106
|
-
}[]>;
|
|
107
|
-
}>) => import("rxjs").Subscription;
|
|
108
|
-
collapseAll: () => void;
|
|
109
|
-
collapseAllOfKey: (observableOrValue: {
|
|
110
|
-
keys: string[];
|
|
111
|
-
} | Observable<{
|
|
112
|
-
keys: string[];
|
|
113
|
-
}>) => import("rxjs").Subscription;
|
|
114
|
-
groupByKeys$: Observable<string[]>;
|
|
115
|
-
expandedGroups$: Observable<GroupedData[]>;
|
|
116
|
-
setTableSettings: (observableOrValue: GeneralTableSettings | Observable<GeneralTableSettings>) => import("rxjs").Subscription;
|
|
117
|
-
tableSettings: import("@angular/core").Signal<PersistedTableSettings & NotPersistedTableSettings>;
|
|
118
|
-
tableSettings$: Observable<PersistedTableSettings & NotPersistedTableSettings>;
|
|
119
|
-
props: import("@angular/core").Signal<import("../components/table-container/tableProps").TableProps>;
|
|
120
|
-
setLinkMaps: (() => void) | ((observableOrValue: any) => import("rxjs").Subscription);
|
|
121
|
-
getLinkInfo: (md: MetaData) => import("@angular/core").Signal<import("../services/link-creator.service").LinkInfo>;
|
|
122
|
-
getIsExpanded: (columnKey: string, groupHeaderKey: string) => import("@angular/core").Signal<boolean>;
|
|
123
|
-
$isVirtual: import("@angular/core").Signal<boolean>;
|
|
124
|
-
$viewType: import("@angular/core").Signal<ViewType>;
|
|
125
|
-
viewType$: Observable<ViewType>;
|
|
126
|
-
$orderedVisibleColumns: import("@angular/core").Signal<string[]>;
|
|
127
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableStore, never>;
|
|
128
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TableStore>;
|
|
129
|
-
}
|
|
130
|
-
export declare const orderedVisibleColumns: (state: TableState) => string[];
|
|
131
|
-
export declare const orderedStateVisibleMetaData: (state: TableState) => MetaData[];
|
|
132
|
-
export declare const orderedVisibleMetaData: (metaData: Dictionary<MetaData>, userDefinedOrder: Dictionary<number>, hiddenKeys: string[]) => MetaData[];
|
|
133
|
-
export declare const orderedCodeVisibleMetaData: (state: TableState) => MetaData[];
|
|
134
|
-
export declare const orderStateMetaData: (state: TableState) => MetaData[];
|
|
135
|
-
export declare const orderMetaData: (metaData: Dictionary<MetaData>, userDefined: Dictionary<number>) => MetaData[];
|
|
136
|
-
export type ViewType = 'virtual paginator' | 'paginator' | 'virtual all' | 'all';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ArrayCommaColumnComponent {
|
|
3
|
-
value: import("@angular/core").InputSignal<(string | number)[]>;
|
|
4
|
-
additional: import("@angular/core").InputSignal<number>;
|
|
5
|
-
displayArray: import("@angular/core").Signal<(string | number)[]>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayCommaColumnComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ArrayCommaColumnComponent, "tb-comma-array-column", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "additional": { "alias": "additional"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
9
|
-
export declare class ArrayNewLineColumnComponent {
|
|
10
|
-
value: import("@angular/core").InputSignal<(string | number)[]>;
|
|
11
|
-
additional: import("@angular/core").InputSignal<number>;
|
|
12
|
-
displayArray: import("@angular/core").Signal<(string | number)[]>;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayNewLineColumnComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ArrayNewLineColumnComponent, "tb-new-line-array-column", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "additional": { "alias": "additional"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { TemplateRef, OnInit, Predicate, Injector } from '@angular/core';
|
|
2
|
-
import { FieldType, MetaData } from '../../interfaces/report-def';
|
|
3
|
-
import { MatColumnDef } from '@angular/material/table';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CustomCellDirective } from '../../directives';
|
|
6
|
-
import { FilterInfo } from '../../classes/filter-info';
|
|
7
|
-
import { Dictionary } from '@ngrx/entity';
|
|
8
|
-
import { LinkInfo } from '../../services/link-creator.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class ColumnBuilderComponent implements OnInit {
|
|
11
|
-
private transformCreator;
|
|
12
|
-
private table;
|
|
13
|
-
private state;
|
|
14
|
-
private templateService;
|
|
15
|
-
protected injector: Injector;
|
|
16
|
-
columnDef: MatColumnDef;
|
|
17
|
-
bodyTemplate: TemplateRef<any>;
|
|
18
|
-
tableConfig: import("../../classes/TableBuilderConfig").TableBuilderConfig;
|
|
19
|
-
FieldType: typeof FieldType;
|
|
20
|
-
filter: Partial<FilterInfo>;
|
|
21
|
-
_metaData: MetaData;
|
|
22
|
-
get metaData(): MetaData;
|
|
23
|
-
set metaData(md: MetaData);
|
|
24
|
-
customCell?: CustomCellDirective;
|
|
25
|
-
data$: Observable<any[]>;
|
|
26
|
-
outerTemplate: TemplateRef<any>;
|
|
27
|
-
innerTemplate: TemplateRef<any>;
|
|
28
|
-
transform: (o: any, ...args: any[]) => any;
|
|
29
|
-
getInnerTemplate(): TemplateRef<any>;
|
|
30
|
-
showFilters$: Observable<boolean>;
|
|
31
|
-
getOuterTemplate(): TemplateRef<any>;
|
|
32
|
-
classes?: Dictionary<Predicate<any>>;
|
|
33
|
-
styles: import("@angular/core").Signal<{
|
|
34
|
-
header: Dictionary<string>;
|
|
35
|
-
body: import("../../../utilities").StylerStyle;
|
|
36
|
-
footer: Dictionary<string>;
|
|
37
|
-
}>;
|
|
38
|
-
ngOnInit(): void;
|
|
39
|
-
ngAfterViewInit(): void;
|
|
40
|
-
initialSetUp(): void;
|
|
41
|
-
furtherSetUp(): void;
|
|
42
|
-
cellClicked(element: any, key: string): void;
|
|
43
|
-
getTooltip: (element: any) => string;
|
|
44
|
-
additional: LinkInfo | number | undefined;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBuilderComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
47
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Dictionary } from "@ngrx/entity";
|
|
2
|
-
import { MetaData } from "../../interfaces/report-def";
|
|
3
|
-
import { StylerStyle } from "../../../utilities/directives/styler";
|
|
4
|
-
export declare const calculateWidths: (metaData: MetaData, userDefinedWidth: number | undefined) => string | undefined;
|
|
5
|
-
export declare function calculateUserDefinedWidth(userDefinedWidth: number | undefined): {
|
|
6
|
-
flex: string;
|
|
7
|
-
maxWidth: string;
|
|
8
|
-
} | undefined;
|
|
9
|
-
export declare function calculateTableDefinedWidth(metaData: MetaData, tableSettingsMinWidth: number | undefined): {
|
|
10
|
-
flex: string;
|
|
11
|
-
} | {
|
|
12
|
-
flex: string;
|
|
13
|
-
maxWidth: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const calculateFlexWidth: (metaData: MetaData, userDefinedWidth: number | undefined, tableSettingsMinWidth: number | undefined) => {
|
|
16
|
-
flex: string;
|
|
17
|
-
} | {
|
|
18
|
-
flex: string;
|
|
19
|
-
maxWidth: string;
|
|
20
|
-
};
|
|
21
|
-
export declare const columnStyles: (metaData: MetaData, userDefinedWidth: number | undefined, tableSettingsMinWidth?: number | undefined) => {
|
|
22
|
-
header: Dictionary<string>;
|
|
23
|
-
body: StylerStyle;
|
|
24
|
-
footer: Dictionary<string>;
|
|
25
|
-
};
|
|
26
|
-
export declare const calculateFlexWidths: (metaDatas: MetaData[], userDefinedWidths: Dictionary<number>, tableSettingsMinWidth: number | undefined) => import("../../interfaces/dictionary").Dictionary<{
|
|
27
|
-
flex: string;
|
|
28
|
-
} | {
|
|
29
|
-
flex: string;
|
|
30
|
-
maxWidth: string;
|
|
31
|
-
}>;
|
|
32
|
-
export declare const columnsStyles: (metaDatas: MetaData[], userDefinedWidths: Dictionary<number>) => import("../../interfaces/dictionary").Dictionary<{
|
|
33
|
-
header: Dictionary<string>;
|
|
34
|
-
body: StylerStyle;
|
|
35
|
-
footer: Dictionary<string>;
|
|
36
|
-
}>;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { PartialFilter } from '../../classes/filter-info';
|
|
2
|
-
import { FilterType } from '../../enums/filterTypes';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DateFilterComponent {
|
|
5
|
-
FilterType: {
|
|
6
|
-
readonly NumberEquals: "Equals";
|
|
7
|
-
readonly NumberNotEqual: "Does Not Equal";
|
|
8
|
-
readonly NumberGreaterThan: "Greater Than";
|
|
9
|
-
readonly NumberLessThan: "Less Than";
|
|
10
|
-
readonly NumberBetween: "Between";
|
|
11
|
-
readonly StringEquals: "Equals";
|
|
12
|
-
readonly StringContains: "Contains";
|
|
13
|
-
readonly StringDoesNotContain: "Does Not Contain";
|
|
14
|
-
readonly StringStartWith: "Start With";
|
|
15
|
-
readonly StringEndsWith: "Ends With";
|
|
16
|
-
readonly DateIsOn: "Is on";
|
|
17
|
-
readonly DateIsNotOn: "Is Not On";
|
|
18
|
-
readonly DateOnOrAfter: "On or After";
|
|
19
|
-
readonly DateOnOrBefore: "On or Before";
|
|
20
|
-
readonly DateBetween: "Between";
|
|
21
|
-
readonly DateTimeIsAt: "Is At";
|
|
22
|
-
readonly DateTimeIsNotAt: "Is Not At";
|
|
23
|
-
readonly DateTimeAtOrAfter: "At or After";
|
|
24
|
-
readonly DateTimeAtOrBefore: "At or Before";
|
|
25
|
-
readonly DateTimeBetween: "Between";
|
|
26
|
-
readonly BooleanEquals: "Is";
|
|
27
|
-
readonly IsNull: "Is Blank";
|
|
28
|
-
readonly Or: "Or";
|
|
29
|
-
readonly And: "And";
|
|
30
|
-
readonly In: "In";
|
|
31
|
-
readonly Custom: "Custom";
|
|
32
|
-
};
|
|
33
|
-
info: PartialFilter;
|
|
34
|
-
CurrentFilterType: FilterType;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "tb-date-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { PartialFilter } from '../../classes/filter-info';
|
|
2
|
-
import { FilterType } from '../../enums/filterTypes';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DateTimeFilterComponent {
|
|
5
|
-
FilterType: {
|
|
6
|
-
readonly NumberEquals: "Equals";
|
|
7
|
-
readonly NumberNotEqual: "Does Not Equal";
|
|
8
|
-
readonly NumberGreaterThan: "Greater Than";
|
|
9
|
-
readonly NumberLessThan: "Less Than";
|
|
10
|
-
readonly NumberBetween: "Between";
|
|
11
|
-
readonly StringEquals: "Equals";
|
|
12
|
-
readonly StringContains: "Contains";
|
|
13
|
-
readonly StringDoesNotContain: "Does Not Contain";
|
|
14
|
-
readonly StringStartWith: "Start With";
|
|
15
|
-
readonly StringEndsWith: "Ends With";
|
|
16
|
-
readonly DateIsOn: "Is on";
|
|
17
|
-
readonly DateIsNotOn: "Is Not On";
|
|
18
|
-
readonly DateOnOrAfter: "On or After";
|
|
19
|
-
readonly DateOnOrBefore: "On or Before";
|
|
20
|
-
readonly DateBetween: "Between";
|
|
21
|
-
readonly DateTimeIsAt: "Is At";
|
|
22
|
-
readonly DateTimeIsNotAt: "Is Not At";
|
|
23
|
-
readonly DateTimeAtOrAfter: "At or After";
|
|
24
|
-
readonly DateTimeAtOrBefore: "At or Before";
|
|
25
|
-
readonly DateTimeBetween: "Between";
|
|
26
|
-
readonly BooleanEquals: "Is";
|
|
27
|
-
readonly IsNull: "Is Blank";
|
|
28
|
-
readonly Or: "Or";
|
|
29
|
-
readonly And: "And";
|
|
30
|
-
readonly In: "In";
|
|
31
|
-
readonly Custom: "Custom";
|
|
32
|
-
};
|
|
33
|
-
info: PartialFilter;
|
|
34
|
-
CurrentFilterType: FilterType;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeFilterComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeFilterComponent, "tb-date-time-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
|
-
}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { FilterInfo, PartialFilter } from '../../classes/filter-info';
|
|
2
|
-
import { TableStore } from '../../classes/table-store';
|
|
3
|
-
import { FilterType } from '../../enums/filterTypes';
|
|
4
|
-
import { FieldType } from '../../interfaces/report-def';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FilterComponent<T extends FieldType> {
|
|
7
|
-
protected state: TableStore;
|
|
8
|
-
filterTypes: Record<FieldType, FilterType[]>;
|
|
9
|
-
FilterType: {
|
|
10
|
-
readonly NumberEquals: "Equals";
|
|
11
|
-
readonly NumberNotEqual: "Does Not Equal";
|
|
12
|
-
readonly NumberGreaterThan: "Greater Than";
|
|
13
|
-
readonly NumberLessThan: "Less Than";
|
|
14
|
-
readonly NumberBetween: "Between";
|
|
15
|
-
readonly StringEquals: "Equals";
|
|
16
|
-
readonly StringContains: "Contains";
|
|
17
|
-
readonly StringDoesNotContain: "Does Not Contain";
|
|
18
|
-
readonly StringStartWith: "Start With";
|
|
19
|
-
readonly StringEndsWith: "Ends With";
|
|
20
|
-
readonly DateIsOn: "Is on";
|
|
21
|
-
readonly DateIsNotOn: "Is Not On";
|
|
22
|
-
readonly DateOnOrAfter: "On or After";
|
|
23
|
-
readonly DateOnOrBefore: "On or Before";
|
|
24
|
-
readonly DateBetween: "Between";
|
|
25
|
-
readonly DateTimeIsAt: "Is At";
|
|
26
|
-
readonly DateTimeIsNotAt: "Is Not At";
|
|
27
|
-
readonly DateTimeAtOrAfter: "At or After";
|
|
28
|
-
readonly DateTimeAtOrBefore: "At or Before";
|
|
29
|
-
readonly DateTimeBetween: "Between";
|
|
30
|
-
readonly BooleanEquals: "Is";
|
|
31
|
-
readonly IsNull: "Is Blank";
|
|
32
|
-
readonly Or: "Or";
|
|
33
|
-
readonly And: "And";
|
|
34
|
-
readonly In: "In";
|
|
35
|
-
readonly Custom: "Custom";
|
|
36
|
-
};
|
|
37
|
-
FieldType: typeof FieldType;
|
|
38
|
-
$filter: import("@angular/core").InputSignalWithTransform<PartialFilter, PartialFilter>;
|
|
39
|
-
close: import("@angular/core").OutputEmitterRef<void>;
|
|
40
|
-
$enteredFilterType: import("@angular/core").WritableSignal<FilterType | undefined>;
|
|
41
|
-
$currentFilterType: import("@angular/core").Signal<FilterType | undefined>;
|
|
42
|
-
$availableFilterTypes: import("@angular/core").Signal<FilterType[]>;
|
|
43
|
-
onEnter(filter: FilterInfo, event: any): void;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent<any>, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "tb-filter", never, { "$filter": { "alias": "filter"; "required": true; "isSignal": true; }; }, { "close": "close"; }, never, never, true, never>;
|
|
46
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { Dictionary } from '../../../interfaces/dictionary';
|
|
4
|
-
import { FieldType, MetaData } from '../../../interfaces/report-def';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InListFilterComponent implements ControlValueAccessor {
|
|
7
|
-
private ref;
|
|
8
|
-
private tableState;
|
|
9
|
-
value: string[];
|
|
10
|
-
FieldType: typeof FieldType;
|
|
11
|
-
writeValue(obj: string[]): void;
|
|
12
|
-
onChange: (_: any) => void;
|
|
13
|
-
registerOnChange(fn: any): void;
|
|
14
|
-
onTouched: () => void;
|
|
15
|
-
registerOnTouched(fn: any): void;
|
|
16
|
-
key: string;
|
|
17
|
-
keyValues$: Observable<Dictionary<string>>;
|
|
18
|
-
selectedKeys: string[];
|
|
19
|
-
metaData: MetaData;
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
selectFilterChanged($event: any, val: any): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InListFilterComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InListFilterComponent, "tb-in-list-filter , [tb-in-list-filter]", never, { "key": { "alias": "key"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { DisplayCol } from '../../classes/display-col';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class GenColDisplayerComponent {
|
|
6
|
-
private tableState;
|
|
7
|
-
columns$: Observable<DisplayCol[]>;
|
|
8
|
-
constructor();
|
|
9
|
-
reset(displayCols: DisplayCol[]): void;
|
|
10
|
-
drop(event: CdkDragDrop<string[]>): void;
|
|
11
|
-
unset(displayCols: DisplayCol[]): void;
|
|
12
|
-
emit(displayCols: DisplayCol[]): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GenColDisplayerComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenColDisplayerComponent, "tb-col-displayer", never, {}, {}, never, never, true, never>;
|
|
15
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { SimpleChanges, OnInit, QueryList, Injector, EventEmitter } from '@angular/core';
|
|
2
|
-
import { MatFooterRowDef, MatHeaderRowDef, MatRowDef, MatTable } from '@angular/material/table';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { SelectionChange, SelectionModel } from '@angular/cdk/collections';
|
|
5
|
-
import { TableStore } from '../../classes/table-store';
|
|
6
|
-
import { ColumnBuilderComponent } from '../column-builder/column-builder.component';
|
|
7
|
-
import { Dictionary } from '../../interfaces/dictionary';
|
|
8
|
-
import { ColumnInfo } from '../../interfaces/ColumnInfo';
|
|
9
|
-
import { CdkDragDrop, CdkDropList } from '@angular/cdk/drag-drop';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class GenericTableComponent implements OnInit {
|
|
12
|
-
protected state: TableStore;
|
|
13
|
-
private dataStore;
|
|
14
|
-
private viewContainer;
|
|
15
|
-
private transformCreator;
|
|
16
|
-
$headerRow: import("@angular/core").Signal<MatHeaderRowDef | undefined>;
|
|
17
|
-
$footerRow: import("@angular/core").Signal<MatFooterRowDef | undefined>;
|
|
18
|
-
$table: import("@angular/core").Signal<MatTable<any> | undefined>;
|
|
19
|
-
drop(event: CdkDragDrop<string[]>): void;
|
|
20
|
-
_trackBy?: string;
|
|
21
|
-
set trackBy(trackBy: string);
|
|
22
|
-
get trackBy(): string | undefined;
|
|
23
|
-
$displayData: import("@angular/core").InputSignal<any[]>;
|
|
24
|
-
$displayDataLength: import("@angular/core").Signal<number>;
|
|
25
|
-
$hasFooterMeta: import("@angular/core").Signal<boolean>;
|
|
26
|
-
$data: import("@angular/core").InputSignal<any[]>;
|
|
27
|
-
data$: Observable<any[]>;
|
|
28
|
-
rows: QueryList<MatRowDef<any>>;
|
|
29
|
-
columnBuilders: ColumnBuilderComponent[];
|
|
30
|
-
$columnInfos: import("@angular/core").InputSignal<ColumnInfo[]>;
|
|
31
|
-
$hasCustomFooter: import("@angular/core").Signal<boolean>;
|
|
32
|
-
dropList: CdkDropList;
|
|
33
|
-
$footerRowStyle: import("@angular/core").Signal<"regular-footer" | "no-footer" | "small-footer">;
|
|
34
|
-
$showFooterRow: import("@angular/core").Signal<boolean>;
|
|
35
|
-
currentColumns: string[];
|
|
36
|
-
_injector: Injector;
|
|
37
|
-
injector: Injector;
|
|
38
|
-
rowDefArr: MatRowDef<any>[];
|
|
39
|
-
$hasSelectColumn: import("@angular/core").Signal<boolean>;
|
|
40
|
-
$hasIndexColumn: import("@angular/core").Signal<boolean>;
|
|
41
|
-
myColumns: import("@angular/core").WritableSignal<Dictionary<ColumnBuilderComponent>>;
|
|
42
|
-
$showHeader: import("@angular/core").Signal<boolean>;
|
|
43
|
-
offset$: Observable<number>;
|
|
44
|
-
offsetIndex: number;
|
|
45
|
-
dataView: Observable<any[]>;
|
|
46
|
-
constructor();
|
|
47
|
-
defaultTrackBy: (index: number, item: any) => any;
|
|
48
|
-
trackByFunction: (index: number, item: any) => any;
|
|
49
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
50
|
-
$keys: import("@angular/core").Signal<string[]>;
|
|
51
|
-
keys$: Observable<string[]>;
|
|
52
|
-
ngOnInit(): void;
|
|
53
|
-
isGroupHeader(_: number, row: {
|
|
54
|
-
isGroupHeader: boolean;
|
|
55
|
-
}): boolean;
|
|
56
|
-
setExpanded(key: string, groupKey: string, isExpanded: boolean): void;
|
|
57
|
-
addMetaData(column: ColumnInfo): void;
|
|
58
|
-
initializeRowDefs: (defs: MatRowDef<any>[]) => void;
|
|
59
|
-
selection: SelectionModel<any>;
|
|
60
|
-
selection$: EventEmitter<SelectionChange<any>>;
|
|
61
|
-
masterToggleChecked$: Observable<boolean>;
|
|
62
|
-
masterToggleIndeterminate$: Observable<boolean>;
|
|
63
|
-
setUpSelections(trackBy?: string): void;
|
|
64
|
-
$selectableData: import("@angular/core").Signal<any[]>;
|
|
65
|
-
selectableData$: Observable<any[]>;
|
|
66
|
-
isAllSelected(): boolean;
|
|
67
|
-
/** Selects all rows if they are not all selected; otherwise clear selection. */
|
|
68
|
-
masterToggle(): void;
|
|
69
|
-
tableWidth: Observable<{
|
|
70
|
-
width: string;
|
|
71
|
-
} | {
|
|
72
|
-
width?: undefined;
|
|
73
|
-
}>;
|
|
74
|
-
getTransform: (key: string, val: string) => any;
|
|
75
|
-
$rowHeight: import("@angular/core").Signal<string | undefined>;
|
|
76
|
-
$headerHeight: import("@angular/core").Signal<string | undefined>;
|
|
77
|
-
$groupHeaderHeight: import("@angular/core").Signal<string | undefined>;
|
|
78
|
-
$stickyFooter: import("@angular/core").Signal<boolean>;
|
|
79
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GenericTableComponent, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenericTableComponent, "tb-generic-table", never, { "trackBy": { "alias": "trackBy"; "required": false; }; "$displayData": { "alias": "displayData"; "required": true; "isSignal": true; }; "$data": { "alias": "data"; "required": true; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; }; "columnBuilders": { "alias": "columnBuilders"; "required": false; }; "$columnInfos": { "alias": "columnInfos"; "required": true; "isSignal": true; }; }, { "selection$": "selection$"; }, never, never, true, never>;
|
|
81
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit, ElementRef } from '@angular/core';
|
|
2
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class PaginatorComponent implements OnInit, AfterViewInit {
|
|
6
|
-
private state;
|
|
7
|
-
private data;
|
|
8
|
-
paginator: MatPaginator;
|
|
9
|
-
currentPageData$: Observable<CurrentPageDetails>;
|
|
10
|
-
$collapseFooter: import("@angular/core").Signal<boolean>;
|
|
11
|
-
data$: Observable<any[]>;
|
|
12
|
-
tableElRef: ElementRef;
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
ngAfterViewInit(): void;
|
|
15
|
-
paginatorChange(): void;
|
|
16
|
-
ourPageEvent: boolean;
|
|
17
|
-
$showAllOption: import("@angular/core").Signal<boolean>;
|
|
18
|
-
$showAll: import("@angular/core").Signal<boolean>;
|
|
19
|
-
updatePaginator: () => void;
|
|
20
|
-
showAll(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "tb-paginator", never, { "data$": { "alias": "data$"; "required": false; }; "tableElRef": { "alias": "tableElRef"; "required": true; }; }, {}, never, never, true, never>;
|
|
23
|
-
}
|
|
24
|
-
interface CurrentPageDetails {
|
|
25
|
-
currentStart: number;
|
|
26
|
-
currentEnd: number;
|
|
27
|
-
total: number;
|
|
28
|
-
}
|
|
29
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { TableStore } from '../../classes/table-store';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class GroupByListComponent {
|
|
4
|
-
tableStore: TableStore;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GroupByListComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupByListComponent, "group-by-list", never, {}, {}, never, never, true, never>;
|
|
7
|
-
}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { FieldType, MetaData } from '../../interfaces/report-def';
|
|
2
|
-
import { FilterType } from '../../enums/filterTypes';
|
|
3
|
-
import { FilterInfo } from '../../classes/filter-info';
|
|
4
|
-
import { TableStore } from '../../classes/table-store';
|
|
5
|
-
import { MatMenuTrigger } from '@angular/material/menu';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class HeaderMenuComponent {
|
|
8
|
-
protected tableState: TableStore;
|
|
9
|
-
FieldType: typeof FieldType;
|
|
10
|
-
FilterType: {
|
|
11
|
-
readonly NumberEquals: "Equals";
|
|
12
|
-
readonly NumberNotEqual: "Does Not Equal";
|
|
13
|
-
readonly NumberGreaterThan: "Greater Than";
|
|
14
|
-
readonly NumberLessThan: "Less Than";
|
|
15
|
-
readonly NumberBetween: "Between";
|
|
16
|
-
readonly StringEquals: "Equals";
|
|
17
|
-
readonly StringContains: "Contains";
|
|
18
|
-
readonly StringDoesNotContain: "Does Not Contain";
|
|
19
|
-
readonly StringStartWith: "Start With";
|
|
20
|
-
readonly StringEndsWith: "Ends With";
|
|
21
|
-
readonly DateIsOn: "Is on";
|
|
22
|
-
readonly DateIsNotOn: "Is Not On";
|
|
23
|
-
readonly DateOnOrAfter: "On or After";
|
|
24
|
-
readonly DateOnOrBefore: "On or Before";
|
|
25
|
-
readonly DateBetween: "Between";
|
|
26
|
-
readonly DateTimeIsAt: "Is At";
|
|
27
|
-
readonly DateTimeIsNotAt: "Is Not At";
|
|
28
|
-
readonly DateTimeAtOrAfter: "At or After";
|
|
29
|
-
readonly DateTimeAtOrBefore: "At or Before";
|
|
30
|
-
readonly DateTimeBetween: "Between";
|
|
31
|
-
readonly BooleanEquals: "Is";
|
|
32
|
-
readonly IsNull: "Is Blank";
|
|
33
|
-
readonly Or: "Or";
|
|
34
|
-
readonly And: "And";
|
|
35
|
-
readonly In: "In";
|
|
36
|
-
readonly Custom: "Custom";
|
|
37
|
-
};
|
|
38
|
-
myFilterType: FilterType;
|
|
39
|
-
myFilterValue: any;
|
|
40
|
-
filter: Partial<FilterInfo>;
|
|
41
|
-
metaData: MetaData;
|
|
42
|
-
trigger: MatMenuTrigger;
|
|
43
|
-
hideField(key: string): void;
|
|
44
|
-
ngOnInit(): void;
|
|
45
|
-
resetFilterType(): void;
|
|
46
|
-
setStringFilterType(): void;
|
|
47
|
-
setFilterType(filterType: FilterType): void;
|
|
48
|
-
onEnter(filter: FilterInfo): void;
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderMenuComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMenuComponent, "tb-header-menu", never, { "metaData": { "alias": "metaData"; "required": false; }; }, {}, never, never, true, never>;
|
|
51
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
-
import { FieldType } from '../../interfaces/report-def';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InFilterComponent implements ControlValueAccessor {
|
|
5
|
-
private ref;
|
|
6
|
-
FieldType: typeof FieldType;
|
|
7
|
-
type: FieldType;
|
|
8
|
-
value: (string | number | undefined)[];
|
|
9
|
-
constructor();
|
|
10
|
-
writeValue(obj: any[]): void;
|
|
11
|
-
onChange: (_: any) => void;
|
|
12
|
-
registerOnChange(fn: any): void;
|
|
13
|
-
onTouched: () => void;
|
|
14
|
-
registerOnTouched(fn: any): void;
|
|
15
|
-
addInput(): void;
|
|
16
|
-
removeInput(index: number): void;
|
|
17
|
-
onValueChange(i: number, value: number | string): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InFilterComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InFilterComponent, "lib-in-filter", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class InitializationComponent {
|
|
4
|
-
linkTemplate: TemplateRef<any>;
|
|
5
|
-
routerLinkTemplate: TemplateRef<any>;
|
|
6
|
-
imageUrlTemplate: TemplateRef<any>;
|
|
7
|
-
arrayNewLineTemplate: TemplateRef<any>;
|
|
8
|
-
arrayCommaTemplate: TemplateRef<any>;
|
|
9
|
-
defaultTemplate: TemplateRef<any>;
|
|
10
|
-
defaultWithIcon: TemplateRef<any>;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InitializationComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InitializationComponent, "initialization", never, {}, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { LinkInfo } from "../services/link-creator.service";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class RouterLinkColumnComponent {
|
|
4
|
-
additional: import("@angular/core").InputSignal<LinkInfo>;
|
|
5
|
-
element: import("@angular/core").InputSignal<any>;
|
|
6
|
-
value: import("@angular/core").InputSignal<string>;
|
|
7
|
-
link: import("@angular/core").Signal<string>;
|
|
8
|
-
queryParams: import("@angular/core").Signal<any>;
|
|
9
|
-
routerLinkOptions: import("@angular/core").Signal<{
|
|
10
|
-
queryParams: (element: any) => any;
|
|
11
|
-
fragment?: string | undefined;
|
|
12
|
-
preserveFragment?: boolean | undefined;
|
|
13
|
-
queryParamsHandling?: import("@angular/router").QueryParamsHandling | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RouterLinkColumnComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RouterLinkColumnComponent, "tb-router-link-column", never, { "additional": { "alias": "additional"; "required": true; "isSignal": true; }; "element": { "alias": "element"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
-
}
|
|
18
|
-
export declare class LinkColumnComponent {
|
|
19
|
-
value: import("@angular/core").InputSignal<string>;
|
|
20
|
-
element: import("@angular/core").InputSignal<any>;
|
|
21
|
-
additional: import("@angular/core").InputSignal<LinkInfo>;
|
|
22
|
-
link: import("@angular/core").Signal<string>;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinkColumnComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkColumnComponent, "tb-link-column", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "element": { "alias": "element"; "required": true; "isSignal": true; }; "additional": { "alias": "additional"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
25
|
-
}
|