@one-paragon/angular-utilities 0.1.20 → 0.1.21
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 -36
- 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 +3 -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 +22 -0
- package/src/action-state/action-state-ui/action-state-ui.module.ts +19 -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 +26 -0
- package/src/http-request-state/HttpRequestStateStore.ts +147 -0
- package/src/http-request-state/directives/HttpStateDirectiveBase.ts +38 -0
- package/src/http-request-state/directives/http-error-state-directive.ts +32 -0
- package/src/http-request-state/directives/http-inProgress-state-directive.ts +32 -0
- package/src/http-request-state/directives/http-notStarted-state-directive.ts +31 -0
- package/src/http-request-state/directives/http-success-state-directive.ts +31 -0
- package/{http-request-state/directives/index.d.ts → src/http-request-state/directives/index.ts} +0 -0
- package/src/http-request-state/directives/request-state-directive.spec.ts +72 -0
- package/src/http-request-state/directives/request-state-directive.ts +70 -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 +26 -0
- package/{http-request-state/index.d.ts → src/http-request-state/index.ts} +1 -1
- 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} +0 -0
- 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 +50 -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} +33 -15
- package/src/rxjs/defaultShareReplay.ts +8 -0
- package/{rxjs/index.d.ts → src/rxjs/index.ts} +4 -4
- package/src/rxjs/mapError.ts +8 -0
- package/src/rxjs/rxjs-operators.ts +130 -0
- package/src/rxjs/subjectifier.ts +15 -0
- package/src/specs/clickSubject.spec.ts +95 -0
- package/src/specs/dialog.spec.ts +101 -0
- package/src/specs/toggleGroupDirective.spec.ts +231 -0
- package/src/table-builder/classes/DefaultSettings.ts +10 -0
- package/src/table-builder/classes/GenericTableDataSource.ts +22 -0
- package/src/table-builder/classes/MatTableObservableDataSource.ts +23 -0
- package/src/table-builder/classes/TableBuilderConfig.ts +19 -0
- package/src/table-builder/classes/TableState.ts +63 -0
- package/src/table-builder/classes/data-filter.spec.ts +72 -0
- package/src/table-builder/classes/data-filter.ts +32 -0
- package/{table-builder/classes/display-col.d.ts → src/table-builder/classes/display-col.ts} +0 -0
- package/src/table-builder/classes/filter-info.ts +132 -0
- package/src/table-builder/classes/table-builder-general-settings.ts +73 -0
- package/src/table-builder/classes/table-builder.ts +71 -0
- package/src/table-builder/classes/table-store.ts +360 -0
- package/src/table-builder/components/array-column.component.ts +39 -0
- package/src/table-builder/components/column-builder/column-builder.component.html +66 -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 +51 -0
- package/src/table-builder/components/column-builder/column-builder.component.ts +126 -0
- package/src/table-builder/components/date-filter/date-filter.component.html +24 -0
- package/src/table-builder/components/date-filter/date-filter.component.ts +17 -0
- package/src/table-builder/components/filter/filter.component.html +78 -0
- package/src/table-builder/components/filter/filter.component.scss +64 -0
- package/src/table-builder/components/filter/filter.component.spec.ts +89 -0
- package/src/table-builder/components/filter/filter.component.ts +35 -0
- package/src/table-builder/components/filter/in-list/in-list-filter.component.ts +82 -0
- package/src/table-builder/components/gen-col-displayer/gen-col-displayer.component.html +52 -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 +44 -0
- package/src/table-builder/components/generic-table/generic-table.component.html +77 -0
- package/src/table-builder/components/generic-table/generic-table.component.scss +45 -0
- package/src/table-builder/components/generic-table/generic-table.component.ts +221 -0
- package/src/table-builder/components/generic-table/paginator.component.ts +89 -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 +10 -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 +16 -0
- package/src/table-builder/components/header-menu/header-menu.component.html +117 -0
- package/src/table-builder/components/header-menu/header-menu.component.scss +92 -0
- package/src/table-builder/components/header-menu/header-menu.component.ts +81 -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 +13 -0
- package/src/table-builder/components/in-filter/in-filter.component.ts +60 -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 +21 -0
- package/src/table-builder/components/initialization-component/initialization-component.ts +15 -0
- package/src/table-builder/components/link-column.component.ts +33 -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 +21 -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 +19 -0
- package/src/table-builder/components/sort-menu/sort-menu.component-store.ts +59 -0
- package/src/table-builder/components/sort-menu/sort-menu.component.html +101 -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 +82 -0
- package/src/table-builder/components/table-container/table-container.css +26 -0
- package/src/table-builder/components/table-container/table-container.html +113 -0
- package/src/table-builder/components/table-container/table-container.spec.ts +157 -0
- package/src/table-builder/components/table-container/table-container.ts +344 -0
- package/src/table-builder/components/table-container-filter/filter-list/filter-list.component.html +26 -0
- package/src/table-builder/components/table-container-filter/filter-list/filter-list.component.ts +38 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.css +37 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.html +8 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.spec.ts +88 -0
- package/src/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.ts +27 -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 +45 -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 +41 -0
- package/src/table-builder/directives/resize-column.directive.ts +104 -0
- package/src/table-builder/directives/table-wrapper.directive.ts +16 -0
- package/src/table-builder/directives/tb-filter.directive.ts +363 -0
- package/src/table-builder/enums/filterTypes.ts +65 -0
- package/src/table-builder/functions/boolean-filter-function.ts +13 -0
- package/src/table-builder/functions/date-filter-function.ts +40 -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 +42 -0
- package/src/table-builder/functions/sort-data-function.ts +8 -0
- package/src/table-builder/functions/string-filter-function.ts +52 -0
- package/{table-builder/interfaces/ColumnInfo.d.ts → src/table-builder/interfaces/ColumnInfo.ts} +3 -2
- 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 +131 -0
- package/src/table-builder/material.module.ts +95 -0
- package/src/table-builder/ngrx/actions.ts +7 -0
- package/src/table-builder/ngrx/effects.ts +54 -0
- package/src/table-builder/ngrx/reducer.ts +72 -0
- package/src/table-builder/ngrx/selectors.ts +37 -0
- package/src/table-builder/pipes/column-total.pipe.ts +15 -0
- package/src/table-builder/pipes/format-filter-type.pipe.ts +12 -0
- package/src/table-builder/pipes/format-filter-value.pipe.ts +40 -0
- package/src/table-builder/pipes/key-display.ts +16 -0
- package/src/table-builder/services/export-to-csv.service.ts +92 -0
- package/src/table-builder/services/link-creator.service.ts +48 -0
- package/src/table-builder/services/table-template-service.ts +44 -0
- package/src/table-builder/services/transform-creator.ts +61 -0
- package/src/table-builder/specs/table-custom-filters.spec.ts +262 -0
- package/src/table-builder/styles/collapser.styles.scss +21 -0
- package/src/table-builder/table-builder.module.ts +138 -0
- package/src/test.ts +17 -0
- package/src/utilities/directives/auto-focus.directive.ts +19 -0
- package/src/utilities/directives/clickEmitterDirective.ts +15 -0
- package/src/utilities/directives/clickSubject.ts +19 -0
- package/src/utilities/directives/conditional-classes.directive.ts +35 -0
- package/src/utilities/directives/dialog-service.ts +22 -0
- package/src/utilities/directives/dialog.ts +142 -0
- package/src/utilities/directives/mat-toggle-group-directive.ts +60 -0
- package/src/utilities/directives/prevent-enter.directive.ts +12 -0
- package/src/utilities/directives/stop-propagation.directive.ts +19 -0
- package/src/utilities/directives/styler.ts +16 -0
- package/src/utilities/directives/trim-whitespace.directive.ts +20 -0
- package/{utilities/index.d.ts → src/utilities/index.ts} +22 -15
- package/src/utilities/module.ts +58 -0
- package/src/utilities/pipes/function.pipe.ts +15 -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 -9
- package/action-state/ngrx-ext/ngrx-ext.module.d.ts +0 -8
- package/action-state/ngrx.d.ts +0 -31
- 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/index.mjs +0 -8
- package/esm2020/action-state/ngrx-ext/ngrx-ext.module.mjs +0 -23
- package/esm2020/action-state/ngrx.mjs +0 -42
- 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 -29
- package/esm2020/http-request-state/directives/index.mjs +0 -6
- package/esm2020/http-request-state/directives/request-state-directive.mjs +0 -57
- package/esm2020/http-request-state/helpers.mjs +0 -22
- package/esm2020/http-request-state/http-request-state.mjs +0 -39
- package/esm2020/http-request-state/http-state-module.mjs +0 -41
- package/esm2020/http-request-state/index.mjs +0 -7
- package/esm2020/http-request-state/rxjs/getRequestorBody.mjs +0 -4
- package/esm2020/http-request-state/rxjs/getRequestorState.mjs +0 -3
- package/esm2020/http-request-state/rxjs/index.mjs +0 -5
- package/esm2020/http-request-state/rxjs/tapError.mjs +0 -12
- package/esm2020/http-request-state/rxjs/tapSuccess.mjs +0 -12
- package/esm2020/http-request-state/types.mjs +0 -16
- package/esm2020/ngrx/actionable-selector.mjs +0 -76
- package/esm2020/ngrx/index.mjs +0 -2
- package/esm2020/one-paragon-angular-utilities.mjs +0 -5
- package/esm2020/public-api.mjs +0 -19
- package/esm2020/rxjs/defaultShareReplay.mjs +0 -7
- package/esm2020/rxjs/index.mjs +0 -5
- package/esm2020/rxjs/mapError.mjs +0 -8
- package/esm2020/rxjs/rxjs-operators.mjs +0 -91
- package/esm2020/rxjs/subjectifier.mjs +0 -15
- package/esm2020/table-builder/classes/DefaultSettings.mjs +0 -6
- package/esm2020/table-builder/classes/GenericTableDataSource.mjs +0 -13
- package/esm2020/table-builder/classes/MatTableObservableDataSource.mjs +0 -21
- package/esm2020/table-builder/classes/TableBuilderConfig.mjs +0 -3
- package/esm2020/table-builder/classes/TableState.mjs +0 -32
- package/esm2020/table-builder/classes/data-filter.mjs +0 -26
- package/esm2020/table-builder/classes/display-col.mjs +0 -2
- package/esm2020/table-builder/classes/filter-info.mjs +0 -71
- package/esm2020/table-builder/classes/table-builder-general-settings.mjs +0 -68
- package/esm2020/table-builder/classes/table-builder.mjs +0 -61
- 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 -111
- package/esm2020/table-builder/components/date-filter/date-filter.component.mjs +0 -25
- package/esm2020/table-builder/components/filter/filter.component.mjs +0 -53
- 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 -198
- 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 -21
- package/esm2020/table-builder/components/header-menu/header-menu.component.mjs +0 -90
- package/esm2020/table-builder/components/in-filter/in-filter.component.mjs +0 -66
- package/esm2020/table-builder/components/index.mjs +0 -10
- package/esm2020/table-builder/components/initialization-component/initialization-component.mjs +0 -33
- package/esm2020/table-builder/components/link-column.component.mjs +0 -66
- 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/sort-menu/sort-menu.component.mjs +0 -75
- package/esm2020/table-builder/components/table-container/table-container.mjs +0 -312
- 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/index.mjs +0 -6
- 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/enums/filterTypes.mjs +0 -59
- package/esm2020/table-builder/functions/boolean-filter-function.mjs +0 -10
- package/esm2020/table-builder/functions/date-filter-function.mjs +0 -32
- package/esm2020/table-builder/functions/download-data.mjs +0 -12
- package/esm2020/table-builder/functions/null-filter-function.mjs +0 -8
- package/esm2020/table-builder/functions/number-filter-function.mjs +0 -32
- package/esm2020/table-builder/functions/sort-data-function.mjs +0 -5
- package/esm2020/table-builder/functions/string-filter-function.mjs +0 -41
- package/esm2020/table-builder/interfaces/ColumnInfo.mjs +0 -2
- package/esm2020/table-builder/interfaces/dictionary.mjs +0 -2
- package/esm2020/table-builder/interfaces/report-def.mjs +0 -34
- package/esm2020/table-builder/material.module.mjs +0 -221
- package/esm2020/table-builder/ngrx/actions.mjs +0 -5
- package/esm2020/table-builder/ngrx/effects.mjs +0 -48
- package/esm2020/table-builder/ngrx/reducer.mjs +0 -52
- package/esm2020/table-builder/ngrx/selectors.mjs +0 -24
- 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 -46
- package/esm2020/table-builder/pipes/key-display.mjs +0 -20
- package/esm2020/table-builder/services/export-to-csv.service.mjs +0 -84
- package/esm2020/table-builder/services/link-creator.service.mjs +0 -42
- package/esm2020/table-builder/services/table-template-service.mjs +0 -43
- package/esm2020/table-builder/services/transform-creator.mjs +0 -70
- package/esm2020/table-builder/table-builder.module.mjs +0 -204
- 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 -131
- 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/index.mjs +0 -16
- 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 -4698
- package/fesm2015/one-paragon-angular-utilities.mjs.map +0 -1
- package/fesm2020/one-paragon-angular-utilities.mjs +0 -4666
- package/fesm2020/one-paragon-angular-utilities.mjs.map +0 -1
- package/http-request-state/HttpRequestStateFactory.d.ts +0 -14
- package/http-request-state/HttpRequestStateStore.d.ts +0 -48
- package/http-request-state/directives/HttpStateDirectiveBase.d.ts +0 -16
- package/http-request-state/directives/http-error-state-directive.d.ts +0 -12
- package/http-request-state/directives/http-inProgress-state-directive.d.ts +0 -12
- package/http-request-state/directives/http-notStarted-state-directive.d.ts +0 -12
- package/http-request-state/directives/http-success-state-directive.d.ts +0 -14
- package/http-request-state/directives/request-state-directive.d.ts +0 -29
- 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 -36
- package/index.d.ts +0 -5
- package/ngrx/actionable-selector.d.ts +0 -15
- 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 -12
- package/rxjs/subjectifier.d.ts +0 -9
- package/table-builder/classes/DefaultSettings.d.ts +0 -8
- package/table-builder/classes/GenericTableDataSource.d.ts +0 -8
- package/table-builder/classes/MatTableObservableDataSource.d.ts +0 -9
- package/table-builder/classes/TableBuilderConfig.d.ts +0 -19
- package/table-builder/classes/TableState.d.ts +0 -46
- package/table-builder/classes/data-filter.d.ts +0 -9
- package/table-builder/classes/filter-info.d.ts +0 -40
- package/table-builder/classes/table-builder-general-settings.d.ts +0 -43
- package/table-builder/classes/table-builder.d.ts +0 -14
- package/table-builder/classes/table-store.d.ts +0 -114
- package/table-builder/components/array-column.component.d.ts +0 -14
- package/table-builder/components/column-builder/column-builder.component.d.ts +0 -50
- package/table-builder/components/date-filter/date-filter.component.d.ts +0 -10
- package/table-builder/components/filter/filter.component.d.ts +0 -294
- package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +0 -27
- package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +0 -16
- package/table-builder/components/generic-table/generic-table.component.d.ts +0 -71
- package/table-builder/components/generic-table/paginator.component.d.ts +0 -28
- package/table-builder/components/group-by-list/group-by-list.component.d.ts +0 -10
- package/table-builder/components/header-menu/header-menu.component.d.ts +0 -25
- package/table-builder/components/in-filter/in-filter.component.d.ts +0 -22
- package/table-builder/components/initialization-component/initialization-component.d.ts +0 -12
- package/table-builder/components/link-column.component.d.ts +0 -17
- package/table-builder/components/number-filter/number-filter.component.d.ts +0 -12
- 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 -25
- package/table-builder/components/table-container/table-container.d.ts +0 -65
- package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +0 -17
- package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +0 -14
- 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 -19
- package/table-builder/directives/multi-sort.directive.d.ts +0 -11
- package/table-builder/directives/resize-column.directive.d.ts +0 -43
- package/table-builder/directives/table-wrapper.directive.d.ts +0 -11
- package/table-builder/directives/tb-filter.directive.d.ts +0 -120
- package/table-builder/enums/filterTypes.d.ts +0 -31
- package/table-builder/functions/boolean-filter-function.d.ts +0 -3
- package/table-builder/functions/date-filter-function.d.ts +0 -3
- 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 -3
- package/table-builder/functions/string-filter-function.d.ts +0 -7
- package/table-builder/interfaces/report-def.d.ts +0 -135
- package/table-builder/material.module.d.ts +0 -34
- package/table-builder/ngrx/actions.d.ts +0 -23
- package/table-builder/ngrx/effects.d.ts +0 -19
- package/table-builder/ngrx/reducer.d.ts +0 -15
- package/table-builder/ngrx/selectors.d.ts +0 -22
- 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 -14
- package/table-builder/pipes/key-display.d.ts +0 -11
- package/table-builder/services/export-to-csv.service.d.ts +0 -22
- package/table-builder/services/link-creator.service.d.ts +0 -12
- package/table-builder/services/table-template-service.d.ts +0 -14
- package/table-builder/services/transform-creator.d.ts +0 -19
- package/table-builder/table-builder.module.d.ts +0 -45
- package/utilities/directives/auto-focus.directive.d.ts +0 -10
- 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 -14
- package/utilities/directives/dialog-service.d.ts +0 -10
- package/utilities/directives/dialog.d.ts +0 -45
- 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 -9
- package/utilities/directives/trim-whitespace.directive.d.ts +0 -9
- 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,135 +0,0 @@
|
|
|
1
|
-
import { Dictionary } from './dictionary';
|
|
2
|
-
import { PipeTransform, Predicate, TemplateRef } from '@angular/core';
|
|
3
|
-
import { TableBuilderExport } from '../classes/TableBuilderConfig';
|
|
4
|
-
import { QueryParamsHandling } from '@angular/router';
|
|
5
|
-
export declare enum FieldType {
|
|
6
|
-
Unknown = 0,
|
|
7
|
-
Date = 1,
|
|
8
|
-
Link = 2,
|
|
9
|
-
ImageUrl = 3,
|
|
10
|
-
Currency = 4,
|
|
11
|
-
Array = 5,
|
|
12
|
-
Hidden = 6,
|
|
13
|
-
Number = 7,
|
|
14
|
-
String = 8,
|
|
15
|
-
Boolean = 9,
|
|
16
|
-
PhoneNumber = 10,
|
|
17
|
-
Expression = 11,
|
|
18
|
-
Enum = 12
|
|
19
|
-
}
|
|
20
|
-
export declare enum SortDirection {
|
|
21
|
-
asc = "asc",
|
|
22
|
-
desc = "desc"
|
|
23
|
-
}
|
|
24
|
-
export declare enum Target {
|
|
25
|
-
Blank = "_blank",
|
|
26
|
-
Self = "_self",
|
|
27
|
-
Parent = "_parent",
|
|
28
|
-
Top = "_top"
|
|
29
|
-
}
|
|
30
|
-
export interface MetaData<T = any, AdditionalFields extends string[] = []> {
|
|
31
|
-
key: (keyof T | AdditionalFields[number]) & string;
|
|
32
|
-
displayName?: string;
|
|
33
|
-
fieldType: FieldType;
|
|
34
|
-
additional?: Additional<T>;
|
|
35
|
-
order?: number;
|
|
36
|
-
preSort?: SortDef;
|
|
37
|
-
_internalNotUserDefined?: boolean;
|
|
38
|
-
width?: string;
|
|
39
|
-
noExport?: boolean;
|
|
40
|
-
noFilter?: boolean;
|
|
41
|
-
customCell?: boolean;
|
|
42
|
-
transform?: ((o: T, ...args: any[]) => any) | ((o: string, ...args: any[]) => any) | PipeTransform;
|
|
43
|
-
click?: (element: T, key: string) => void;
|
|
44
|
-
template?: TemplateRef<any>;
|
|
45
|
-
classes?: Dictionary<Predicate<T>>;
|
|
46
|
-
toolTip?: string;
|
|
47
|
-
useIcon?: boolean;
|
|
48
|
-
}
|
|
49
|
-
export interface ReportDef<DataType = any> {
|
|
50
|
-
data: DataType[];
|
|
51
|
-
metaData: MetaData[];
|
|
52
|
-
totalRecords?: number;
|
|
53
|
-
count: number;
|
|
54
|
-
}
|
|
55
|
-
export interface SortDef {
|
|
56
|
-
direction: SortDirection;
|
|
57
|
-
precedence?: number;
|
|
58
|
-
}
|
|
59
|
-
export interface FilterOptions {
|
|
60
|
-
filterableValues: string[];
|
|
61
|
-
}
|
|
62
|
-
declare type interpolatedRoute = string;
|
|
63
|
-
export interface Additional<T = any> {
|
|
64
|
-
link?: {
|
|
65
|
-
base?: string;
|
|
66
|
-
urlKey?: string;
|
|
67
|
-
target?: Target;
|
|
68
|
-
useRouterLink?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
* If you want to use a route with interpolated params, you can use this. Wrap the property name in curly braces.
|
|
71
|
-
* For example, if interpolatedRoute = /users/{id}/edit, {id} will be replaced with the value of the element's id property.
|
|
72
|
-
*/
|
|
73
|
-
interpolatedRoute?: interpolatedRoute;
|
|
74
|
-
routerLinkOptions?: {
|
|
75
|
-
queryParams?: [string, interpolatedRoute][];
|
|
76
|
-
fragment?: string;
|
|
77
|
-
preserveFragment?: boolean;
|
|
78
|
-
queryParamsHandling?: QueryParamsHandling;
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
/**
|
|
82
|
-
* @deprecated Please use link.base
|
|
83
|
-
*/
|
|
84
|
-
base?: string;
|
|
85
|
-
/**
|
|
86
|
-
* @deprecated Please use link.urlKey
|
|
87
|
-
*/
|
|
88
|
-
urlKey?: string;
|
|
89
|
-
/**
|
|
90
|
-
* @deprecated Please use link.target
|
|
91
|
-
*/
|
|
92
|
-
target?: Target;
|
|
93
|
-
/**
|
|
94
|
-
* @deprecated Please use link.useRouterLink
|
|
95
|
-
*/
|
|
96
|
-
useRouterLink?: boolean;
|
|
97
|
-
footer?: {
|
|
98
|
-
type: 'sum';
|
|
99
|
-
};
|
|
100
|
-
grouping?: {
|
|
101
|
-
groupBy?: boolean;
|
|
102
|
-
sum?: boolean;
|
|
103
|
-
groupTitleFn?: (val: any) => string;
|
|
104
|
-
};
|
|
105
|
-
export?: TableBuilderExport;
|
|
106
|
-
dateFormat?: string;
|
|
107
|
-
filterOptions?: FilterOptions;
|
|
108
|
-
styles?: Dictionary<string>;
|
|
109
|
-
columnPartStyles?: {
|
|
110
|
-
header?: Dictionary<string>;
|
|
111
|
-
body?: Dictionary<string>;
|
|
112
|
-
footer?: Dictionary<string>;
|
|
113
|
-
};
|
|
114
|
-
enumMap?: {
|
|
115
|
-
[key: number]: string;
|
|
116
|
-
};
|
|
117
|
-
boolean?: {
|
|
118
|
-
showForFalse?: true | {
|
|
119
|
-
icon: string;
|
|
120
|
-
};
|
|
121
|
-
forTrue?: {
|
|
122
|
-
icon: string;
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
export declare enum ArrayStyle {
|
|
127
|
-
CommaDelimited = 0,
|
|
128
|
-
NewLine = 1
|
|
129
|
-
}
|
|
130
|
-
export interface ArrayAdditional extends Additional {
|
|
131
|
-
metaData?: MetaData;
|
|
132
|
-
limit?: number;
|
|
133
|
-
arrayStyle?: ArrayStyle;
|
|
134
|
-
}
|
|
135
|
-
export {};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/material/legacy-slide-toggle";
|
|
3
|
-
import * as i2 from "@angular/material/legacy-table";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-select";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-dialog";
|
|
6
|
-
import * as i5 from "@angular/material/datepicker";
|
|
7
|
-
import * as i6 from "@angular/material/legacy-radio";
|
|
8
|
-
import * as i7 from "@angular/material/legacy-button";
|
|
9
|
-
import * as i8 from "@angular/material/expansion";
|
|
10
|
-
import * as i9 from "@angular/material/stepper";
|
|
11
|
-
import * as i10 from "@angular/material/toolbar";
|
|
12
|
-
import * as i11 from "@angular/material/legacy-tooltip";
|
|
13
|
-
import * as i12 from "@angular/material/core";
|
|
14
|
-
import * as i13 from "@angular/material/legacy-snack-bar";
|
|
15
|
-
import * as i14 from "@angular/material/legacy-progress-spinner";
|
|
16
|
-
import * as i15 from "@angular/material/legacy-list";
|
|
17
|
-
import * as i16 from "@angular/material/grid-list";
|
|
18
|
-
import * as i17 from "@angular/material/legacy-card";
|
|
19
|
-
import * as i18 from "@angular/material/sidenav";
|
|
20
|
-
import * as i19 from "@angular/material/legacy-tabs";
|
|
21
|
-
import * as i20 from "@angular/material/legacy-input";
|
|
22
|
-
import * as i21 from "@angular/material/legacy-checkbox";
|
|
23
|
-
import * as i22 from "@angular/material/legacy-menu";
|
|
24
|
-
import * as i23 from "@angular/material/icon";
|
|
25
|
-
import * as i24 from "@angular/material/badge";
|
|
26
|
-
import * as i25 from "@angular/material/sort";
|
|
27
|
-
import * as i26 from "@angular/material/legacy-autocomplete";
|
|
28
|
-
import * as i27 from "@angular/material/legacy-paginator";
|
|
29
|
-
import * as i28 from "@angular/material/legacy-chips";
|
|
30
|
-
export declare class MaterialModule {
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.MatLegacySlideToggleModule, typeof i2.MatLegacyTableModule, typeof i3.MatLegacySelectModule, typeof i4.MatLegacyDialogModule, typeof i5.MatDatepickerModule, typeof i6.MatLegacyRadioModule, typeof i7.MatLegacyButtonModule, typeof i8.MatExpansionModule, typeof i9.MatStepperModule, typeof i10.MatToolbarModule, typeof i11.MatLegacyTooltipModule, typeof i12.MatNativeDateModule, typeof i13.MatLegacySnackBarModule, typeof i14.MatLegacyProgressSpinnerModule, typeof i15.MatLegacyListModule, typeof i16.MatGridListModule, typeof i17.MatLegacyCardModule, typeof i18.MatSidenavModule, typeof i19.MatLegacyTabsModule, typeof i20.MatLegacyInputModule, typeof i19.MatLegacyTabsModule, typeof i21.MatLegacyCheckboxModule, typeof i22.MatLegacyMenuModule, typeof i23.MatIconModule, typeof i24.MatBadgeModule, typeof i25.MatSortModule, typeof i26.MatLegacyAutocompleteModule, typeof i27.MatLegacyPaginatorModule, typeof i28.MatLegacyChipsModule, typeof i4.MatLegacyDialogModule], [typeof i1.MatLegacySlideToggleModule, typeof i2.MatLegacyTableModule, typeof i3.MatLegacySelectModule, typeof i4.MatLegacyDialogModule, typeof i5.MatDatepickerModule, typeof i6.MatLegacyRadioModule, typeof i7.MatLegacyButtonModule, typeof i8.MatExpansionModule, typeof i9.MatStepperModule, typeof i10.MatToolbarModule, typeof i11.MatLegacyTooltipModule, typeof i12.MatNativeDateModule, typeof i13.MatLegacySnackBarModule, typeof i14.MatLegacyProgressSpinnerModule, typeof i15.MatLegacyListModule, typeof i16.MatGridListModule, typeof i17.MatLegacyCardModule, typeof i18.MatSidenavModule, typeof i19.MatLegacyTabsModule, typeof i20.MatLegacyInputModule, typeof i19.MatLegacyTabsModule, typeof i21.MatLegacyCheckboxModule, typeof i22.MatLegacyMenuModule, typeof i23.MatIconModule, typeof i24.MatBadgeModule, typeof i25.MatSortModule, typeof i26.MatLegacyAutocompleteModule, typeof i27.MatLegacyPaginatorModule, typeof i28.MatLegacyChipsModule, typeof i4.MatLegacyDialogModule]>;
|
|
33
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
34
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
export declare const setLocalProfile: import("@ngrx/store").ActionCreator<"[State Storage] Set Local Profile", (props: {
|
|
2
|
-
key: string;
|
|
3
|
-
value: any;
|
|
4
|
-
persist?: boolean | undefined;
|
|
5
|
-
}) => {
|
|
6
|
-
key: string;
|
|
7
|
-
value: any;
|
|
8
|
-
persist?: boolean | undefined;
|
|
9
|
-
} & import("@ngrx/store/src/models").TypedAction<"[State Storage] Set Local Profile">>;
|
|
10
|
-
export declare const setLocalProfilesState: import("@ngrx/store").ActionCreator<"[State Storage] Set Local Profiles Current", (props: {
|
|
11
|
-
key: string;
|
|
12
|
-
current: string;
|
|
13
|
-
}) => {
|
|
14
|
-
key: string;
|
|
15
|
-
current: string;
|
|
16
|
-
} & import("@ngrx/store/src/models").TypedAction<"[State Storage] Set Local Profiles Current">>;
|
|
17
|
-
export declare const deleteLocalProfilesState: import("@ngrx/store").ActionCreator<"[State Storage] Delete Local Profiles Current", (props: {
|
|
18
|
-
key: string;
|
|
19
|
-
stateKey: string;
|
|
20
|
-
}) => {
|
|
21
|
-
key: string;
|
|
22
|
-
stateKey: string;
|
|
23
|
-
} & import("@ngrx/store/src/models").TypedAction<"[State Storage] Delete Local Profiles Current">>;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Actions } from '@ngrx/effects';
|
|
2
|
-
import { Store } from '@ngrx/store';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SaveTableEffects {
|
|
5
|
-
private actions$;
|
|
6
|
-
private store;
|
|
7
|
-
saveLocalProfile$: import("rxjs").Observable<[{
|
|
8
|
-
key: string;
|
|
9
|
-
value: any;
|
|
10
|
-
persist?: boolean | undefined;
|
|
11
|
-
} & import("@ngrx/store/src/models").TypedAction<"[State Storage] Set Local Profile">, import("./reducer").Profile<any>]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
12
|
-
deleteLocalProfile$: import("rxjs").Observable<{
|
|
13
|
-
key: string;
|
|
14
|
-
stateKey: string;
|
|
15
|
-
} & import("@ngrx/store/src/models").TypedAction<"[State Storage] Delete Local Profiles Current">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
16
|
-
constructor(actions$: Actions, store: Store<any>);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SaveTableEffects, never>;
|
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SaveTableEffects>;
|
|
19
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Action } from '@ngrx/store';
|
|
2
|
-
import { Dictionary } from '../interfaces/dictionary';
|
|
3
|
-
export interface Profile<T = any> {
|
|
4
|
-
default: string;
|
|
5
|
-
current: string;
|
|
6
|
-
states: Dictionary<T>;
|
|
7
|
-
}
|
|
8
|
-
export interface GlobalStorageState {
|
|
9
|
-
globalProfileKeys: string[];
|
|
10
|
-
currentGlobalProfile: string;
|
|
11
|
-
globalProfiles: Dictionary<Profile>;
|
|
12
|
-
localProfiles: Dictionary<Profile>;
|
|
13
|
-
}
|
|
14
|
-
export declare const defaultStorageState: GlobalStorageState;
|
|
15
|
-
export declare function storageStateReducer(state: GlobalStorageState | undefined, action: Action): GlobalStorageState;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { GlobalStorageState, Profile } from './reducer';
|
|
2
|
-
export declare const selectGlobalStorageState: (state: {
|
|
3
|
-
globalStorageState: GlobalStorageState;
|
|
4
|
-
}) => GlobalStorageState;
|
|
5
|
-
export declare const selectGlobalProfileKeys: import("@ngrx/store").MemoizedSelector<{
|
|
6
|
-
globalStorageState: GlobalStorageState;
|
|
7
|
-
}, string[], (s1: GlobalStorageState) => string[]>;
|
|
8
|
-
export declare const selectCurrentGlobalProfile: import("@ngrx/store").MemoizedSelector<{
|
|
9
|
-
globalStorageState: GlobalStorageState;
|
|
10
|
-
}, Profile<any>, (s1: GlobalStorageState) => Profile<any>>;
|
|
11
|
-
export declare const selectLocalProfile: <T>(key: string) => import("@ngrx/store").MemoizedSelector<{
|
|
12
|
-
globalStorageState: GlobalStorageState;
|
|
13
|
-
}, Profile<any>, (s1: GlobalStorageState) => Profile<any>>;
|
|
14
|
-
export declare const selectLocalProfileState: <T>(key: string) => import("@ngrx/store").MemoizedSelector<{
|
|
15
|
-
globalStorageState: GlobalStorageState;
|
|
16
|
-
}, T | null, (s1: Profile<T>) => T | null>;
|
|
17
|
-
export declare const selectLocalProfileCurrentKey: <T>(key: string) => import("@ngrx/store").MemoizedSelector<{
|
|
18
|
-
globalStorageState: GlobalStorageState;
|
|
19
|
-
}, string, (s1: Profile<T>) => string>;
|
|
20
|
-
export declare const selectLocalProfileKeys: <T>(key: string) => import("@ngrx/store").MemoizedSelector<{
|
|
21
|
-
globalStorageState: GlobalStorageState;
|
|
22
|
-
}, string[] | null, (s1: Profile<T>) => string[] | null>;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { MetaData } from '../interfaces/report-def';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ColumnTotalPipe implements PipeTransform {
|
|
5
|
-
transform(data: any[], metaData: MetaData): number | null;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTotalPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ColumnTotalPipe, "columnTotal", false>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { FilterType } from '../enums/filterTypes';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormatFilterTypePipe implements PipeTransform {
|
|
5
|
-
transform(filterType: FilterType, value: any): FilterType | "Is Not Blank";
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormatFilterTypePipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterTypePipe, "formatFilterType", false>;
|
|
8
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { TableStore } from '../classes/table-store';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { DatePipe } from '@angular/common';
|
|
5
|
-
import { FilterType } from '../enums/filterTypes';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormatFilterValuePipe implements PipeTransform {
|
|
8
|
-
tableState: TableStore;
|
|
9
|
-
private datePipe;
|
|
10
|
-
constructor(tableState: TableStore, datePipe: DatePipe);
|
|
11
|
-
transform(value: any, key: string, filterType: FilterType): Observable<string>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormatFilterValuePipe, never>;
|
|
13
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterValuePipe, "formatFilterValue", false>;
|
|
14
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { TableStore } from '../classes/table-store';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class KeyDisplayPipe implements PipeTransform {
|
|
6
|
-
tableState: TableStore;
|
|
7
|
-
constructor(tableState: TableStore);
|
|
8
|
-
transform(key: string): Observable<string>;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KeyDisplayPipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<KeyDisplayPipe, "keyDisplay", false>;
|
|
11
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { DatePipe } from '@angular/common';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { TableStore } from '../classes/table-store';
|
|
4
|
-
import { TableBuilderConfig } from '../classes/TableBuilderConfig';
|
|
5
|
-
import { MetaData } from '../interfaces/report-def';
|
|
6
|
-
import { TableState } from '../classes/TableState';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class ExportToCsvService<T> {
|
|
9
|
-
state: TableStore;
|
|
10
|
-
private config;
|
|
11
|
-
private datePipe;
|
|
12
|
-
constructor(state: TableStore, config: TableBuilderConfig, datePipe: DatePipe);
|
|
13
|
-
exportToCsv: (data: Observable<T[]>) => void;
|
|
14
|
-
csvData: (data: Array<T>, metaData: MetaData<T>[]) => string;
|
|
15
|
-
metaToField: (meta: MetaData<T>, row: T) => any;
|
|
16
|
-
private transform;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExportToCsvService<any>, never>;
|
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ExportToCsvService<any>>;
|
|
19
|
-
}
|
|
20
|
-
export declare const removeFromMetaData: (state: TableState, keysToRemove: string[]) => MetaData<any, []>[];
|
|
21
|
-
export declare const nonExportableFields: (state: TableState) => string[];
|
|
22
|
-
export declare const mapExportableFields: (state: TableState) => MetaData<any, []>[];
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { MetaData } from "../interfaces/report-def";
|
|
2
|
-
export declare function createLinkCreator<T>(metaData: MetaData<T>): {
|
|
3
|
-
link: (element: T) => string;
|
|
4
|
-
target: string;
|
|
5
|
-
useRouterLink: boolean | undefined;
|
|
6
|
-
routerLinkOptions: {
|
|
7
|
-
queryParams: (element: any) => {} | null;
|
|
8
|
-
fragment: string | undefined;
|
|
9
|
-
preserveFragment: boolean;
|
|
10
|
-
queryParamsHandling: import("@angular/router").QueryParamsHandling;
|
|
11
|
-
} | undefined;
|
|
12
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, Injector } from "@angular/core";
|
|
2
|
-
import { TemplateRef } from "@angular/core";
|
|
3
|
-
import { InitializationComponent } from "../components/initialization-component/initialization-component";
|
|
4
|
-
import { MetaData } from "../interfaces/report-def";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class TableTemplateService {
|
|
7
|
-
instance: InitializationComponent;
|
|
8
|
-
templates: any;
|
|
9
|
-
initTemplates(): void;
|
|
10
|
-
getTemplate(metaData: MetaData): TemplateRef<any>;
|
|
11
|
-
constructor(resolver: ComponentFactoryResolver, i: Injector);
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableTemplateService, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TableTemplateService>;
|
|
14
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { MetaData } from '../interfaces/report-def';
|
|
3
|
-
import { DatePipe, CurrencyPipe } from '@angular/common';
|
|
4
|
-
import { PhoneNumberPipe } from '../../utilities/pipes/phone.pipe';
|
|
5
|
-
import { TableBuilderConfig } from '../classes/TableBuilderConfig';
|
|
6
|
-
import { SpaceCasePipe } from '../../utilities';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare function isPipe(o: any): o is PipeTransform;
|
|
9
|
-
export declare class TransformCreator {
|
|
10
|
-
private datePipe;
|
|
11
|
-
private currencyPipe;
|
|
12
|
-
private phonePipe;
|
|
13
|
-
private casePipe;
|
|
14
|
-
private config;
|
|
15
|
-
constructor(datePipe: DatePipe, currencyPipe: CurrencyPipe, phonePipe: PhoneNumberPipe, casePipe: SpaceCasePipe, config: TableBuilderConfig);
|
|
16
|
-
createTransformer(metaData: MetaData): ((value: any, ...args: any[]) => any);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TransformCreator, never>;
|
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TransformCreator>;
|
|
19
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { TableBuilderConfig } from './classes/TableBuilderConfig';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./pipes/column-total.pipe";
|
|
5
|
-
import * as i2 from "./components/table-container/table-container";
|
|
6
|
-
import * as i3 from "./components/generic-table/generic-table.component";
|
|
7
|
-
import * as i4 from "./components/generic-table/paginator.component";
|
|
8
|
-
import * as i5 from "./directives/custom-cell-directive";
|
|
9
|
-
import * as i6 from "./components/gen-col-displayer/gen-col-displayer.component";
|
|
10
|
-
import * as i7 from "./components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component";
|
|
11
|
-
import * as i8 from "./components/date-filter/date-filter.component";
|
|
12
|
-
import * as i9 from "./components/filter/filter.component";
|
|
13
|
-
import * as i10 from "./directives/multi-sort.directive";
|
|
14
|
-
import * as i11 from "./components/number-filter/number-filter.component";
|
|
15
|
-
import * as i12 from "./components/column-builder/column-builder.component";
|
|
16
|
-
import * as i13 from "./components/array-column.component";
|
|
17
|
-
import * as i14 from "./components/link-column.component";
|
|
18
|
-
import * as i15 from "./components/header-menu/header-menu.component";
|
|
19
|
-
import * as i16 from "./pipes/key-display";
|
|
20
|
-
import * as i17 from "./pipes/format-filter-value.pipe";
|
|
21
|
-
import * as i18 from "./pipes/format-filter-type.pipe";
|
|
22
|
-
import * as i19 from "./directives/resize-column.directive";
|
|
23
|
-
import * as i20 from "./components/in-filter/in-filter.component";
|
|
24
|
-
import * as i21 from "./components/initialization-component/initialization-component";
|
|
25
|
-
import * as i22 from "./components/filter/in-list/in-list-filter.component";
|
|
26
|
-
import * as i23 from "./components/sort-menu/sort-menu.component";
|
|
27
|
-
import * as i24 from "./components/table-container-filter/filter-list/filter-list.component";
|
|
28
|
-
import * as i25 from "./directives/tb-filter.directive";
|
|
29
|
-
import * as i26 from "./directives/table-wrapper.directive";
|
|
30
|
-
import * as i27 from "./components/group-by-list/group-by-list.component";
|
|
31
|
-
import * as i28 from "@angular/common";
|
|
32
|
-
import * as i29 from "./material.module";
|
|
33
|
-
import * as i30 from "@ngrx/store";
|
|
34
|
-
import * as i31 from "@ngrx/effects";
|
|
35
|
-
import * as i32 from "@angular/forms";
|
|
36
|
-
import * as i33 from "@angular/router";
|
|
37
|
-
import * as i34 from "@ngrx/component";
|
|
38
|
-
import * as i35 from "@angular/cdk/drag-drop";
|
|
39
|
-
import * as i36 from "../utilities/module";
|
|
40
|
-
export declare class TableBuilderModule {
|
|
41
|
-
static forRoot(config: TableBuilderConfig): ModuleWithProviders<TableBuilderModule>;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilderModule, never>;
|
|
43
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableBuilderModule, [typeof i1.ColumnTotalPipe, typeof i2.TableContainerComponent, typeof i3.GenericTableComponent, typeof i4.PaginatorComponent, typeof i5.CustomCellDirective, typeof i6.GenColDisplayerComponent, typeof i7.GenFilterDisplayerComponent, typeof i8.DateFilterComponent, typeof i9.FilterComponent, typeof i10.MultiSortDirective, typeof i11.NumberFilterComponent, typeof i12.ColumnBuilderComponent, typeof i13.ArrayColumnComponent, typeof i14.LinkColumnComponent, typeof i15.HeaderMenuComponent, typeof i16.KeyDisplayPipe, typeof i17.FormatFilterValuePipe, typeof i18.FormatFilterTypePipe, typeof i19.ResizeColumnDirective, typeof i20.InFilterComponent, typeof i21.InitializationComponent, typeof i22.InListFilterComponent, typeof i23.SortMenuComponent, typeof i24.FilterChipsComponent, typeof i25.MatSlideToggleTbFilterDirective, typeof i25.MatRadioButtonTbFilterDirective, typeof i25.MatOptionTbFilterDirective, typeof i25.MatCheckboxTbFilterDirective, typeof i25.MatButtonToggleFilterDirective, typeof i25.TableFilterDirective, typeof i25.TableFilterStringContainsDirective, typeof i26.TableWrapperDirective, typeof i27.GroupByListComponent], [typeof i28.CommonModule, typeof i29.MaterialModule, typeof i30.StoreFeatureModule, typeof i31.EffectsFeatureModule, typeof i32.FormsModule, typeof i33.RouterModule, typeof i34.LetModule, typeof i35.DragDropModule, typeof i36.UtilitiesModule], [typeof i3.GenericTableComponent, typeof i4.PaginatorComponent, typeof i2.TableContainerComponent, typeof i5.CustomCellDirective, typeof i6.GenColDisplayerComponent, typeof i7.GenFilterDisplayerComponent, typeof i9.FilterComponent, typeof i10.MultiSortDirective, typeof i19.ResizeColumnDirective, typeof i25.MatSlideToggleTbFilterDirective, typeof i25.MatRadioButtonTbFilterDirective, typeof i25.MatOptionTbFilterDirective, typeof i25.MatCheckboxTbFilterDirective, typeof i25.MatButtonToggleFilterDirective, typeof i25.TableFilterDirective, typeof i25.TableFilterStringContainsDirective, typeof i26.TableWrapperDirective, typeof i27.GroupByListComponent]>;
|
|
44
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TableBuilderModule>;
|
|
45
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AutoFocusDirective implements AfterViewInit {
|
|
4
|
-
private elementRef;
|
|
5
|
-
autoFocus: boolean;
|
|
6
|
-
constructor(elementRef: ElementRef);
|
|
7
|
-
ngAfterViewInit(): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutoFocusDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoFocusDirective, "[autoFocus]", never, { "autoFocus": "autoFocus"; }, {}, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Subject } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ClickEmitterDirective extends Subject<boolean> {
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClickEmitterDirective, never>;
|
|
6
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickEmitterDirective, "[clickEmitter]", ["clickEmitter"], {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Subject } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ClickSubjectDirective<T = boolean> extends Subject<T> {
|
|
4
|
-
constructor();
|
|
5
|
-
_val: T;
|
|
6
|
-
set clickSubject(val: T);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClickSubjectDirective<any>, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickSubjectDirective<any>, "[clickSubject]", ["clickSubject"], { "clickSubject": "clickSubject"; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { Dictionary, Predicate } from '@ngrx/entity';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ConditionalClassesDirective {
|
|
5
|
-
private el;
|
|
6
|
-
private renderer;
|
|
7
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
8
|
-
element?: any;
|
|
9
|
-
classes?: Dictionary<Predicate<any>>;
|
|
10
|
-
classesApplied: string[];
|
|
11
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalClassesDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ConditionalClassesDirective, "[conditionalClasses]", never, { "element": "element"; "classes": "conditionalClasses"; }, {}, never, never, false, never>;
|
|
14
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DialogService {
|
|
4
|
-
allOpenAppDialogs: MatDialogRef<any>[];
|
|
5
|
-
addDialogRef(ref: MatDialogRef<any>): void;
|
|
6
|
-
removeDialogRef(ref: MatDialogRef<any>): void;
|
|
7
|
-
closeAllAppDialogs(): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
10
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { TemplateRef, OnDestroy, EventEmitter, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { MatLegacyDialog as MatDialog, MatLegacyDialogRef as MatDialogRef, MatLegacyDialogConfig as MatDialogConfig } from '@angular/material/legacy-dialog';
|
|
3
|
-
import { Observable, Subscription, Subject } from 'rxjs';
|
|
4
|
-
import { DialogService } from './dialog-service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
interface DialogViewContext<T> {
|
|
7
|
-
$implicit: T;
|
|
8
|
-
opDialog: T;
|
|
9
|
-
close: () => void;
|
|
10
|
-
}
|
|
11
|
-
export declare class DialogWrapper<T = any> {
|
|
12
|
-
private vcr;
|
|
13
|
-
viewEmbeded: boolean;
|
|
14
|
-
viewContext: DialogViewContext<T>;
|
|
15
|
-
set template(tmpl: TemplateRef<DialogViewContext<T>>);
|
|
16
|
-
set close(closeMethod: () => void);
|
|
17
|
-
set data(value: T);
|
|
18
|
-
constructor(vcr: ViewContainerRef);
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogWrapper<any>, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapper<any>, "app-dialog-content", never, {}, {}, never, never, false, never>;
|
|
21
|
-
}
|
|
22
|
-
export declare class DialogDirective<T> implements OnDestroy {
|
|
23
|
-
private templateRef;
|
|
24
|
-
private dialog;
|
|
25
|
-
private service;
|
|
26
|
-
opDialogClosed: EventEmitter<boolean>;
|
|
27
|
-
_dialogConfig: MatDialogConfig<T>;
|
|
28
|
-
set opDialogConfig(config: MatDialogConfig<T>);
|
|
29
|
-
get opDialogConfig(): MatDialogConfig<T>;
|
|
30
|
-
set state(open_close: Observable<T>);
|
|
31
|
-
nativeElement?: HTMLElement;
|
|
32
|
-
dialogRef?: MatDialogRef<any, boolean>;
|
|
33
|
-
subscription: Subscription;
|
|
34
|
-
componentWrapper?: DialogWrapper<T>;
|
|
35
|
-
constructor(templateRef: TemplateRef<DialogViewContext<T>>, dialog: MatDialog, service: DialogService);
|
|
36
|
-
_data: Subject<Observable<T>>;
|
|
37
|
-
close(): void;
|
|
38
|
-
initDialog(): void;
|
|
39
|
-
setDialogState(open: boolean): void;
|
|
40
|
-
ngOnDestroy(): void;
|
|
41
|
-
static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "opDialogConfig": "opDialogConfig"; "state": "opDialog"; "nativeElement": "opDialogOrigin"; }, { "opDialogClosed": "opDialogClosed"; }, never, never, false, never>;
|
|
44
|
-
}
|
|
45
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { QueryList } from "@angular/core";
|
|
2
|
-
import { MatLegacySlideToggle as MatSlideToggle } from "@angular/material/legacy-slide-toggle";
|
|
3
|
-
import { Observable } from "rxjs";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MatSlideToggleGroupDirective {
|
|
6
|
-
allowMultiple: boolean;
|
|
7
|
-
_toggles: QueryList<MatSlideToggle>;
|
|
8
|
-
set toggles(val: QueryList<MatSlideToggle>);
|
|
9
|
-
private _ready;
|
|
10
|
-
get valueEmitter(): Observable<{
|
|
11
|
-
[key: string]: boolean;
|
|
12
|
-
}>;
|
|
13
|
-
getInitValue(): {
|
|
14
|
-
[k: string]: boolean;
|
|
15
|
-
};
|
|
16
|
-
getObs(): Observable<{
|
|
17
|
-
[k: string]: boolean;
|
|
18
|
-
}>;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatSlideToggleGroupDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleGroupDirective, "[opMatSlideToggleGroup]", never, { "allowMultiple": "allowMultiple"; }, { "valueEmitter": "valueEmitter"; }, ["toggles"], never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class PreventEnterDirective {
|
|
3
|
-
onKeyDown(): boolean;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PreventEnterDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventEnterDirective, "preventEnter", never, {}, {}, never, never, false, never>;
|
|
6
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class StopPropagationDirective {
|
|
3
|
-
onClick(event: any): void;
|
|
4
|
-
onMousedown(event: any): void;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StopPropagationDirective, never>;
|
|
6
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[stop-propagation]", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class StylerDirective {
|
|
4
|
-
private el;
|
|
5
|
-
set styler(styles: any);
|
|
6
|
-
constructor(el: ElementRef);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StylerDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StylerDirective, "[styler]", never, { "styler": "styler"; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TrimWhitespaceDirective {
|
|
4
|
-
private elem;
|
|
5
|
-
constructor(elem: ElementRef);
|
|
6
|
-
onBlur(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TrimWhitespaceDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TrimWhitespaceDirective, "input[trimWhitespace]", never, {}, {}, never, never, false, never>;
|
|
9
|
-
}
|
package/utilities/module.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./pipes/space-case.pipes";
|
|
3
|
-
import * as i2 from "./pipes/phone.pipe";
|
|
4
|
-
import * as i3 from "./pipes/function.pipe";
|
|
5
|
-
import * as i4 from "./directives/stop-propagation.directive";
|
|
6
|
-
import * as i5 from "./directives/styler";
|
|
7
|
-
import * as i6 from "./directives/prevent-enter.directive";
|
|
8
|
-
import * as i7 from "./directives/auto-focus.directive";
|
|
9
|
-
import * as i8 from "./directives/trim-whitespace.directive";
|
|
10
|
-
import * as i9 from "./directives/clickSubject";
|
|
11
|
-
import * as i10 from "./directives/clickEmitterDirective";
|
|
12
|
-
import * as i11 from "./directives/dialog";
|
|
13
|
-
import * as i12 from "./directives/mat-toggle-group-directive";
|
|
14
|
-
import * as i13 from "./directives/conditional-classes.directive";
|
|
15
|
-
export declare class UtilitiesModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, [typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof i4.StopPropagationDirective, typeof i5.StylerDirective, typeof i6.PreventEnterDirective, typeof i7.AutoFocusDirective, typeof i8.TrimWhitespaceDirective, typeof i9.ClickSubjectDirective, typeof i10.ClickEmitterDirective, typeof i11.DialogDirective, typeof i12.MatSlideToggleGroupDirective, typeof i13.ConditionalClassesDirective], never, [typeof i4.StopPropagationDirective, typeof i6.PreventEnterDirective, typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof i4.StopPropagationDirective, typeof i8.TrimWhitespaceDirective, typeof i5.StylerDirective, typeof i6.PreventEnterDirective, typeof i7.AutoFocusDirective, typeof i9.ClickSubjectDirective, typeof i10.ClickEmitterDirective, typeof i11.DialogDirective, typeof i12.MatSlideToggleGroupDirective, typeof i13.ConditionalClassesDirective]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UtilitiesModule>;
|
|
19
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FunctionPipe implements PipeTransform {
|
|
4
|
-
transform(func: ((...args: any[]) => any) | string, ...args: any[]): any;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FunctionPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FunctionPipe, "func", false>;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PhoneNumberPipe implements PipeTransform {
|
|
4
|
-
transform(phoneNum: string): any;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<PhoneNumberPipe, "phone", false>;
|
|
7
|
-
}
|