@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.
Files changed (128) hide show
  1. package/action-state/action-state-spinner/action-state-spinner.component.d.ts +1 -1
  2. package/action-state/action-state-ui/action-state-ui.module.d.ts +1 -3
  3. package/esm2022/action-state/action-state-spinner/action-state-spinner.component.mjs +6 -5
  4. package/esm2022/action-state/action-state-ui/action-state-ui.module.mjs +4 -12
  5. package/esm2022/action-state/ngrx.mjs +4 -4
  6. package/esm2022/http-request-state/directives/http-error-state-directive.mjs +3 -3
  7. package/esm2022/http-request-state/directives/http-inProgress-state-directive.mjs +3 -3
  8. package/esm2022/http-request-state/directives/http-notStarted-state-directive.mjs +3 -3
  9. package/esm2022/http-request-state/directives/http-success-state-directive.mjs +3 -3
  10. package/esm2022/http-request-state/directives/request-state-directive.mjs +3 -3
  11. package/esm2022/http-request-state/http-state-module.mjs +3 -4
  12. package/esm2022/ngrx/actionable-selector.mjs +7 -11
  13. package/esm2022/table-builder/classes/TableBuilderConfig.mjs +13 -2
  14. package/esm2022/table-builder/classes/TableState.mjs +2 -1
  15. package/esm2022/table-builder/classes/table-store.mjs +6 -8
  16. package/esm2022/table-builder/components/array-column.component.mjs +31 -27
  17. package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +19 -15
  18. package/esm2022/table-builder/components/date-filter/date-filter.component.mjs +13 -8
  19. package/esm2022/table-builder/components/date-time-filter/date-time-filter.component.mjs +9 -6
  20. package/esm2022/table-builder/components/filter/filter.component.mjs +33 -20
  21. package/esm2022/table-builder/components/filter/in-list/in-list-filter.component.mjs +24 -20
  22. package/esm2022/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +17 -10
  23. package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +28 -22
  24. package/esm2022/table-builder/components/generic-table/paginator.component.mjs +22 -22
  25. package/esm2022/table-builder/components/group-by-list/group-by-list.component.mjs +18 -16
  26. package/esm2022/table-builder/components/header-menu/header-menu.component.mjs +26 -16
  27. package/esm2022/table-builder/components/in-filter/in-filter.component.mjs +10 -8
  28. package/esm2022/table-builder/components/initialization-component/initialization-component.mjs +9 -6
  29. package/esm2022/table-builder/components/link-column.component.mjs +47 -42
  30. package/esm2022/table-builder/components/number-filter/number-filter.component.mjs +11 -8
  31. package/esm2022/table-builder/components/sort-menu/sort-menu.component.mjs +17 -11
  32. package/esm2022/table-builder/components/table-container/table-container-imports.mjs +22 -0
  33. package/esm2022/table-builder/components/table-container/table-container.mjs +76 -85
  34. package/esm2022/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +29 -24
  35. package/esm2022/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +15 -9
  36. package/esm2022/table-builder/directives/custom-cell-directive.mjs +3 -2
  37. package/esm2022/table-builder/directives/multi-sort.directive.mjs +4 -3
  38. package/esm2022/table-builder/directives/resize-column.directive.mjs +3 -2
  39. package/esm2022/table-builder/directives/table-wrapper.directive.mjs +6 -5
  40. package/esm2022/table-builder/directives/tb-filter.directive.mjs +22 -15
  41. package/esm2022/table-builder/ngrx/tableBuilderStateStore.mjs +116 -0
  42. package/esm2022/table-builder/pipes/column-total.pipe.mjs +6 -3
  43. package/esm2022/table-builder/pipes/format-filter-type.pipe.mjs +3 -3
  44. package/esm2022/table-builder/pipes/format-filter-value.pipe.mjs +3 -3
  45. package/esm2022/table-builder/pipes/key-display.mjs +3 -3
  46. package/esm2022/table-builder/table-builder.module.mjs +36 -123
  47. package/esm2022/utilities/directives/auto-focus.directive.mjs +4 -3
  48. package/esm2022/utilities/directives/clickEmitterDirective.mjs +4 -3
  49. package/esm2022/utilities/directives/clickSubject.mjs +4 -3
  50. package/esm2022/utilities/directives/conditional-classes.directive.mjs +4 -3
  51. package/esm2022/utilities/directives/dialog-service.mjs +2 -4
  52. package/esm2022/utilities/directives/dialog.mjs +9 -9
  53. package/esm2022/utilities/directives/mat-toggle-group-directive.mjs +3 -2
  54. package/esm2022/utilities/directives/prevent-enter.directive.mjs +4 -3
  55. package/esm2022/utilities/directives/stop-propagation.directive.mjs +4 -3
  56. package/esm2022/utilities/directives/styler.mjs +3 -2
  57. package/esm2022/utilities/directives/trim-whitespace.directive.mjs +3 -2
  58. package/esm2022/utilities/module.mjs +3 -4
  59. package/esm2022/utilities/pipes/function.pipe.mjs +4 -3
  60. package/esm2022/utilities/pipes/phone.pipe.mjs +3 -3
  61. package/esm2022/utilities/pipes/space-case.pipes.mjs +3 -3
  62. package/fesm2022/one-paragon-angular-utilities.mjs +2195 -2379
  63. package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
  64. package/http-request-state/directives/http-error-state-directive.d.ts +1 -1
  65. package/http-request-state/directives/http-inProgress-state-directive.d.ts +1 -1
  66. package/http-request-state/directives/http-notStarted-state-directive.d.ts +1 -1
  67. package/http-request-state/directives/http-success-state-directive.d.ts +1 -1
  68. package/http-request-state/directives/request-state-directive.d.ts +1 -1
  69. package/http-request-state/http-state-module.d.ts +1 -1
  70. package/ngrx/actionable-selector.d.ts +1 -0
  71. package/package.json +1 -1
  72. package/table-builder/classes/TableState.d.ts +2 -1
  73. package/table-builder/classes/table-store.d.ts +3 -3
  74. package/table-builder/components/array-column.component.d.ts +1 -1
  75. package/table-builder/components/column-builder/column-builder.component.d.ts +1 -1
  76. package/table-builder/components/date-filter/date-filter.component.d.ts +1 -1
  77. package/table-builder/components/date-time-filter/date-time-filter.component.d.ts +1 -1
  78. package/table-builder/components/filter/filter.component.d.ts +5 -5
  79. package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +1 -1
  80. package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +1 -1
  81. package/table-builder/components/generic-table/generic-table.component.d.ts +3 -3
  82. package/table-builder/components/generic-table/paginator.component.d.ts +1 -1
  83. package/table-builder/components/group-by-list/group-by-list.component.d.ts +2 -5
  84. package/table-builder/components/header-menu/header-menu.component.d.ts +1 -1
  85. package/table-builder/components/in-filter/in-filter.component.d.ts +1 -1
  86. package/table-builder/components/initialization-component/initialization-component.d.ts +1 -1
  87. package/table-builder/components/link-column.component.d.ts +1 -1
  88. package/table-builder/components/number-filter/number-filter.component.d.ts +1 -1
  89. package/table-builder/components/sort-menu/sort-menu.component.d.ts +1 -1
  90. package/table-builder/components/table-container/table-container-imports.d.ts +11 -0
  91. package/table-builder/components/table-container/table-container.d.ts +18 -19
  92. package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +2 -3
  93. package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +1 -1
  94. package/table-builder/directives/custom-cell-directive.d.ts +1 -1
  95. package/table-builder/directives/multi-sort.directive.d.ts +1 -1
  96. package/table-builder/directives/resize-column.directive.d.ts +1 -1
  97. package/table-builder/directives/table-wrapper.directive.d.ts +2 -2
  98. package/table-builder/directives/tb-filter.directive.d.ts +7 -7
  99. package/table-builder/ngrx/tableBuilderStateStore.d.ts +62 -0
  100. package/table-builder/pipes/column-total.pipe.d.ts +1 -1
  101. package/table-builder/pipes/format-filter-type.pipe.d.ts +1 -1
  102. package/table-builder/pipes/format-filter-value.pipe.d.ts +1 -1
  103. package/table-builder/pipes/key-display.d.ts +1 -1
  104. package/table-builder/table-builder.module.d.ts +13 -38
  105. package/utilities/directives/auto-focus.directive.d.ts +1 -1
  106. package/utilities/directives/clickEmitterDirective.d.ts +1 -1
  107. package/utilities/directives/clickSubject.d.ts +1 -1
  108. package/utilities/directives/conditional-classes.directive.d.ts +1 -1
  109. package/utilities/directives/dialog.d.ts +3 -3
  110. package/utilities/directives/mat-toggle-group-directive.d.ts +1 -1
  111. package/utilities/directives/prevent-enter.directive.d.ts +1 -1
  112. package/utilities/directives/stop-propagation.directive.d.ts +1 -1
  113. package/utilities/directives/styler.d.ts +1 -1
  114. package/utilities/directives/trim-whitespace.directive.d.ts +1 -1
  115. package/utilities/module.d.ts +1 -1
  116. package/utilities/pipes/function.pipe.d.ts +1 -1
  117. package/utilities/pipes/phone.pipe.d.ts +1 -1
  118. package/utilities/pipes/space-case.pipes.d.ts +1 -1
  119. package/esm2022/table-builder/material.module.mjs +0 -208
  120. package/esm2022/table-builder/ngrx/actions.mjs +0 -5
  121. package/esm2022/table-builder/ngrx/effects.mjs +0 -49
  122. package/esm2022/table-builder/ngrx/reducer.mjs +0 -52
  123. package/esm2022/table-builder/ngrx/selectors.mjs +0 -24
  124. package/table-builder/material.module.d.ts +0 -32
  125. package/table-builder/ngrx/actions.d.ts +0 -23
  126. package/table-builder/ngrx/effects.d.ts +0 -19
  127. package/table-builder/ngrx/reducer.d.ts +0 -15
  128. 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.