@one-paragon/angular-utilities 0.3.10 → 0.3.11-beta.2

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 (112) hide show
  1. package/action-state/ngrx.d.ts +1 -1
  2. package/esm2022/action-state/action-state-spinner/action-state-spinner.component.mjs +3 -3
  3. package/esm2022/action-state/action-state-ui/action-state-ui.module.mjs +4 -4
  4. package/esm2022/action-state/ngrx-ext/ngrx-ext.module.mjs +4 -4
  5. package/esm2022/http-request-state/HttpRequestStateFactory.mjs +3 -3
  6. package/esm2022/http-request-state/HttpRequestStateStore.mjs +3 -3
  7. package/esm2022/http-request-state/directives/HttpStateDirectiveBase.mjs +3 -3
  8. package/esm2022/http-request-state/directives/http-error-state-directive.mjs +3 -3
  9. package/esm2022/http-request-state/directives/http-inProgress-state-directive.mjs +3 -3
  10. package/esm2022/http-request-state/directives/http-notStarted-state-directive.mjs +3 -3
  11. package/esm2022/http-request-state/directives/http-success-state-directive.mjs +3 -3
  12. package/esm2022/http-request-state/directives/request-state-directive.mjs +3 -3
  13. package/esm2022/http-request-state/http-state-module.mjs +4 -4
  14. package/esm2022/table-builder/classes/TableBuilderDataSource.mjs +5 -6
  15. package/esm2022/table-builder/classes/TableState.mjs +3 -1
  16. package/esm2022/table-builder/classes/filter-info.mjs +1 -1
  17. package/esm2022/table-builder/classes/table-builder-general-settings.mjs +19 -1
  18. package/esm2022/table-builder/classes/table-builder.mjs +8 -49
  19. package/esm2022/table-builder/classes/table-store.mjs +16 -10
  20. package/esm2022/table-builder/components/array-column.component.mjs +38 -59
  21. package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +18 -30
  22. package/esm2022/table-builder/components/column-builder/column-helpers.mjs +26 -0
  23. package/esm2022/table-builder/components/date-filter/date-filter.component.mjs +3 -3
  24. package/esm2022/table-builder/components/date-time-filter/date-time-filter.component.mjs +3 -3
  25. package/esm2022/table-builder/components/filter/filter.component.mjs +6 -5
  26. package/esm2022/table-builder/components/filter/in-list/in-list-filter.component.mjs +5 -5
  27. package/esm2022/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +3 -3
  28. package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +22 -35
  29. package/esm2022/table-builder/components/generic-table/paginator.component.mjs +17 -16
  30. package/esm2022/table-builder/components/group-by-list/group-by-list.component.mjs +4 -4
  31. package/esm2022/table-builder/components/header-menu/header-menu.component.mjs +7 -8
  32. package/esm2022/table-builder/components/in-filter/in-filter.component.mjs +3 -3
  33. package/esm2022/table-builder/components/initialization-component/initialization-component.mjs +17 -13
  34. package/esm2022/table-builder/components/link-column.component.mjs +65 -60
  35. package/esm2022/table-builder/components/number-filter/number-filter.component.mjs +3 -3
  36. package/esm2022/table-builder/components/sort-menu/sort-menu.component-store.mjs +3 -3
  37. package/esm2022/table-builder/components/sort-menu/sort-menu.component.mjs +5 -5
  38. package/esm2022/table-builder/components/table-container/table-container.helpers/data-state.helpers.mjs +135 -2
  39. package/esm2022/table-builder/components/table-container/table-container.helpers/filter-state.helpers.mjs +47 -26
  40. package/esm2022/table-builder/components/table-container/table-container.helpers/sort-state.helpers.mjs +1 -1
  41. package/esm2022/table-builder/components/table-container/table-container.mjs +25 -71
  42. package/esm2022/table-builder/components/table-container/tableProps.mjs +2 -4
  43. package/esm2022/table-builder/components/table-container/virtual-scroll-container.mjs +25 -21
  44. package/esm2022/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +4 -4
  45. package/esm2022/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +3 -3
  46. package/esm2022/table-builder/components/table-container-filter/table-wrapper-filter-store.mjs +3 -3
  47. package/esm2022/table-builder/directives/custom-cell-directive.mjs +3 -3
  48. package/esm2022/table-builder/directives/multi-sort.directive.mjs +3 -3
  49. package/esm2022/table-builder/directives/resize-column.directive.mjs +7 -6
  50. package/esm2022/table-builder/directives/table-wrapper.directive.mjs +3 -3
  51. package/esm2022/table-builder/directives/tb-filter.directive.mjs +30 -30
  52. package/esm2022/table-builder/interfaces/report-def.mjs +11 -1
  53. package/esm2022/table-builder/ngrx/tableBuilderStateStore.mjs +3 -3
  54. package/esm2022/table-builder/pipes/column-total.pipe.mjs +3 -3
  55. package/esm2022/table-builder/pipes/format-filter-type.pipe.mjs +3 -3
  56. package/esm2022/table-builder/pipes/format-filter-value.pipe.mjs +3 -3
  57. package/esm2022/table-builder/pipes/key-display.mjs +3 -3
  58. package/esm2022/table-builder/services/export-to-csv.service.mjs +3 -3
  59. package/esm2022/table-builder/services/link-creator.service.mjs +11 -2
  60. package/esm2022/table-builder/services/table-template-service.mjs +18 -7
  61. package/esm2022/table-builder/services/transform-creator.mjs +27 -5
  62. package/esm2022/table-builder/table-builder.module.mjs +4 -4
  63. package/esm2022/utilities/directives/auto-focus.directive.mjs +3 -3
  64. package/esm2022/utilities/directives/clickEmitterDirective.mjs +3 -3
  65. package/esm2022/utilities/directives/clickSubject.mjs +3 -3
  66. package/esm2022/utilities/directives/conditional-classes.directive.mjs +3 -3
  67. package/esm2022/utilities/directives/dialog-service.mjs +3 -3
  68. package/esm2022/utilities/directives/dialog.mjs +8 -7
  69. package/esm2022/utilities/directives/mat-toggle-group-directive.mjs +3 -3
  70. package/esm2022/utilities/directives/prevent-enter.directive.mjs +3 -3
  71. package/esm2022/utilities/directives/stop-propagation.directive.mjs +3 -3
  72. package/esm2022/utilities/directives/styler.mjs +4 -4
  73. package/esm2022/utilities/directives/trim-whitespace.directive.mjs +3 -3
  74. package/esm2022/utilities/module.mjs +4 -4
  75. package/esm2022/utilities/pipes/function.pipe.mjs +3 -3
  76. package/esm2022/utilities/pipes/phone.pipe.mjs +3 -3
  77. package/esm2022/utilities/pipes/space-case.pipes.mjs +3 -3
  78. package/fesm2022/one-paragon-angular-utilities.mjs +777 -642
  79. package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
  80. package/package.json +8 -8
  81. package/table-builder/classes/TableBuilderDataSource.d.ts +1 -3
  82. package/table-builder/classes/TableState.d.ts +5 -8
  83. package/table-builder/classes/filter-info.d.ts +2 -2
  84. package/table-builder/classes/table-builder-general-settings.d.ts +12 -0
  85. package/table-builder/classes/table-builder.d.ts +0 -2
  86. package/table-builder/classes/table-store.d.ts +17 -14
  87. package/table-builder/components/array-column.component.d.ts +13 -12
  88. package/table-builder/components/column-builder/column-builder.component.d.ts +8 -15
  89. package/table-builder/components/column-builder/column-helpers.d.ts +28 -0
  90. package/table-builder/components/generic-table/generic-table.component.d.ts +2 -9
  91. package/table-builder/components/generic-table/paginator.component.d.ts +4 -5
  92. package/table-builder/components/header-menu/header-menu.component.d.ts +1 -1
  93. package/table-builder/components/initialization-component/initialization-component.d.ts +4 -3
  94. package/table-builder/components/link-column.component.d.ts +21 -13
  95. package/table-builder/components/table-container/table-container-imports.d.ts +1 -1
  96. package/table-builder/components/table-container/table-container.d.ts +6 -11
  97. package/table-builder/components/table-container/table-container.helpers/data-state.helpers.d.ts +6 -5
  98. package/table-builder/components/table-container/table-container.helpers/filter-state.helpers.d.ts +11 -9
  99. package/table-builder/components/table-container/table-container.helpers/sort-state.helpers.d.ts +1 -2
  100. package/table-builder/components/table-container/tableProps.d.ts +4 -4
  101. package/table-builder/components/table-container/virtual-scroll-container.d.ts +8 -6
  102. package/table-builder/directives/resize-column.directive.d.ts +2 -1
  103. package/table-builder/directives/tb-filter.directive.d.ts +1 -1
  104. package/table-builder/interfaces/report-def.d.ts +2 -1
  105. package/table-builder/services/export-to-csv.service.d.ts +3 -3
  106. package/table-builder/services/link-creator.service.d.ts +14 -10
  107. package/table-builder/services/table-template-service.d.ts +2 -1
  108. package/table-builder/services/transform-creator.d.ts +2 -0
  109. package/utilities/directives/dialog.d.ts +1 -1
  110. package/utilities/directives/styler.d.ts +5 -4
  111. package/esm2022/table-builder/components/table-context.mjs +0 -2
  112. package/table-builder/components/table-context.d.ts +0 -10
@@ -41,10 +41,10 @@ export class MatSlideToggleGroupDirective {
41
41
  return newVal;
42
42
  }, startValue), startWith(startValue));
43
43
  }
44
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MatSlideToggleGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
45
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: MatSlideToggleGroupDirective, isStandalone: true, selector: "[opMatSlideToggleGroup]", inputs: { allowMultiple: "allowMultiple" }, outputs: { valueEmitter: "valueEmitter" }, queries: [{ propertyName: "toggles", predicate: MatSlideToggle }], ngImport: i0 }); }
44
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: MatSlideToggleGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
45
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: MatSlideToggleGroupDirective, isStandalone: true, selector: "[opMatSlideToggleGroup]", inputs: { allowMultiple: "allowMultiple" }, outputs: { valueEmitter: "valueEmitter" }, queries: [{ propertyName: "toggles", predicate: MatSlideToggle }], ngImport: i0 }); }
46
46
  }
47
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MatSlideToggleGroupDirective, decorators: [{
47
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: MatSlideToggleGroupDirective, decorators: [{
48
48
  type: Directive,
49
49
  args: [{ selector: '[opMatSlideToggleGroup]',
50
50
  standalone: true
@@ -4,10 +4,10 @@ export class PreventEnterDirective {
4
4
  onKeyDown() {
5
5
  return false;
6
6
  }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PreventEnterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
8
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: PreventEnterDirective, isStandalone: true, selector: "preventEnter", host: { listeners: { "keydown.enter": "onKeyDown($event)" } }, ngImport: i0 }); }
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PreventEnterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
8
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: PreventEnterDirective, isStandalone: true, selector: "preventEnter", host: { listeners: { "keydown.enter": "onKeyDown($event)" } }, ngImport: i0 }); }
9
9
  }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PreventEnterDirective, decorators: [{
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PreventEnterDirective, decorators: [{
11
11
  type: Directive,
12
12
  args: [{
13
13
  selector: 'preventEnter',
@@ -7,10 +7,10 @@ export class StopPropagationDirective {
7
7
  onMousedown(event) {
8
8
  event.stopPropagation();
9
9
  }
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StopPropagationDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
11
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: StopPropagationDirective, isStandalone: true, selector: "[stop-propagation]", host: { listeners: { "click": "onClick($event)", "mousedown": "onMousedown($event)" } }, ngImport: i0 }); }
10
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: StopPropagationDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: StopPropagationDirective, isStandalone: true, selector: "[stop-propagation]", host: { listeners: { "click": "onClick($event)", "mousedown": "onMousedown($event)" } }, ngImport: i0 }); }
12
12
  }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StopPropagationDirective, decorators: [{
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: StopPropagationDirective, decorators: [{
14
14
  type: Directive,
15
15
  args: [{
16
16
  selector: "[stop-propagation]",
@@ -25,10 +25,10 @@ export class StylerDirective {
25
25
  this.renderer = renderer;
26
26
  this.stylesApplied = {};
27
27
  }
28
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StylerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
29
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: StylerDirective, isStandalone: true, selector: "[styler]", inputs: { element: "element", styler: "styler" }, ngImport: i0 }); }
28
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: StylerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
29
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: StylerDirective, isStandalone: true, selector: "[styler]", inputs: { element: "element", styler: "styler" }, ngImport: i0 }); }
30
30
  }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StylerDirective, decorators: [{
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: StylerDirective, decorators: [{
32
32
  type: Directive,
33
33
  args: [{
34
34
  selector: '[styler]',
@@ -39,4 +39,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImpor
39
39
  }], styler: [{
40
40
  type: Input
41
41
  }] } });
42
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3R5bGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci11dGlsaXRpZXMvc3JjL3V0aWxpdGllcy9kaXJlY3RpdmVzL3N0eWxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFHLEtBQUssRUFBeUIsTUFBTSxlQUFlLENBQUM7O0FBT3RFLE1BQU0sT0FBTyxlQUFlO0lBRzdCLElBQWEsTUFBTSxDQUFDLE1BQTBHO1FBQzVILE1BQU0sT0FBTyxHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxDQUFDLEdBQUcsRUFBRSxHQUFHLENBQUMsRUFBRSxFQUFFO1lBQ3RFLElBQUcsT0FBTSxDQUFDLEdBQUcsQ0FBQyxLQUFLLFFBQVEsRUFBQztnQkFDMUIsR0FBRyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEdBQUcsQ0FBQztnQkFDZixJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLEdBQUcsR0FBRyxDQUFDO2FBQ3hDO2lCQUFNLElBQUcsR0FBRyxFQUFFLFNBQVMsS0FBSyxJQUFJLElBQUksR0FBRyxFQUFFLFNBQVMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEVBQUM7Z0JBQ2hFLE1BQU0sS0FBSyxHQUFJLE9BQU0sQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxHQUFHLEVBQUUsS0FBSyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFDckYsR0FBRyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQztnQkFDakIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQzthQUMxQztZQUNELE9BQU8sR0FBRyxDQUFDO1FBQ2IsQ0FBQyxFQUFFLEVBQXdCLENBQUMsQ0FBQztRQUU3QixNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQy9GLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ3hELENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUM7SUFDL0IsQ0FBQztJQUFBLENBQUM7SUFDRixZQUFvQixFQUFjLEVBQVUsUUFBbUI7UUFBM0MsT0FBRSxHQUFGLEVBQUUsQ0FBWTtRQUFVLGFBQVEsR0FBUixRQUFRLENBQVc7UUFwQi9ELGtCQUFhLEdBQXdCLEVBQUUsQ0FBQztJQXFCekMsQ0FBQzs4R0F0QmMsZUFBZTtrR0FBZixlQUFlOzsyRkFBZixlQUFlO2tCQUg5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxVQUFVO29CQUNwQixVQUFVLEVBQUUsSUFBSTtpQkFDbkI7dUdBRVUsT0FBTztzQkFBZixLQUFLO2dCQUNPLE1BQU07c0JBQWxCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsICBJbnB1dCwgRWxlbWVudFJlZiwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERpY3Rpb25hcnkgfSBmcm9tICdAbmdyeC9lbnRpdHknO1xyXG5cclxuXHJcbkBEaXJlY3RpdmUoe1xyXG4gICAgc2VsZWN0b3I6ICdbc3R5bGVyXScsXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pIGV4cG9ydCBjbGFzcyBTdHlsZXJEaXJlY3RpdmUge1xyXG4gIHN0eWxlc0FwcGxpZWQgOiBEaWN0aW9uYXJ5PHN0cmluZz4gPSB7fTtcclxuICBASW5wdXQoKSBlbGVtZW50PzogYW55O1xyXG4gIEBJbnB1dCgpIHNldCBzdHlsZXIoc3R5bGVzOiBEaWN0aW9uYXJ5PHN0cmluZyB8IHtjb25kaXRpb246ICgodDphbnkpID0+IGJvb2xlYW4pIHwgdHJ1ZSwgdmFsdWU6ICgodDphbnkpID0+IHN0cmluZykgfCBzdHJpbmd9Pil7XHJcbiAgICBjb25zdCB0b0FwcGx5ID0gT2JqZWN0LmVudHJpZXMoc3R5bGVzID8/IHt9KS5yZWR1Y2UoKGFjYywgW2tleSwgdmFsXSkgPT4ge1xyXG4gICAgICBpZih0eXBlb2YodmFsKSA9PT0gJ3N0cmluZycpe1xyXG4gICAgICAgIGFjY1trZXldID0gdmFsO1xyXG4gICAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudC5zdHlsZVtrZXldID0gdmFsO1xyXG4gICAgICB9IGVsc2UgaWYodmFsPy5jb25kaXRpb24gPT09IHRydWUgfHwgdmFsPy5jb25kaXRpb24odGhpcy5lbGVtZW50KSl7XHJcbiAgICAgICAgY29uc3QgdmFsdWUgPSAgdHlwZW9mKHZhbC52YWx1ZSkgPT09ICdzdHJpbmcnID8gdmFsLnZhbHVlIDogdmFsPy52YWx1ZSh0aGlzLmVsZW1lbnQpO1xyXG4gICAgICAgIGFjY1trZXldID0gdmFsdWU7XHJcbiAgICAgICAgdGhpcy5lbC5uYXRpdmVFbGVtZW50LnN0eWxlW2tleV0gPSB2YWx1ZTtcclxuICAgICAgfVxyXG4gICAgICByZXR1cm4gYWNjO1xyXG4gICAgfSwge30gYXMgRGljdGlvbmFyeTxzdHJpbmc+KTtcclxuXHJcbiAgICBPYmplY3Qua2V5cyh0aGlzLnN0eWxlc0FwcGxpZWQpLmZpbHRlcihrZXkgPT4gIU9iamVjdC5rZXlzKHRvQXBwbHkpLmluY2x1ZGVzKGtleSkpLmZvckVhY2goa2V5ID0+IHtcclxuICAgICAgdGhpcy5yZW5kZXJlci5yZW1vdmVTdHlsZSh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQsIGtleSk7XHJcbiAgICB9KTtcclxuICAgIHRoaXMuc3R5bGVzQXBwbGllZCA9IHRvQXBwbHk7XHJcbiAgfTtcclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsOiBFbGVtZW50UmVmLCBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIpIHtcclxuIH1cclxufVxyXG4iXX0=
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3R5bGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci11dGlsaXRpZXMvc3JjL3V0aWxpdGllcy9kaXJlY3RpdmVzL3N0eWxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFHLEtBQUssRUFBeUIsTUFBTSxlQUFlLENBQUM7O0FBT3RFLE1BQU0sT0FBTyxlQUFlO0lBRzdCLElBQWEsTUFBTSxDQUFDLE1BQW1CO1FBQ3JDLE1BQU0sT0FBTyxHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxDQUFDLEdBQUcsRUFBRSxHQUFHLENBQUMsRUFBRSxFQUFFO1lBQ3RFLElBQUcsT0FBTSxDQUFDLEdBQUcsQ0FBQyxLQUFLLFFBQVEsRUFBQztnQkFDMUIsR0FBRyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEdBQUcsQ0FBQztnQkFDZixJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLEdBQUcsR0FBRyxDQUFDO2FBQ3hDO2lCQUFNLElBQUcsR0FBRyxFQUFFLFNBQVMsS0FBSyxJQUFJLElBQUksR0FBRyxFQUFFLFNBQVMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEVBQUM7Z0JBQ2hFLE1BQU0sS0FBSyxHQUFJLE9BQU0sQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxHQUFHLEVBQUUsS0FBSyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFDckYsR0FBRyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQztnQkFDakIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQzthQUMxQztZQUNELE9BQU8sR0FBRyxDQUFDO1FBQ2IsQ0FBQyxFQUFFLEVBQXdCLENBQUMsQ0FBQztRQUU3QixNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQy9GLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ3hELENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUM7SUFDL0IsQ0FBQztJQUFBLENBQUM7SUFDRixZQUFvQixFQUFjLEVBQVUsUUFBbUI7UUFBM0MsT0FBRSxHQUFGLEVBQUUsQ0FBWTtRQUFVLGFBQVEsR0FBUixRQUFRLENBQVc7UUFwQi9ELGtCQUFhLEdBQXdCLEVBQUUsQ0FBQztJQXFCekMsQ0FBQzs4R0F0QmMsZUFBZTtrR0FBZixlQUFlOzsyRkFBZixlQUFlO2tCQUg5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxVQUFVO29CQUNwQixVQUFVLEVBQUUsSUFBSTtpQkFDbkI7dUdBRVUsT0FBTztzQkFBZixLQUFLO2dCQUNPLE1BQU07c0JBQWxCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsICBJbnB1dCwgRWxlbWVudFJlZiwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERpY3Rpb25hcnkgfSBmcm9tICdAbmdyeC9lbnRpdHknO1xyXG5cclxuXHJcbkBEaXJlY3RpdmUoe1xyXG4gICAgc2VsZWN0b3I6ICdbc3R5bGVyXScsXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pIGV4cG9ydCBjbGFzcyBTdHlsZXJEaXJlY3RpdmUge1xyXG4gIHN0eWxlc0FwcGxpZWQgOiBEaWN0aW9uYXJ5PHN0cmluZz4gPSB7fTtcclxuICBASW5wdXQoKSBlbGVtZW50PzogYW55O1xyXG4gIEBJbnB1dCgpIHNldCBzdHlsZXIoc3R5bGVzOiBTdHlsZXJTdHlsZSl7XHJcbiAgICBjb25zdCB0b0FwcGx5ID0gT2JqZWN0LmVudHJpZXMoc3R5bGVzID8/IHt9KS5yZWR1Y2UoKGFjYywgW2tleSwgdmFsXSkgPT4ge1xyXG4gICAgICBpZih0eXBlb2YodmFsKSA9PT0gJ3N0cmluZycpe1xyXG4gICAgICAgIGFjY1trZXldID0gdmFsO1xyXG4gICAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudC5zdHlsZVtrZXldID0gdmFsO1xyXG4gICAgICB9IGVsc2UgaWYodmFsPy5jb25kaXRpb24gPT09IHRydWUgfHwgdmFsPy5jb25kaXRpb24odGhpcy5lbGVtZW50KSl7XHJcbiAgICAgICAgY29uc3QgdmFsdWUgPSAgdHlwZW9mKHZhbC52YWx1ZSkgPT09ICdzdHJpbmcnID8gdmFsLnZhbHVlIDogdmFsPy52YWx1ZSh0aGlzLmVsZW1lbnQpO1xyXG4gICAgICAgIGFjY1trZXldID0gdmFsdWU7XHJcbiAgICAgICAgdGhpcy5lbC5uYXRpdmVFbGVtZW50LnN0eWxlW2tleV0gPSB2YWx1ZTtcclxuICAgICAgfVxyXG4gICAgICByZXR1cm4gYWNjO1xyXG4gICAgfSwge30gYXMgRGljdGlvbmFyeTxzdHJpbmc+KTtcclxuXHJcbiAgICBPYmplY3Qua2V5cyh0aGlzLnN0eWxlc0FwcGxpZWQpLmZpbHRlcihrZXkgPT4gIU9iamVjdC5rZXlzKHRvQXBwbHkpLmluY2x1ZGVzKGtleSkpLmZvckVhY2goa2V5ID0+IHtcclxuICAgICAgdGhpcy5yZW5kZXJlci5yZW1vdmVTdHlsZSh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQsIGtleSk7XHJcbiAgICB9KTtcclxuICAgIHRoaXMuc3R5bGVzQXBwbGllZCA9IHRvQXBwbHk7XHJcbiAgfTtcclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsOiBFbGVtZW50UmVmLCBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIpIHtcclxuIH1cclxufVxyXG5cclxuZXhwb3J0IHR5cGUgU3R5bGVyU3R5bGUgPSBEaWN0aW9uYXJ5PFxyXG4gIHN0cmluZ1xyXG4gIHxcclxuICB7IFxyXG4gICAgY29uZGl0aW9uOiAoKHQ6YW55KSA9PiBib29sZWFuKSB8IHRydWUsXHJcbiAgICB2YWx1ZTogKCh0OmFueSkgPT4gc3RyaW5nKSB8IHN0cmluZ1xyXG4gIH0+XHJcbiJdfQ==
@@ -14,10 +14,10 @@ export class TrimWhitespaceDirective {
14
14
  }
15
15
  }
16
16
  }
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: TrimWhitespaceDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
18
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: TrimWhitespaceDirective, isStandalone: true, selector: "input[trimWhitespace]", host: { listeners: { "blur": "onBlur()" } }, ngImport: i0 }); }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TrimWhitespaceDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: TrimWhitespaceDirective, isStandalone: true, selector: "input[trimWhitespace]", host: { listeners: { "blur": "onBlur()" } }, ngImport: i0 }); }
19
19
  }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: TrimWhitespaceDirective, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TrimWhitespaceDirective, decorators: [{
21
21
  type: Directive,
22
22
  args: [{
23
23
  selector: 'input[trimWhitespace]',
@@ -15,8 +15,8 @@ import { PhoneNumberPipe } from "./pipes/phone.pipe";
15
15
  import { SpaceCasePipe } from "./pipes/space-case.pipes";
16
16
  import * as i0 from "@angular/core";
17
17
  export class UtilitiesModule {
18
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
19
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: UtilitiesModule, imports: [SpaceCasePipe,
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: UtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
19
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: UtilitiesModule, imports: [SpaceCasePipe,
20
20
  PhoneNumberPipe,
21
21
  FunctionPipe,
22
22
  StopPropagationDirective,
@@ -43,11 +43,11 @@ export class UtilitiesModule {
43
43
  DialogDirective,
44
44
  MatSlideToggleGroupDirective,
45
45
  ConditionalClassesDirective] }); }
46
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UtilitiesModule, providers: [
46
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: UtilitiesModule, providers: [
47
47
  DialogService
48
48
  ] }); }
49
49
  }
50
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UtilitiesModule, decorators: [{
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: UtilitiesModule, decorators: [{
51
51
  type: NgModule,
52
52
  args: [{
53
53
  exports: [
@@ -9,10 +9,10 @@ export class FunctionPipe {
9
9
  }
10
10
  return func(...args);
11
11
  }
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FunctionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
13
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: FunctionPipe, isStandalone: true, name: "func" }); }
12
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FunctionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
13
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: FunctionPipe, isStandalone: true, name: "func" }); }
14
14
  }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FunctionPipe, decorators: [{
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FunctionPipe, decorators: [{
16
16
  type: Pipe,
17
17
  args: [{
18
18
  name: 'func',
@@ -10,10 +10,10 @@ export class PhoneNumberPipe {
10
10
  return '(' + phoneNum.slice(0, 3) + ') ' + phoneNum.slice(3, 6) + '-' + phoneNum.slice(6, 10) + ' ' + phoneNum.slice(10);
11
11
  }
12
12
  }
13
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PhoneNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
14
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: PhoneNumberPipe, isStandalone: true, name: "phone" }); }
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PhoneNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
14
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: PhoneNumberPipe, isStandalone: true, name: "phone" }); }
15
15
  }
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PhoneNumberPipe, decorators: [{
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PhoneNumberPipe, decorators: [{
17
17
  type: Pipe,
18
18
  args: [{ name: 'phone', standalone: true }]
19
19
  }] });
@@ -4,10 +4,10 @@ export class SpaceCasePipe {
4
4
  transform(value) {
5
5
  return spaceCase(value);
6
6
  }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SpaceCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
8
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: SpaceCasePipe, isStandalone: true, name: "spaceCase" }); }
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SpaceCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
8
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: SpaceCasePipe, isStandalone: true, name: "spaceCase" }); }
9
9
  }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SpaceCasePipe, decorators: [{
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SpaceCasePipe, decorators: [{
11
11
  type: Pipe,
12
12
  args: [{ name: 'spaceCase', standalone: true }]
13
13
  }] });