@one-paragon/angular-utilities 0.1.30 → 0.1.32-beta

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 (231) hide show
  1. package/action-state/action-state-spinner/action-state-spinner.component.d.ts +12 -12
  2. package/action-state/action-state-ui/action-state-ui.module.d.ts +9 -9
  3. package/action-state/index.d.ts +4 -4
  4. package/action-state/ngrx-ext/ngrx-ext.module.d.ts +8 -8
  5. package/action-state/ngrx.d.ts +31 -31
  6. package/esm2020/action-state/action-state-spinner/action-state-spinner.component.mjs +23 -23
  7. package/esm2020/action-state/action-state-ui/action-state-ui.module.mjs +28 -28
  8. package/esm2020/action-state/index.mjs +8 -8
  9. package/esm2020/action-state/ngrx-ext/ngrx-ext.module.mjs +23 -23
  10. package/esm2020/action-state/ngrx.mjs +42 -42
  11. package/esm2020/http-request-state/HttpRequestStateFactory.mjs +26 -26
  12. package/esm2020/http-request-state/HttpRequestStateStore.mjs +96 -96
  13. package/esm2020/http-request-state/directives/HttpStateDirectiveBase.mjs +33 -33
  14. package/esm2020/http-request-state/directives/http-error-state-directive.mjs +28 -28
  15. package/esm2020/http-request-state/directives/http-inProgress-state-directive.mjs +28 -28
  16. package/esm2020/http-request-state/directives/http-notStarted-state-directive.mjs +28 -28
  17. package/esm2020/http-request-state/directives/http-success-state-directive.mjs +33 -33
  18. package/esm2020/http-request-state/directives/index.mjs +5 -5
  19. package/esm2020/http-request-state/directives/request-state-directive.mjs +59 -59
  20. package/esm2020/http-request-state/helpers.mjs +21 -21
  21. package/esm2020/http-request-state/http-request-state.mjs +38 -38
  22. package/esm2020/http-request-state/http-state-module.mjs +40 -40
  23. package/esm2020/http-request-state/index.mjs +6 -6
  24. package/esm2020/http-request-state/rxjs/getRequestorBody.mjs +3 -3
  25. package/esm2020/http-request-state/rxjs/getRequestorState.mjs +2 -2
  26. package/esm2020/http-request-state/rxjs/index.mjs +4 -4
  27. package/esm2020/http-request-state/rxjs/tapError.mjs +11 -11
  28. package/esm2020/http-request-state/rxjs/tapSuccess.mjs +11 -11
  29. package/esm2020/http-request-state/types.mjs +15 -15
  30. package/esm2020/ngrx/actionable-selector.mjs +75 -75
  31. package/esm2020/ngrx/index.mjs +1 -1
  32. package/esm2020/one-paragon-angular-utilities.mjs +4 -4
  33. package/esm2020/public-api.mjs +19 -19
  34. package/esm2020/rxjs/defaultShareReplay.mjs +6 -6
  35. package/esm2020/rxjs/index.mjs +5 -5
  36. package/esm2020/rxjs/mapError.mjs +7 -7
  37. package/esm2020/rxjs/rxjs-operators.mjs +91 -91
  38. package/esm2020/rxjs/subjectifier.mjs +15 -15
  39. package/esm2020/table-builder/classes/DefaultSettings.mjs +6 -6
  40. package/esm2020/table-builder/classes/GenericTableDataSource.mjs +13 -13
  41. package/esm2020/table-builder/classes/MatTableObservableDataSource.mjs +41 -21
  42. package/esm2020/table-builder/classes/TableBuilderConfig.mjs +3 -3
  43. package/esm2020/table-builder/classes/TableState.mjs +31 -31
  44. package/esm2020/table-builder/classes/data-filter.mjs +26 -26
  45. package/esm2020/table-builder/classes/display-col.mjs +1 -1
  46. package/esm2020/table-builder/classes/filter-info.mjs +73 -73
  47. package/esm2020/table-builder/classes/table-builder-general-settings.mjs +67 -67
  48. package/esm2020/table-builder/classes/table-builder.mjs +76 -76
  49. package/esm2020/table-builder/classes/table-store.mjs +292 -292
  50. package/esm2020/table-builder/components/array-column.component.mjs +32 -32
  51. package/esm2020/table-builder/components/column-builder/column-builder.component.mjs +112 -112
  52. package/esm2020/table-builder/components/date-filter/date-filter.component.mjs +25 -25
  53. package/esm2020/table-builder/components/date-time-filter/date-time-filter.component.mjs +22 -22
  54. package/esm2020/table-builder/components/filter/filter.component.mjs +54 -54
  55. package/esm2020/table-builder/components/filter/in-list/in-list-filter.component.mjs +79 -79
  56. package/esm2020/table-builder/components/gen-col-displayer/gen-col-displayer.component.mjs +45 -45
  57. package/esm2020/table-builder/components/generic-table/generic-table.component.mjs +204 -202
  58. package/esm2020/table-builder/components/generic-table/paginator.component.mjs +60 -60
  59. package/esm2020/table-builder/components/group-by-list/group-by-list.component.mjs +22 -22
  60. package/esm2020/table-builder/components/header-menu/header-menu.component.mjs +90 -90
  61. package/esm2020/table-builder/components/in-filter/in-filter.component.mjs +63 -63
  62. package/esm2020/table-builder/components/index.mjs +10 -10
  63. package/esm2020/table-builder/components/initialization-component/initialization-component.mjs +33 -33
  64. package/esm2020/table-builder/components/link-column.component.mjs +30 -30
  65. package/esm2020/table-builder/components/number-filter/number-filter.component.mjs +26 -26
  66. package/esm2020/table-builder/components/sort-menu/sort-menu.component-store.mjs +41 -41
  67. package/esm2020/table-builder/components/sort-menu/sort-menu.component.mjs +75 -75
  68. package/esm2020/table-builder/components/table-container/table-container.mjs +322 -322
  69. package/esm2020/table-builder/components/table-container-filter/filter-list/filter-list.component.mjs +42 -42
  70. package/esm2020/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.mjs +30 -30
  71. package/esm2020/table-builder/components/table-container-filter/table-wrapper-filter-store.mjs +24 -24
  72. package/esm2020/table-builder/directives/custom-cell-directive.mjs +58 -58
  73. package/esm2020/table-builder/directives/index.mjs +6 -6
  74. package/esm2020/table-builder/directives/multi-sort.directive.mjs +42 -42
  75. package/esm2020/table-builder/directives/resize-column.directive.mjs +85 -85
  76. package/esm2020/table-builder/directives/table-wrapper.directive.mjs +26 -26
  77. package/esm2020/table-builder/directives/tb-filter.directive.mjs +403 -403
  78. package/esm2020/table-builder/enums/filterTypes.mjs +72 -72
  79. package/esm2020/table-builder/functions/boolean-filter-function.mjs +9 -9
  80. package/esm2020/table-builder/functions/date-filter-function.mjs +58 -58
  81. package/esm2020/table-builder/functions/download-data.mjs +11 -11
  82. package/esm2020/table-builder/functions/null-filter-function.mjs +7 -7
  83. package/esm2020/table-builder/functions/number-filter-function.mjs +31 -31
  84. package/esm2020/table-builder/functions/sort-data-function.mjs +4 -4
  85. package/esm2020/table-builder/functions/string-filter-function.mjs +40 -40
  86. package/esm2020/table-builder/interfaces/ColumnInfo.mjs +1 -1
  87. package/esm2020/table-builder/interfaces/dictionary.mjs +1 -1
  88. package/esm2020/table-builder/interfaces/report-def.mjs +35 -35
  89. package/esm2020/table-builder/material.module.mjs +207 -207
  90. package/esm2020/table-builder/ngrx/actions.mjs +4 -4
  91. package/esm2020/table-builder/ngrx/effects.mjs +47 -47
  92. package/esm2020/table-builder/ngrx/reducer.mjs +51 -51
  93. package/esm2020/table-builder/ngrx/selectors.mjs +23 -23
  94. package/esm2020/table-builder/pipes/column-total.pipe.mjs +19 -19
  95. package/esm2020/table-builder/pipes/format-filter-type.pipe.mjs +17 -17
  96. package/esm2020/table-builder/pipes/format-filter-value.pipe.mjs +45 -45
  97. package/esm2020/table-builder/pipes/key-display.mjs +19 -19
  98. package/esm2020/table-builder/services/export-to-csv.service.mjs +88 -88
  99. package/esm2020/table-builder/services/link-creator.service.mjs +42 -42
  100. package/esm2020/table-builder/services/table-template-service.mjs +44 -44
  101. package/esm2020/table-builder/services/transform-creator.mjs +75 -75
  102. package/esm2020/table-builder/table-builder.module.mjs +215 -207
  103. package/esm2020/utilities/directives/auto-focus.directive.mjs +25 -25
  104. package/esm2020/utilities/directives/clickEmitterDirective.mjs +20 -20
  105. package/esm2020/utilities/directives/clickSubject.mjs +26 -26
  106. package/esm2020/utilities/directives/conditional-classes.directive.mjs +35 -35
  107. package/esm2020/utilities/directives/dialog-service.mjs +25 -25
  108. package/esm2020/utilities/directives/dialog.mjs +137 -137
  109. package/esm2020/utilities/directives/mat-toggle-group-directive.mjs +59 -59
  110. package/esm2020/utilities/directives/prevent-enter.directive.mjs +18 -18
  111. package/esm2020/utilities/directives/stop-propagation.directive.mjs +24 -24
  112. package/esm2020/utilities/directives/styler.mjs +25 -25
  113. package/esm2020/utilities/directives/trim-whitespace.directive.mjs +29 -29
  114. package/esm2020/utilities/index.mjs +16 -16
  115. package/esm2020/utilities/module.mjs +91 -91
  116. package/esm2020/utilities/pipes/function.pipe.mjs +20 -20
  117. package/esm2020/utilities/pipes/phone.pipe.mjs +19 -19
  118. package/esm2020/utilities/pipes/space-case.pipes.mjs +28 -28
  119. package/fesm2015/one-paragon-angular-utilities.mjs +4442 -4413
  120. package/fesm2015/one-paragon-angular-utilities.mjs.map +1 -1
  121. package/fesm2020/one-paragon-angular-utilities.mjs +4422 -4393
  122. package/fesm2020/one-paragon-angular-utilities.mjs.map +1 -1
  123. package/http-request-state/HttpRequestStateFactory.d.ts +14 -14
  124. package/http-request-state/HttpRequestStateStore.d.ts +48 -48
  125. package/http-request-state/directives/HttpStateDirectiveBase.d.ts +16 -16
  126. package/http-request-state/directives/http-error-state-directive.d.ts +12 -12
  127. package/http-request-state/directives/http-inProgress-state-directive.d.ts +12 -12
  128. package/http-request-state/directives/http-notStarted-state-directive.d.ts +12 -12
  129. package/http-request-state/directives/http-success-state-directive.d.ts +21 -21
  130. package/http-request-state/directives/index.d.ts +5 -5
  131. package/http-request-state/directives/request-state-directive.d.ts +35 -35
  132. package/http-request-state/helpers.d.ts +9 -9
  133. package/http-request-state/http-request-state.d.ts +12 -12
  134. package/http-request-state/http-state-module.d.ts +11 -11
  135. package/http-request-state/index.d.ts +6 -6
  136. package/http-request-state/rxjs/getRequestorBody.d.ts +3 -3
  137. package/http-request-state/rxjs/getRequestorState.d.ts +3 -3
  138. package/http-request-state/rxjs/index.d.ts +4 -4
  139. package/http-request-state/rxjs/tapError.d.ts +3 -3
  140. package/http-request-state/rxjs/tapSuccess.d.ts +3 -3
  141. package/http-request-state/types.d.ts +36 -36
  142. package/index.d.ts +5 -5
  143. package/ngrx/actionable-selector.d.ts +15 -15
  144. package/ngrx/index.d.ts +1 -1
  145. package/package.json +1 -1
  146. package/public-api.d.ts +15 -15
  147. package/rxjs/defaultShareReplay.d.ts +2 -2
  148. package/rxjs/index.d.ts +4 -4
  149. package/rxjs/mapError.d.ts +2 -2
  150. package/rxjs/rxjs-operators.d.ts +12 -12
  151. package/rxjs/subjectifier.d.ts +9 -9
  152. package/table-builder/classes/DefaultSettings.d.ts +9 -9
  153. package/table-builder/classes/GenericTableDataSource.d.ts +8 -8
  154. package/table-builder/classes/MatTableObservableDataSource.d.ts +17 -9
  155. package/table-builder/classes/TableBuilderConfig.d.ts +20 -20
  156. package/table-builder/classes/TableState.d.ts +46 -46
  157. package/table-builder/classes/data-filter.d.ts +9 -9
  158. package/table-builder/classes/display-col.d.ts +5 -5
  159. package/table-builder/classes/filter-info.d.ts +40 -40
  160. package/table-builder/classes/table-builder-general-settings.d.ts +43 -43
  161. package/table-builder/classes/table-builder.d.ts +14 -14
  162. package/table-builder/classes/table-store.d.ts +114 -114
  163. package/table-builder/components/array-column.component.d.ts +14 -14
  164. package/table-builder/components/column-builder/column-builder.component.d.ts +50 -50
  165. package/table-builder/components/date-filter/date-filter.component.d.ts +10 -10
  166. package/table-builder/components/date-time-filter/date-time-filter.component.d.ts +10 -10
  167. package/table-builder/components/filter/filter.component.d.ts +371 -371
  168. package/table-builder/components/filter/in-list/in-list-filter.component.d.ts +27 -27
  169. package/table-builder/components/gen-col-displayer/gen-col-displayer.component.d.ts +16 -16
  170. package/table-builder/components/generic-table/generic-table.component.d.ts +73 -73
  171. package/table-builder/components/generic-table/paginator.component.d.ts +28 -28
  172. package/table-builder/components/group-by-list/group-by-list.component.d.ts +10 -10
  173. package/table-builder/components/header-menu/header-menu.component.d.ts +25 -25
  174. package/table-builder/components/in-filter/in-filter.component.d.ts +21 -21
  175. package/table-builder/components/index.d.ts +9 -9
  176. package/table-builder/components/initialization-component/initialization-component.d.ts +12 -12
  177. package/table-builder/components/link-column.component.d.ts +17 -17
  178. package/table-builder/components/number-filter/number-filter.component.d.ts +12 -12
  179. package/table-builder/components/sort-menu/sort-menu.component-store.d.ts +24 -24
  180. package/table-builder/components/sort-menu/sort-menu.component.d.ts +25 -25
  181. package/table-builder/components/table-container/table-container.d.ts +68 -68
  182. package/table-builder/components/table-container-filter/filter-list/filter-list.component.d.ts +17 -17
  183. package/table-builder/components/table-container-filter/gen-filter-displayer/gen-filter-displayer.component.d.ts +14 -14
  184. package/table-builder/components/table-container-filter/table-wrapper-filter-store.d.ts +14 -14
  185. package/table-builder/directives/custom-cell-directive.d.ts +19 -19
  186. package/table-builder/directives/index.d.ts +5 -5
  187. package/table-builder/directives/multi-sort.directive.d.ts +11 -11
  188. package/table-builder/directives/resize-column.directive.d.ts +43 -43
  189. package/table-builder/directives/table-wrapper.directive.d.ts +11 -11
  190. package/table-builder/directives/tb-filter.directive.d.ts +120 -120
  191. package/table-builder/enums/filterTypes.d.ts +37 -37
  192. package/table-builder/functions/boolean-filter-function.d.ts +3 -3
  193. package/table-builder/functions/date-filter-function.d.ts +4 -4
  194. package/table-builder/functions/download-data.d.ts +1 -1
  195. package/table-builder/functions/null-filter-function.d.ts +2 -2
  196. package/table-builder/functions/number-filter-function.d.ts +4 -4
  197. package/table-builder/functions/sort-data-function.d.ts +3 -3
  198. package/table-builder/functions/string-filter-function.d.ts +7 -7
  199. package/table-builder/interfaces/ColumnInfo.d.ts +6 -6
  200. package/table-builder/interfaces/dictionary.d.ts +3 -3
  201. package/table-builder/interfaces/report-def.d.ts +142 -142
  202. package/table-builder/material.module.d.ts +32 -32
  203. package/table-builder/ngrx/actions.d.ts +23 -23
  204. package/table-builder/ngrx/effects.d.ts +19 -19
  205. package/table-builder/ngrx/reducer.d.ts +15 -15
  206. package/table-builder/ngrx/selectors.d.ts +22 -22
  207. package/table-builder/pipes/column-total.pipe.d.ts +8 -8
  208. package/table-builder/pipes/format-filter-type.pipe.d.ts +8 -8
  209. package/table-builder/pipes/format-filter-value.pipe.d.ts +14 -14
  210. package/table-builder/pipes/key-display.d.ts +11 -11
  211. package/table-builder/services/export-to-csv.service.d.ts +22 -22
  212. package/table-builder/services/link-creator.service.d.ts +12 -12
  213. package/table-builder/services/table-template-service.d.ts +14 -14
  214. package/table-builder/services/transform-creator.d.ts +19 -19
  215. package/table-builder/table-builder.module.d.ts +48 -46
  216. package/utilities/directives/auto-focus.directive.d.ts +10 -10
  217. package/utilities/directives/clickEmitterDirective.d.ts +7 -7
  218. package/utilities/directives/clickSubject.d.ts +9 -9
  219. package/utilities/directives/conditional-classes.directive.d.ts +14 -14
  220. package/utilities/directives/dialog-service.d.ts +10 -10
  221. package/utilities/directives/dialog.d.ts +46 -46
  222. package/utilities/directives/mat-toggle-group-directive.d.ts +21 -21
  223. package/utilities/directives/prevent-enter.directive.d.ts +6 -6
  224. package/utilities/directives/stop-propagation.directive.d.ts +7 -7
  225. package/utilities/directives/styler.d.ts +9 -9
  226. package/utilities/directives/trim-whitespace.directive.d.ts +9 -9
  227. package/utilities/index.d.ts +15 -15
  228. package/utilities/module.d.ts +19 -19
  229. package/utilities/pipes/function.pipe.d.ts +7 -7
  230. package/utilities/pipes/phone.pipe.d.ts +7 -7
  231. package/utilities/pipes/space-case.pipes.d.ts +17 -17
@@ -1,22 +1,22 @@
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
+ 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 +1,12 @@
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
+ 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 +1,14 @@
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
+ 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 +1,19 @@
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
+ 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,46 +1,48 @@
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 "./components/date-time-filter/date-time-filter.component";
32
- import * as i29 from "@angular/common";
33
- import * as i30 from "./material.module";
34
- import * as i31 from "@ngrx/store";
35
- import * as i32 from "@ngrx/effects";
36
- import * as i33 from "@angular/forms";
37
- import * as i34 from "@angular/router";
38
- import * as i35 from "@ngrx/component";
39
- import * as i36 from "@angular/cdk/drag-drop";
40
- import * as i37 from "../utilities/module";
41
- export declare class TableBuilderModule {
42
- static forRoot(config: TableBuilderConfig): ModuleWithProviders<TableBuilderModule>;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilderModule, never>;
44
- 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.DateTimeFilterComponent], [typeof i29.CommonModule, typeof i30.MaterialModule, typeof i31.StoreFeatureModule, typeof i32.EffectsFeatureModule, typeof i33.FormsModule, typeof i34.RouterModule, typeof i35.LetModule, typeof i36.DragDropModule, typeof i37.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]>;
45
- static ɵinj: i0.ɵɵInjectorDeclaration<TableBuilderModule>;
46
- }
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 "./components/date-time-filter/date-time-filter.component";
32
+ import * as i29 from "@angular/common";
33
+ import * as i30 from "./material.module";
34
+ import * as i31 from "@ngrx/store";
35
+ import * as i32 from "@ngrx/effects";
36
+ import * as i33 from "@angular/forms";
37
+ import * as i34 from "@angular/router";
38
+ import * as i35 from "@ngrx/component";
39
+ import * as i36 from "@angular/cdk/drag-drop";
40
+ import * as i37 from "../utilities/module";
41
+ import * as i38 from "@angular/cdk/scrolling";
42
+ import * as i39 from "ng-table-virtual-scroll";
43
+ export declare class TableBuilderModule {
44
+ static forRoot(config: TableBuilderConfig): ModuleWithProviders<TableBuilderModule>;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilderModule, never>;
46
+ 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.DateTimeFilterComponent], [typeof i29.CommonModule, typeof i30.MaterialModule, typeof i31.StoreFeatureModule, typeof i32.EffectsFeatureModule, typeof i33.FormsModule, typeof i34.RouterModule, typeof i35.LetModule, typeof i36.DragDropModule, typeof i37.UtilitiesModule, typeof i38.ScrollingModule, typeof i39.TableVirtualScrollModule], [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]>;
47
+ static ɵinj: i0.ɵɵInjectorDeclaration<TableBuilderModule>;
48
+ }
@@ -1,10 +1,10 @@
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
+ 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 +1,7 @@
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
+ 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 +1,9 @@
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
+ 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 +1,14 @@
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
+ 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 +1,10 @@
1
- import { MatDialogRef } from '@angular/material/dialog';
2
- import * as i0 from "@angular/core";
3
- export declare class DialogService {
4
- allOpenOpDialogs: MatDialogRef<any>[];
5
- addDialogRef(ref: MatDialogRef<any>): void;
6
- removeDialogRef(ref: MatDialogRef<any>): void;
7
- closeAllOpDialogs(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
9
- static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
10
- }
1
+ import { MatDialogRef } from '@angular/material/dialog';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DialogService {
4
+ allOpenOpDialogs: MatDialogRef<any>[];
5
+ addDialogRef(ref: MatDialogRef<any>): void;
6
+ removeDialogRef(ref: MatDialogRef<any>): void;
7
+ closeAllOpDialogs(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
10
+ }
@@ -1,46 +1,46 @@
1
- import { TemplateRef, OnDestroy, EventEmitter, ViewContainerRef } from '@angular/core';
2
- import { MatDialog, MatDialogRef, MatDialogConfig } from '@angular/material/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
- add_opDialog_Class: boolean;
29
- set opDialogConfig(config: MatDialogConfig<T>);
30
- get opDialogConfig(): MatDialogConfig<T>;
31
- set state(open_close: Observable<T>);
32
- nativeElement?: HTMLElement;
33
- dialogRef?: MatDialogRef<any, boolean>;
34
- subscription: Subscription;
35
- componentWrapper?: DialogWrapper<T>;
36
- constructor(templateRef: TemplateRef<DialogViewContext<T>>, dialog: MatDialog, service: DialogService);
37
- _data: Subject<Observable<T>>;
38
- close(): void;
39
- initDialog(): void;
40
- setDialogState(open: boolean): void;
41
- ngOnDestroy(): void;
42
- static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "add_opDialog_Class": "add_opDialog_Class"; "opDialogConfig": "opDialogConfig"; "state": "opDialog"; "nativeElement": "opDialogOrigin"; }, { "opDialogClosed": "opDialogClosed"; }, never, never, false, never>;
45
- }
46
- export {};
1
+ import { TemplateRef, OnDestroy, EventEmitter, ViewContainerRef } from '@angular/core';
2
+ import { MatDialog, MatDialogRef, MatDialogConfig } from '@angular/material/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
+ add_opDialog_Class: boolean;
29
+ set opDialogConfig(config: MatDialogConfig<T>);
30
+ get opDialogConfig(): MatDialogConfig<T>;
31
+ set state(open_close: Observable<T>);
32
+ nativeElement?: HTMLElement;
33
+ dialogRef?: MatDialogRef<any, boolean>;
34
+ subscription: Subscription;
35
+ componentWrapper?: DialogWrapper<T>;
36
+ constructor(templateRef: TemplateRef<DialogViewContext<T>>, dialog: MatDialog, service: DialogService);
37
+ _data: Subject<Observable<T>>;
38
+ close(): void;
39
+ initDialog(): void;
40
+ setDialogState(open: boolean): void;
41
+ ngOnDestroy(): void;
42
+ static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "add_opDialog_Class": "add_opDialog_Class"; "opDialogConfig": "opDialogConfig"; "state": "opDialog"; "nativeElement": "opDialogOrigin"; }, { "opDialogClosed": "opDialogClosed"; }, never, never, false, never>;
45
+ }
46
+ export {};
@@ -1,21 +1,21 @@
1
- import { QueryList } from "@angular/core";
2
- import { MatSlideToggle } from "@angular/material/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
+ import { QueryList } from "@angular/core";
2
+ import { MatSlideToggle } from "@angular/material/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 +1,6 @@
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
+ 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 +1,7 @@
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
+ 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 +1,9 @@
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
+ 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 +1,9 @@
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
- }
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
+ }
@@ -1,15 +1,15 @@
1
- export * from './directives/prevent-enter.directive';
2
- export * from './directives/stop-propagation.directive';
3
- export * from './directives/auto-focus.directive';
4
- export * from './directives/clickSubject';
5
- export * from './directives/clickEmitterDirective';
6
- export * from './directives/dialog';
7
- export * from './directives/styler';
8
- export * from './directives/mat-toggle-group-directive';
9
- export * from './directives/trim-whitespace.directive';
10
- export * from './pipes/function.pipe';
11
- export * from './pipes/phone.pipe';
12
- export * from './pipes/space-case.pipes';
13
- export * from './directives/dialog-service';
14
- export * from './directives/conditional-classes.directive';
15
- export * from './module';
1
+ export * from './directives/prevent-enter.directive';
2
+ export * from './directives/stop-propagation.directive';
3
+ export * from './directives/auto-focus.directive';
4
+ export * from './directives/clickSubject';
5
+ export * from './directives/clickEmitterDirective';
6
+ export * from './directives/dialog';
7
+ export * from './directives/styler';
8
+ export * from './directives/mat-toggle-group-directive';
9
+ export * from './directives/trim-whitespace.directive';
10
+ export * from './pipes/function.pipe';
11
+ export * from './pipes/phone.pipe';
12
+ export * from './pipes/space-case.pipes';
13
+ export * from './directives/dialog-service';
14
+ export * from './directives/conditional-classes.directive';
15
+ export * from './module';