@one-paragon/angular-utilities 0.2.2 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action-state/action-state-spinner/action-state-spinner.component.d.ts +1 -1
- package/action-state/action-state-ui/action-state-ui.module.d.ts +1 -3
- package/esm2022/action-state/action-state-spinner/action-state-spinner.component.mjs +6 -5
- package/esm2022/action-state/action-state-ui/action-state-ui.module.mjs +4 -12
- package/esm2022/action-state/ngrx.mjs +4 -4
- package/esm2022/http-request-state/directives/http-error-state-directive.mjs +3 -3
- package/esm2022/http-request-state/directives/http-inProgress-state-directive.mjs +3 -3
- package/esm2022/http-request-state/directives/http-notStarted-state-directive.mjs +3 -3
- package/esm2022/http-request-state/directives/http-success-state-directive.mjs +3 -3
- package/esm2022/http-request-state/directives/request-state-directive.mjs +3 -3
- package/esm2022/http-request-state/http-state-module.mjs +3 -4
- package/esm2022/ngrx/actionable-selector.mjs +7 -11
- package/esm2022/table-builder/classes/TableBuilderConfig.mjs +13 -2
- package/esm2022/table-builder/classes/TableState.mjs +2 -1
- package/esm2022/table-builder/classes/table-store.mjs +6 -8
- package/esm2022/table-builder/components/array-column.component.mjs +31 -27
- package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +19 -15
- package/esm2022/table-builder/components/date-filter/date-filter.component.mjs +13 -8
- package/esm2022/table-builder/components/date-time-filter/date-time-filter.component.mjs +9 -6
- package/esm2022/table-builder/components/filter/filter.component.mjs +33 -20
- package/esm2022/table-builder/components/filter/in-list/in-list-filter.component.mjs +24 -20
- package/esm2022/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +17 -10
- package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +28 -22
- package/esm2022/table-builder/components/generic-table/paginator.component.mjs +22 -22
- package/esm2022/table-builder/components/group-by-list/group-by-list.component.mjs +18 -16
- package/esm2022/table-builder/components/header-menu/header-menu.component.mjs +26 -16
- package/esm2022/table-builder/components/in-filter/in-filter.component.mjs +10 -8
- package/esm2022/table-builder/components/initialization-component/initialization-component.mjs +9 -6
- package/esm2022/table-builder/components/link-column.component.mjs +47 -42
- package/esm2022/table-builder/components/number-filter/number-filter.component.mjs +11 -8
- package/esm2022/table-builder/components/sort-menu/sort-menu.component.mjs +17 -11
- package/esm2022/table-builder/components/table-container/table-container-imports.mjs +22 -0
- package/esm2022/table-builder/components/table-container/table-container.mjs +76 -85
- package/esm2022/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +29 -24
- package/esm2022/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +15 -9
- package/esm2022/table-builder/directives/custom-cell-directive.mjs +3 -2
- package/esm2022/table-builder/directives/multi-sort.directive.mjs +4 -3
- package/esm2022/table-builder/directives/resize-column.directive.mjs +3 -2
- package/esm2022/table-builder/directives/table-wrapper.directive.mjs +6 -5
- package/esm2022/table-builder/directives/tb-filter.directive.mjs +22 -15
- package/esm2022/table-builder/ngrx/tableBuilderStateStore.mjs +116 -0
- package/esm2022/table-builder/pipes/column-total.pipe.mjs +6 -3
- package/esm2022/table-builder/pipes/format-filter-type.pipe.mjs +3 -3
- package/esm2022/table-builder/pipes/format-filter-value.pipe.mjs +3 -3
- package/esm2022/table-builder/pipes/key-display.mjs +3 -3
- package/esm2022/table-builder/table-builder.module.mjs +36 -123
- package/esm2022/utilities/directives/auto-focus.directive.mjs +4 -3
- package/esm2022/utilities/directives/clickEmitterDirective.mjs +4 -3
- package/esm2022/utilities/directives/clickSubject.mjs +4 -3
- package/esm2022/utilities/directives/conditional-classes.directive.mjs +4 -3
- package/esm2022/utilities/directives/dialog-service.mjs +2 -4
- package/esm2022/utilities/directives/dialog.mjs +9 -9
- package/esm2022/utilities/directives/mat-toggle-group-directive.mjs +3 -2
- package/esm2022/utilities/directives/prevent-enter.directive.mjs +4 -3
- package/esm2022/utilities/directives/stop-propagation.directive.mjs +4 -3
- package/esm2022/utilities/directives/styler.mjs +3 -2
- package/esm2022/utilities/directives/trim-whitespace.directive.mjs +3 -2
- package/esm2022/utilities/module.mjs +3 -4
- package/esm2022/utilities/pipes/function.pipe.mjs +4 -3
- package/esm2022/utilities/pipes/phone.pipe.mjs +3 -3
- package/esm2022/utilities/pipes/space-case.pipes.mjs +3 -3
- package/fesm2022/one-paragon-angular-utilities.mjs +2195 -2379
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
- package/http-request-state/directives/http-error-state-directive.d.ts +1 -1
- package/http-request-state/directives/http-inProgress-state-directive.d.ts +1 -1
- package/http-request-state/directives/http-notStarted-state-directive.d.ts +1 -1
- package/http-request-state/directives/http-success-state-directive.d.ts +1 -1
- package/http-request-state/directives/request-state-directive.d.ts +1 -1
- package/http-request-state/http-state-module.d.ts +1 -1
- package/ngrx/actionable-selector.d.ts +1 -0
- package/package.json +1 -1
- package/table-builder/classes/TableState.d.ts +2 -1
- package/table-builder/classes/table-store.d.ts +3 -3
- package/table-builder/components/array-column.component.d.ts +1 -1
- package/table-builder/components/column-builder/column-builder.component.d.ts +1 -1
- package/table-builder/components/date-filter/date-filter.component.d.ts +1 -1
- package/table-builder/components/date-time-filter/date-time-filter.component.d.ts +1 -1
- package/table-builder/components/filter/filter.component.d.ts +5 -5
- package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +1 -1
- package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +1 -1
- package/table-builder/components/generic-table/generic-table.component.d.ts +3 -3
- package/table-builder/components/generic-table/paginator.component.d.ts +1 -1
- package/table-builder/components/group-by-list/group-by-list.component.d.ts +2 -5
- package/table-builder/components/header-menu/header-menu.component.d.ts +1 -1
- package/table-builder/components/in-filter/in-filter.component.d.ts +1 -1
- package/table-builder/components/initialization-component/initialization-component.d.ts +1 -1
- package/table-builder/components/link-column.component.d.ts +1 -1
- package/table-builder/components/number-filter/number-filter.component.d.ts +1 -1
- package/table-builder/components/sort-menu/sort-menu.component.d.ts +1 -1
- package/table-builder/components/table-container/table-container-imports.d.ts +11 -0
- package/table-builder/components/table-container/table-container.d.ts +18 -19
- package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +2 -3
- package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +1 -1
- package/table-builder/directives/custom-cell-directive.d.ts +1 -1
- package/table-builder/directives/multi-sort.directive.d.ts +1 -1
- package/table-builder/directives/resize-column.directive.d.ts +1 -1
- package/table-builder/directives/table-wrapper.directive.d.ts +2 -2
- package/table-builder/directives/tb-filter.directive.d.ts +7 -7
- package/table-builder/ngrx/tableBuilderStateStore.d.ts +62 -0
- package/table-builder/pipes/column-total.pipe.d.ts +1 -1
- package/table-builder/pipes/format-filter-type.pipe.d.ts +1 -1
- package/table-builder/pipes/format-filter-value.pipe.d.ts +1 -1
- package/table-builder/pipes/key-display.d.ts +1 -1
- package/table-builder/table-builder.module.d.ts +13 -38
- package/utilities/directives/auto-focus.directive.d.ts +1 -1
- package/utilities/directives/clickEmitterDirective.d.ts +1 -1
- package/utilities/directives/clickSubject.d.ts +1 -1
- package/utilities/directives/conditional-classes.directive.d.ts +1 -1
- package/utilities/directives/dialog.d.ts +3 -3
- package/utilities/directives/mat-toggle-group-directive.d.ts +1 -1
- package/utilities/directives/prevent-enter.directive.d.ts +1 -1
- package/utilities/directives/stop-propagation.directive.d.ts +1 -1
- package/utilities/directives/styler.d.ts +1 -1
- package/utilities/directives/trim-whitespace.directive.d.ts +1 -1
- package/utilities/module.d.ts +1 -1
- package/utilities/pipes/function.pipe.d.ts +1 -1
- package/utilities/pipes/phone.pipe.d.ts +1 -1
- package/utilities/pipes/space-case.pipes.d.ts +1 -1
- package/esm2022/table-builder/material.module.mjs +0 -208
- package/esm2022/table-builder/ngrx/actions.mjs +0 -5
- package/esm2022/table-builder/ngrx/effects.mjs +0 -49
- package/esm2022/table-builder/ngrx/reducer.mjs +0 -52
- package/esm2022/table-builder/ngrx/selectors.mjs +0 -24
- package/table-builder/material.module.d.ts +0 -32
- 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
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.