@porscheinformatik/material-addons 0.0.34 → 0.0.99

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 (227) hide show
  1. package/README.md +29 -29
  2. package/esm2022/lib/button/button.mjs +7 -0
  3. package/esm2022/lib/button/button.module.mjs +26 -0
  4. package/esm2022/lib/button/danger-button/danger-button.component.mjs +28 -0
  5. package/esm2022/lib/button/flat-button/link-button.component.mjs +28 -0
  6. package/esm2022/lib/button/icon-button/icon-button.component.mjs +28 -0
  7. package/esm2022/lib/button/mad-basic-button.mjs +39 -0
  8. package/esm2022/lib/button/outline-button/outline-button.component.mjs +28 -0
  9. package/esm2022/lib/button/primary-button/primary-button.component.mjs +28 -0
  10. package/esm2022/lib/card/card.component.mjs +129 -0
  11. package/esm2022/lib/card/card.mjs +2 -0
  12. package/esm2022/lib/card/card.module.mjs +23 -0
  13. package/esm2022/lib/content-panel/content-header/content-header.component.mjs +11 -0
  14. package/esm2022/lib/content-panel/content-panel-container/content-panel-container.component.mjs +11 -0
  15. package/esm2022/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +11 -0
  16. package/esm2022/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +11 -0
  17. package/esm2022/lib/content-panel/content-panel.module.mjs +42 -0
  18. package/esm2022/lib/content-panel/main-container/main-container.component.mjs +11 -0
  19. package/esm2022/lib/data-table/data-table-action-type.mjs +6 -0
  20. package/esm2022/lib/data-table/data-table-action.mjs +2 -0
  21. package/esm2022/lib/data-table/data-table-column-definition.mjs +2 -0
  22. package/esm2022/lib/data-table/data-table-column.mjs +2 -0
  23. package/esm2022/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +103 -0
  24. package/esm2022/lib/data-table/data-table-row.mjs +2 -0
  25. package/esm2022/lib/data-table/data-table.component.mjs +529 -0
  26. package/esm2022/lib/data-table/data-table.mjs +3 -0
  27. package/esm2022/lib/data-table/data-table.module.mjs +81 -0
  28. package/esm2022/lib/file-upload/drag-and-drop-directive.directive.mjs +61 -0
  29. package/esm2022/lib/file-upload/file-upload.component.mjs +78 -0
  30. package/esm2022/lib/flowbar/flowbar.component.mjs +190 -0
  31. package/esm2022/lib/flowbar/flowbar.module.mjs +19 -0
  32. package/esm2022/lib/material-action-button/material-action-button.component.mjs +34 -0
  33. package/esm2022/lib/material-action-button/material-action-button.module.mjs +22 -0
  34. package/esm2022/lib/material-addons.module.mjs +45 -0
  35. package/esm2022/lib/numeric-field/number-format.service.mjs +139 -0
  36. package/esm2022/lib/numeric-field/numeric-field.directive.mjs +295 -0
  37. package/esm2022/lib/numeric-field/numeric-field.mjs +2 -0
  38. package/esm2022/lib/numeric-field/numeric-field.module.mjs +24 -0
  39. package/esm2022/lib/quick-list/base-quick-list.component.mjs +124 -0
  40. package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +22 -0
  41. package/esm2022/lib/quick-list/quick-list.component.mjs +23 -0
  42. package/esm2022/lib/quick-list/quick-list.mjs +6 -0
  43. package/esm2022/lib/quick-list/quick-list.module.mjs +46 -0
  44. package/esm2022/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.mjs +22 -0
  45. package/esm2022/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.mjs +22 -0
  46. package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +181 -0
  47. package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +206 -0
  48. package/esm2022/lib/readonly/readonly-form-field.module.mjs +25 -0
  49. package/esm2022/lib/stepper/mad-stepper-animation.mjs +13 -0
  50. package/esm2022/lib/stepper/step-header/step-header.component.mjs +77 -0
  51. package/esm2022/lib/stepper/stepper.component.mjs +159 -0
  52. package/esm2022/lib/stepper/stepper.module.mjs +23 -0
  53. package/esm2022/lib/table/column-header.mjs +2 -0
  54. package/esm2022/lib/table/table-action.mjs +2 -0
  55. package/esm2022/lib/table/table.component.mjs +130 -0
  56. package/esm2022/lib/table/table.mjs +2 -0
  57. package/esm2022/lib/table/table.module.mjs +56 -0
  58. package/esm2022/lib/throttle-click/throttle-click.directive.mjs +38 -0
  59. package/esm2022/lib/throttle-click/throttle-click.module.mjs +18 -0
  60. package/esm2022/lib/toolbar/toolbar-action.interface.mjs +2 -0
  61. package/esm2022/lib/toolbar/toolbar.component.mjs +78 -0
  62. package/esm2022/lib/toolbar/toolbar.module.mjs +56 -0
  63. package/esm2022/lib/toolbar/toolbar.service.mjs +124 -0
  64. package/esm2022/porscheinformatik-material-addons.mjs +5 -0
  65. package/esm2022/public_api.mjs +42 -0
  66. package/fesm2022/porscheinformatik-material-addons.mjs +3229 -0
  67. package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -0
  68. package/index.d.ts +6 -0
  69. package/lib/button/button.d.ts +7 -0
  70. package/lib/button/button.d.ts.map +1 -0
  71. package/lib/button/button.module.d.ts +17 -0
  72. package/lib/button/button.module.d.ts.map +1 -0
  73. package/lib/button/danger-button/danger-button.component.d.ts +13 -0
  74. package/lib/button/danger-button/danger-button.component.d.ts.map +1 -0
  75. package/lib/button/flat-button/link-button.component.d.ts +13 -0
  76. package/lib/button/flat-button/link-button.component.d.ts.map +1 -0
  77. package/lib/button/icon-button/icon-button.component.d.ts +13 -0
  78. package/lib/button/icon-button/icon-button.component.d.ts.map +1 -0
  79. package/lib/button/mad-basic-button.d.ts +14 -0
  80. package/lib/button/mad-basic-button.d.ts.map +1 -0
  81. package/lib/button/outline-button/outline-button.component.d.ts +13 -0
  82. package/lib/button/outline-button/outline-button.component.d.ts.map +1 -0
  83. package/lib/button/primary-button/primary-button.component.d.ts +13 -0
  84. package/lib/button/primary-button/primary-button.component.d.ts.map +1 -0
  85. package/lib/card/card.component.d.ts +28 -0
  86. package/lib/card/card.component.d.ts.map +1 -0
  87. package/lib/card/card.d.ts +2 -0
  88. package/lib/card/card.d.ts.map +1 -0
  89. package/lib/card/card.module.d.ts +14 -0
  90. package/lib/card/card.module.d.ts.map +1 -0
  91. package/lib/content-panel/content-header/content-header.component.d.ts +6 -0
  92. package/lib/content-panel/content-header/content-header.component.d.ts.map +1 -0
  93. package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +6 -0
  94. package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts.map +1 -0
  95. package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +6 -0
  96. package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts.map +1 -0
  97. package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +6 -0
  98. package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts.map +1 -0
  99. package/lib/content-panel/content-panel.module.d.ts +13 -0
  100. package/lib/content-panel/content-panel.module.d.ts.map +1 -0
  101. package/lib/content-panel/main-container/main-container.component.d.ts +6 -0
  102. package/lib/content-panel/main-container/main-container.component.d.ts.map +1 -0
  103. package/lib/data-table/data-table-action-type.d.ts +6 -0
  104. package/lib/data-table/data-table-action-type.d.ts.map +1 -0
  105. package/lib/data-table/data-table-action.d.ts +8 -0
  106. package/lib/data-table/data-table-action.d.ts.map +1 -0
  107. package/lib/data-table/data-table-column-definition.d.ts +28 -0
  108. package/lib/data-table/data-table-column-definition.d.ts.map +1 -0
  109. package/lib/data-table/data-table-column.d.ts +11 -0
  110. package/lib/data-table/data-table-column.d.ts.map +1 -0
  111. package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts +27 -0
  112. package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts.map +1 -0
  113. package/lib/data-table/data-table-row.d.ts +7 -0
  114. package/lib/data-table/data-table-row.d.ts.map +1 -0
  115. package/lib/data-table/data-table.component.d.ts +123 -0
  116. package/lib/data-table/data-table.component.d.ts.map +1 -0
  117. package/lib/data-table/data-table.d.ts +6 -0
  118. package/lib/data-table/data-table.d.ts.map +1 -0
  119. package/lib/data-table/data-table.module.d.ts +25 -0
  120. package/lib/data-table/data-table.module.d.ts.map +1 -0
  121. package/lib/file-upload/drag-and-drop-directive.directive.d.ts +13 -0
  122. package/lib/file-upload/drag-and-drop-directive.directive.d.ts.map +1 -0
  123. package/lib/file-upload/file-upload.component.d.ts +22 -0
  124. package/lib/file-upload/file-upload.component.d.ts.map +1 -0
  125. package/lib/flowbar/flowbar.component.d.ts +47 -0
  126. package/lib/flowbar/flowbar.component.d.ts.map +1 -0
  127. package/lib/flowbar/flowbar.module.d.ts +10 -0
  128. package/lib/flowbar/flowbar.module.d.ts.map +1 -0
  129. package/lib/material-action-button/material-action-button.component.d.ts +12 -8
  130. package/lib/material-action-button/material-action-button.component.d.ts.map +1 -0
  131. package/lib/material-action-button/material-action-button.module.d.ts +13 -2
  132. package/lib/material-action-button/material-action-button.module.d.ts.map +1 -0
  133. package/lib/material-addons.module.d.ts +15 -2
  134. package/lib/material-addons.module.d.ts.map +1 -0
  135. package/lib/numeric-field/number-format.service.d.ts +31 -0
  136. package/lib/numeric-field/number-format.service.d.ts.map +1 -0
  137. package/lib/numeric-field/numeric-field.d.ts +2 -0
  138. package/lib/numeric-field/numeric-field.d.ts.map +1 -0
  139. package/lib/numeric-field/numeric-field.directive.d.ts +45 -0
  140. package/lib/numeric-field/numeric-field.directive.d.ts.map +1 -0
  141. package/lib/numeric-field/numeric-field.module.d.ts +10 -0
  142. package/lib/numeric-field/numeric-field.module.d.ts.map +1 -0
  143. package/lib/quick-list/base-quick-list.component.d.ts +41 -0
  144. package/lib/quick-list/base-quick-list.component.d.ts.map +1 -0
  145. package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +12 -0
  146. package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts.map +1 -0
  147. package/lib/quick-list/quick-list.component.d.ts +12 -0
  148. package/lib/quick-list/quick-list.component.d.ts.map +1 -0
  149. package/lib/quick-list/quick-list.d.ts +6 -0
  150. package/lib/quick-list/quick-list.d.ts.map +1 -0
  151. package/lib/quick-list/quick-list.module.d.ts +17 -0
  152. package/lib/quick-list/quick-list.module.d.ts.map +1 -0
  153. package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts +12 -0
  154. package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts.map +1 -0
  155. package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts +12 -0
  156. package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts.map +1 -0
  157. package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts +56 -14
  158. package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts.map +1 -0
  159. package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts +89 -31
  160. package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map +1 -0
  161. package/lib/readonly/readonly-form-field.module.d.ts +16 -2
  162. package/lib/readonly/readonly-form-field.module.d.ts.map +1 -0
  163. package/lib/stepper/mad-stepper-animation.d.ts +8 -0
  164. package/lib/stepper/mad-stepper-animation.d.ts.map +1 -0
  165. package/lib/stepper/step-header/step-header.component.d.ts +27 -0
  166. package/lib/stepper/step-header/step-header.component.d.ts.map +1 -0
  167. package/lib/stepper/stepper.component.d.ts +53 -0
  168. package/lib/stepper/stepper.component.d.ts.map +1 -0
  169. package/lib/stepper/stepper.module.d.ts +14 -0
  170. package/lib/stepper/stepper.module.d.ts.map +1 -0
  171. package/lib/table/column-header.d.ts +8 -0
  172. package/lib/table/column-header.d.ts.map +1 -0
  173. package/lib/table/table-action.d.ts +6 -0
  174. package/lib/table/table-action.d.ts.map +1 -0
  175. package/lib/table/table.component.d.ts +43 -0
  176. package/lib/table/table.component.d.ts.map +1 -0
  177. package/lib/table/table.d.ts +4 -0
  178. package/lib/table/table.d.ts.map +1 -0
  179. package/lib/table/table.module.d.ts +18 -0
  180. package/lib/table/table.module.d.ts.map +1 -0
  181. package/lib/throttle-click/throttle-click.directive.d.ts +14 -0
  182. package/lib/throttle-click/throttle-click.directive.d.ts.map +1 -0
  183. package/lib/throttle-click/throttle-click.module.d.ts +9 -0
  184. package/lib/throttle-click/throttle-click.module.d.ts.map +1 -0
  185. package/lib/toolbar/toolbar-action.interface.d.ts +28 -18
  186. package/lib/toolbar/toolbar-action.interface.d.ts.map +1 -0
  187. package/lib/toolbar/toolbar.component.d.ts +28 -19
  188. package/lib/toolbar/toolbar.component.d.ts.map +1 -0
  189. package/lib/toolbar/toolbar.module.d.ts +18 -2
  190. package/lib/toolbar/toolbar.module.d.ts.map +1 -0
  191. package/lib/toolbar/toolbar.service.d.ts +44 -33
  192. package/lib/toolbar/toolbar.service.d.ts.map +1 -0
  193. package/package.json +29 -24
  194. package/porscheinformatik-material-addons.d.ts.map +1 -0
  195. package/public_api.d.ts +39 -0
  196. package/public_api.d.ts.map +1 -0
  197. package/themes/common/styles.scss +359 -303
  198. package/themes/pbv.scss +64 -56
  199. package/themes/poa.scss +64 -40
  200. package/bundles/porscheinformatik-material-addons.umd.js +0 -755
  201. package/esm2015/lib/material-action-button/material-action-button.component.js +0 -43
  202. package/esm2015/lib/material-action-button/material-action-button.module.js +0 -19
  203. package/esm2015/lib/material-addons.module.js +0 -16
  204. package/esm2015/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -61
  205. package/esm2015/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -124
  206. package/esm2015/lib/readonly/readonly-form-field.module.js +0 -20
  207. package/esm2015/lib/toolbar/toolbar-action.interface.js +0 -47
  208. package/esm2015/lib/toolbar/toolbar.component.js +0 -112
  209. package/esm2015/lib/toolbar/toolbar.module.js +0 -29
  210. package/esm2015/lib/toolbar/toolbar.service.js +0 -197
  211. package/esm2015/porscheinformatik-material-addons.js +0 -9
  212. package/esm2015/public-api.js +0 -18
  213. package/esm5/lib/material-action-button/material-action-button.component.js +0 -45
  214. package/esm5/lib/material-action-button/material-action-button.module.js +0 -23
  215. package/esm5/lib/material-addons.module.js +0 -20
  216. package/esm5/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -67
  217. package/esm5/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -145
  218. package/esm5/lib/readonly/readonly-form-field.module.js +0 -24
  219. package/esm5/lib/toolbar/toolbar-action.interface.js +0 -47
  220. package/esm5/lib/toolbar/toolbar.component.js +0 -131
  221. package/esm5/lib/toolbar/toolbar.module.js +0 -33
  222. package/esm5/lib/toolbar/toolbar.service.js +0 -245
  223. package/esm5/porscheinformatik-material-addons.js +0 -9
  224. package/esm5/public-api.js +0 -18
  225. package/porscheinformatik-material-addons.d.ts +0 -4
  226. package/porscheinformatik-material-addons.metadata.json +0 -1
  227. package/public-api.d.ts +0 -10
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DragAndDropDirectiveDirective {
4
+ onFileDropped: EventEmitter<any>;
5
+ private background;
6
+ private opacity;
7
+ onDragOver(event: any): void;
8
+ onDragLeave(event: any): void;
9
+ ondrop(event: any): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropDirectiveDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropDirectiveDirective, "[madDragAndDrop]", never, {}, { "onFileDropped": "onFileDropped"; }, never, never, true, never>;
12
+ }
13
+ //# sourceMappingURL=drag-and-drop-directive.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"drag-and-drop-directive.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/drag-and-drop-directive.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAqC,MAAM,eAAe,CAAC;;AAE3F,qBAIa,6BAA6B;IAExC,aAAa,oBAA2B;IAED,OAAO,CAAC,UAAU,CAAuB;IAClD,OAAO,CAAC,OAAO,CAAO;IAGd,UAAU,CAAC,KAAK,EAAE,GAAG;IAQpB,WAAW,CAAC,KAAK,EAAE,GAAG;IAStD,MAAM,CAAC,KAAK,EAAE,GAAG;yCAzBb,6BAA6B;2CAA7B,6BAA6B;CAmCzC"}
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type UploadError = 'ONLY_SINGLE_FILE' | 'FILETYPE_NOT_SUPPORTED';
4
+ export declare class FileUploadComponent implements OnInit {
5
+ id: string;
6
+ multiple: boolean;
7
+ accept: string[];
8
+ text: string;
9
+ showFileList: boolean;
10
+ fileEmitter: EventEmitter<FileList>;
11
+ errorEmitter: EventEmitter<UploadError>;
12
+ fileList: File[];
13
+ acceptForInput: string[];
14
+ private uploadError;
15
+ ngOnInit(): void;
16
+ uploadFile(fileList: FileList): void;
17
+ getFileEnding(name: string): void;
18
+ openFile(file: File): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "mad-file-upload", never, { "id": { "alias": "id"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "text": { "alias": "text"; "required": false; }; "showFileList": { "alias": "showFileList"; "required": false; }; }, { "fileEmitter": "fileEmitter"; "errorEmitter": "errorEmitter"; }, never, never, true, never>;
21
+ }
22
+ //# sourceMappingURL=file-upload.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-upload.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/file-upload.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;;AAS/E,MAAM,MAAM,WAAW,GAAG,kBAAkB,GAAG,wBAAwB,CAAC;AAExE,qBAOa,mBAAoB,YAAW,MAAM;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,OAAO,CAAS;IAC7B,WAAW,yBAAgC;IAC3C,YAAY,4BAAmC;IAEzD,QAAQ,EAAE,IAAI,EAAE,CAAM;IACtB,cAAc,EAAE,MAAM,EAAE,CAAM;IAC9B,OAAO,CAAC,WAAW,CAAkB;IAErC,QAAQ,IAAI,IAAI;IAMhB,UAAU,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAoBpC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAQjC,QAAQ,CAAC,IAAI,EAAE,IAAI;yCA/CR,mBAAmB;2CAAnB,mBAAmB;CAkD/B"}
@@ -0,0 +1,47 @@
1
+ import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export interface IStep {
4
+ label: string;
5
+ enabled?: boolean;
6
+ subSteps?: IStep[];
7
+ activeSubStep?: IStep;
8
+ }
9
+ export declare class FlowbarComponent implements OnInit, AfterViewInit {
10
+ _steps: IStep[];
11
+ _activeStep: IStep;
12
+ _activeStepChange: EventEmitter<IStep>;
13
+ /**
14
+ * Event emitted when a step header is clicked.
15
+ * When defined header navigation has to be implemented programmatically.
16
+ * e.g. {@see changeActiveStepOnHeader}
17
+ */
18
+ _headerClick: EventEmitter<IStep>;
19
+ private stepper;
20
+ get currentStepLabel(): string;
21
+ get currentSubStepLabel(): string;
22
+ ngOnInit(): void;
23
+ ngAfterViewInit(): void;
24
+ getIndexForActiveStep(): number;
25
+ changeActiveStep(step: IStep): void;
26
+ changeActiveStepOnHeader(step: IStep): void;
27
+ changeActiveSubStep(subStep: IStep): void;
28
+ previous(): void;
29
+ next(): void;
30
+ isPreviousAvailable(): boolean;
31
+ isNextAvailable(): boolean;
32
+ isLastStep(): boolean;
33
+ getCurrentIndex(): number;
34
+ getCurrentSubStepIndex(): number;
35
+ triggerClick(): void;
36
+ headerClick(event: any, step: IStep): void;
37
+ private activeTabHasSubSteps;
38
+ private isFirstSubStep;
39
+ private isLastSubStep;
40
+ private isAnyPreviousStepEnabled;
41
+ private isAnyFollowingStepEnabled;
42
+ private findPreviousEnabledStep;
43
+ private findNextEnabledStep;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<FlowbarComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<FlowbarComponent, "mad-flowbar", never, { "_steps": { "alias": "steps"; "required": false; }; "_activeStep": { "alias": "activeStep"; "required": false; }; }, { "_activeStepChange": "activeStepChange"; "_headerClick": "headerClick"; }, never, never, false, never>;
46
+ }
47
+ //# sourceMappingURL=flowbar.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flowbar.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/flowbar/flowbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,YAAY,EAAS,MAAM,EAAqB,MAAM,eAAe,CAAC;;AAGzG,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC;IACnB,aAAa,CAAC,EAAE,KAAK,CAAC;CACvB;AAED,qBAKa,gBAAiB,YAAW,MAAM,EAAE,aAAa;IAC5C,MAAM,EAAE,KAAK,EAAE,CAAM;IAChB,WAAW,EAAE,KAAK,CAAC;IACZ,iBAAiB,EAAE,YAAY,CAAC,KAAK,CAAC,CAAiC;IACnG;;;;OAIG;IACoB,YAAY,EAAE,YAAY,CAAC,KAAK,CAAC,CAAiC;IACnE,OAAO,CAAC,OAAO,CAAa;IAElD,IAAI,gBAAgB,IAAI,MAAM,CAE7B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,QAAQ,IAAI,IAAI;IAchB,eAAe,IAAI,IAAI;IAIvB,qBAAqB,IAAI,MAAM;IAK/B,gBAAgB,CAAC,IAAI,EAAE,KAAK,GAAG,IAAI;IAanC,wBAAwB,CAAC,IAAI,EAAE,KAAK,GAAG,IAAI;IAM3C,mBAAmB,CAAC,OAAO,EAAE,KAAK,GAAG,IAAI;IAIzC,QAAQ,IAAI,IAAI;IAchB,IAAI,IAAI,IAAI;IAcZ,mBAAmB,IAAI,OAAO;IAY9B,eAAe,IAAI,OAAO;IAY1B,UAAU,IAAI,OAAO;IAWrB,eAAe,IAAI,MAAM;IAIzB,sBAAsB,IAAI,MAAM;IAIhC,YAAY,IAAI,IAAI;IAKpB,WAAW,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,GAAG,IAAI;IAK1C,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,wBAAwB;IAKhC,OAAO,CAAC,yBAAyB;IAKjC,OAAO,CAAC,uBAAuB;IAQ/B,OAAO,CAAC,mBAAmB;yCAjLhB,gBAAgB;2CAAhB,gBAAgB;CAqL5B"}
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./flowbar.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/stepper";
5
+ export declare class FlowbarModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FlowbarModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FlowbarModule, [typeof i1.FlowbarComponent], [typeof i2.CommonModule, typeof i3.MatStepperModule], [typeof i1.FlowbarComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<FlowbarModule>;
9
+ }
10
+ //# sourceMappingURL=flowbar.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flowbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/flowbar/flowbar.module.ts"],"names":[],"mappings":";;;;AAKA,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
@@ -1,8 +1,12 @@
1
- export declare class MaterialActionButtonComponent {
2
- actionName: string;
3
- id: string;
4
- icon: string;
5
- routerLink: string;
6
- liftHigher: boolean;
7
- liftHigher2: boolean;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class MaterialActionButtonComponent {
3
+ actionName: string;
4
+ id: string;
5
+ icon: string;
6
+ routerLink: string;
7
+ liftHigher: boolean;
8
+ liftHigher2: boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialActionButtonComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialActionButtonComponent, "mad-material-action-button", never, { "actionName": { "alias": "actionName"; "required": false; }; "id": { "alias": "id"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "liftHigher": { "alias": "liftHigher"; "required": false; }; "liftHigher2": { "alias": "liftHigher2"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
12
+ //# sourceMappingURL=material-action-button.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"material-action-button.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/material-action-button/material-action-button.component.ts"],"names":[],"mappings":";AAEA,qBAKa,6BAA6B;IAExC,UAAU,EAAE,MAAM,CAAC;IAGnB,EAAE,EAAE,MAAM,CAAC;IAGX,IAAI,SAAS;IAGb,UAAU,EAAE,MAAM,CAAC;IAInB,UAAU,UAAQ;IAGlB,WAAW,UAAS;yCAlBT,6BAA6B;2CAA7B,6BAA6B;CAmBzC"}
@@ -1,2 +1,13 @@
1
- export declare class MaterialActionButtonModule {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./material-action-button.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/router";
5
+ import * as i4 from "@angular/material/button";
6
+ import * as i5 from "@angular/material/icon";
7
+ import * as i6 from "@angular/material/tooltip";
8
+ export declare class MaterialActionButtonModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialActionButtonModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialActionButtonModule, [typeof i1.MaterialActionButtonComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MatButtonModule, typeof i5.MatIconModule, typeof i6.MatTooltipModule], [typeof i1.MaterialActionButtonComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialActionButtonModule>;
12
+ }
13
+ //# sourceMappingURL=material-action-button.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"material-action-button.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/material-action-button/material-action-button.module.ts"],"names":[],"mappings":";;;;;;;AAQA,qBAKa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
@@ -1,2 +1,15 @@
1
- export declare class MaterialAddonsModule {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./readonly/readonly-form-field.module";
3
+ import * as i2 from "./button/button.module";
4
+ import * as i3 from "./toolbar/toolbar.module";
5
+ import * as i4 from "./material-action-button/material-action-button.module";
6
+ import * as i5 from "./numeric-field/numeric-field.module";
7
+ import * as i6 from "./card/card.module";
8
+ import * as i7 from "./quick-list/quick-list.module";
9
+ import * as i8 from "./throttle-click/throttle-click.module";
10
+ export declare class MaterialAddonsModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialAddonsModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialAddonsModule, never, never, [typeof i1.ReadOnlyFormFieldModule, typeof i2.ButtonModule, typeof i3.ToolbarModule, typeof i4.MaterialActionButtonModule, typeof i5.NumericFieldModule, typeof i6.CardModule, typeof i7.QuickListModule, typeof i8.ThrottleClickModule]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialAddonsModule>;
14
+ }
15
+ //# sourceMappingURL=material-addons.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"material-addons.module.d.ts","sourceRoot":"","sources":["../../../projects/material-addons/src/lib/material-addons.module.ts"],"names":[],"mappings":";;;;;;;;;AAUA,qBAYa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAG"}
@@ -0,0 +1,31 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare interface FormatOptions {
3
+ decimalPlaces?: number;
4
+ finalFormatting?: boolean;
5
+ autofillDecimals?: boolean;
6
+ }
7
+ export declare interface StripOptions {
8
+ decimalPlaces?: number;
9
+ removeLeadingZeros?: boolean;
10
+ }
11
+ export declare class NumberFormatService {
12
+ static readonly NEGATIVE = "-";
13
+ static readonly NUMBERS: string[];
14
+ static readonly DEFAULT_FINAL_FORMATTING = true;
15
+ static readonly DEFAULT_DECIMAL_PLACES = 2;
16
+ static readonly DEFAULT_AUTOFILL_DECIMALS = false;
17
+ static readonly DEFAULT_REMOVE_LEADING_ZEROS = false;
18
+ decimalSeparator: ',' | '.';
19
+ groupingSeparator: ',' | '.';
20
+ allowedKeys: string[];
21
+ constructor(locale: string);
22
+ static valueIsSet(value: any): boolean;
23
+ format(value: number, options?: Partial<FormatOptions>): string;
24
+ formatNumber(value: string, options?: Partial<FormatOptions>): string;
25
+ strip(value: string, options?: StripOptions): string;
26
+ private addMissingLeadingZero;
27
+ private valueOrDefault;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumberFormatService, never>;
29
+ static ɵprov: i0.ɵɵInjectableDeclaration<NumberFormatService>;
30
+ }
31
+ //# sourceMappingURL=number-format.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"number-format.service.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/number-format.service.ts"],"names":[],"mappings":";AAEA,MAAM,CAAC,OAAO,WAAW,aAAa;IACpC,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,CAAC,OAAO,WAAW,YAAY;IACnC,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,qBAGa,mBAAmB;IAC9B,MAAM,CAAC,QAAQ,CAAC,QAAQ,OAAO;IAC/B,MAAM,CAAC,QAAQ,CAAC,OAAO,WAAsD;IAC7E,MAAM,CAAC,QAAQ,CAAC,wBAAwB,QAAQ;IAChD,MAAM,CAAC,QAAQ,CAAC,sBAAsB,KAAK;IAC3C,MAAM,CAAC,QAAQ,CAAC,yBAAyB,SAAS;IAClD,MAAM,CAAC,QAAQ,CAAC,4BAA4B,SAAS;IAErD,gBAAgB,EAAE,GAAG,GAAG,GAAG,CAAC;IAC5B,iBAAiB,EAAE,GAAG,GAAG,GAAG,CAAC;IAE7B,WAAW,EAAE,MAAM,EAAE,CAAM;gBAEI,MAAM,EAAE,MAAM;IAS7C,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO;IAItC,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,MAAM;IAM/D,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,MAAM;IAyCrE,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,MAAM;IAiDpD,OAAO,CAAC,qBAAqB;IAa7B,OAAO,CAAC,cAAc;yCAvIX,mBAAmB;6CAAnB,mBAAmB;CA0I/B"}
@@ -0,0 +1,2 @@
1
+ export { NumericFieldDirective } from './numeric-field.directive';
2
+ //# sourceMappingURL=numeric-field.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numeric-field.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -0,0 +1,45 @@
1
+ import { AfterViewChecked, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import { NumberFormatService } from './number-format.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NumericFieldDirective implements OnInit, OnDestroy, AfterViewChecked, ControlValueAccessor {
6
+ private renderer;
7
+ private inputEl;
8
+ private numberFormatService;
9
+ textAlign: 'right' | 'left';
10
+ decimalPlaces: number;
11
+ roundValue: boolean;
12
+ autofillDecimals: boolean;
13
+ unit: string | null;
14
+ unitPosition: 'right' | 'left';
15
+ numericValueChanged: EventEmitter<number>;
16
+ private displayValue;
17
+ private originalValue;
18
+ private _numericValue;
19
+ private inputChangeListener;
20
+ private keyupListener;
21
+ private keydownListener;
22
+ set numericValue(value: number);
23
+ private unitSpan;
24
+ private textSpan;
25
+ constructor(renderer: Renderer2, inputEl: ElementRef, numberFormatService: NumberFormatService);
26
+ onChange: any;
27
+ onTouched: any;
28
+ registerOnChange(fn: any): void;
29
+ registerOnTouched(fn: any): void;
30
+ setDisabledState(): void;
31
+ writeValue(value: number): void;
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ ngAfterViewChecked(): void;
35
+ handleInputChanged(): void;
36
+ formatInput(element: HTMLInputElement, finalFormatting: boolean): void;
37
+ updateInput(value: string): void;
38
+ getValueForFormControl(): number | undefined;
39
+ private injectUnitSymbol;
40
+ private detachListener;
41
+ private roundOrTruncate;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericFieldDirective, never>;
43
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumericFieldDirective, "[madNumericField]", never, { "textAlign": { "alias": "textAlign"; "required": false; }; "decimalPlaces": { "alias": "decimalPlaces"; "required": false; }; "roundValue": { "alias": "roundDisplayValue"; "required": false; }; "autofillDecimals": { "alias": "autofillDecimals"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "unitPosition": { "alias": "unitPosition"; "required": false; }; "numericValue": { "alias": "numericValue"; "required": false; }; }, { "numericValueChanged": "numericValueChange"; }, never, never, false, never>;
44
+ }
45
+ //# sourceMappingURL=numeric-field.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numeric-field.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.directive.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,MAAM,EAEN,SAAS,EACV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;;AAQ9D,qBAgBa,qBAAsB,YAAW,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,oBAAoB;IA+BnG,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,mBAAmB;IAhCT,SAAS,EAAE,OAAO,GAAG,MAAM,CAAW;IAClC,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAW;IAClC,mBAAmB,uBAA8B;IAE/E,OAAO,CAAC,YAAY,CAAM;IAC1B,OAAO,CAAC,aAAa,CAAO;IAC5B,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,mBAAmB,CAAa;IACxC,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,eAAe,CAAa;IAEpC,IACI,YAAY,CAAC,KAAK,EAAE,MAAM,EAQ7B;IAED,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,QAAQ,CAAkB;gBAGxB,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,UAAU,EACnB,mBAAmB,EAAE,mBAAmB;IAKlD,QAAQ,EAAE,GAAG,CAAY;IAEzB,SAAS,EAAE,GAAG,CAAY;IAE1B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAI/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAIhC,gBAAgB,IAAI,IAAI;IAIxB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI/B,QAAQ,IAAI,IAAI;IA8EhB,WAAW,IAAI,IAAI;IAInB,kBAAkB,IAAI,IAAI;IAI1B,kBAAkB,IAAI,IAAI;IAc1B,WAAW,CAAC,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI;IAyCtE,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAYhC,sBAAsB,IAAI,MAAM,GAAG,SAAS;IAS5C,OAAO,CAAC,gBAAgB;IAmCxB,OAAO,CAAC,cAAc;IAetB,OAAO,CAAC,eAAe;yCA9QZ,qBAAqB;2CAArB,qBAAqB;CAkRjC"}
@@ -0,0 +1,10 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./numeric-field.directive";
4
+ export declare class NumericFieldModule {
5
+ static forRoot(): ModuleWithProviders<NumericFieldModule>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericFieldModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NumericFieldModule, [typeof i1.NumericFieldDirective], never, [typeof i1.NumericFieldDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NumericFieldModule>;
9
+ }
10
+ //# sourceMappingURL=numeric-field.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numeric-field.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;;;AAI9D,qBAKa,kBAAkB;IAC7B,MAAM,CAAC,OAAO,IAAI,mBAAmB,CAAC,kBAAkB,CAAC;yCAD9C,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAO9B"}
@@ -0,0 +1,41 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
2
+ import { AbstractControl, FormArray, FormBuilder } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export interface QuickListItem {
5
+ id: string;
6
+ }
7
+ export declare class BaseQuickListComponent<T> implements OnInit, AfterViewInit {
8
+ changeDetectorRef: ChangeDetectorRef;
9
+ formBuilder: FormBuilder;
10
+ allItems: T[];
11
+ addLabel: string;
12
+ addPossible: boolean;
13
+ removePossible: boolean;
14
+ blankItem: any;
15
+ readonly: boolean;
16
+ maxItems: number;
17
+ minItems: number;
18
+ formArray: FormArray;
19
+ added: EventEmitter<T>;
20
+ removed: EventEmitter<T>;
21
+ itemTemplate: TemplateRef<any>;
22
+ itemRows: QueryList<ElementRef>;
23
+ rowCountFocus: number;
24
+ addEventFunction: Function;
25
+ constructor(changeDetectorRef: ChangeDetectorRef, formBuilder: FormBuilder);
26
+ ngOnInit(): void;
27
+ ngAfterViewInit(): void;
28
+ addItem(): void;
29
+ addReactiveItem(): void;
30
+ removeItem(item: T): void;
31
+ removeReactiveItem(item: AbstractControl<any>): void;
32
+ setFocusOnAdd(): void;
33
+ isAddAllowed(): boolean;
34
+ isAddReactiveAllowed(): boolean;
35
+ isDeleteAllowed(): boolean;
36
+ isDeleteReactiveAllowed(): boolean;
37
+ private interalAddItem;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseQuickListComponent<any>, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseQuickListComponent<any>, "mad-base-quick-list", never, { "allItems": { "alias": "allItems"; "required": false; }; "addLabel": { "alias": "addLabel"; "required": false; }; "addPossible": { "alias": "addPossible"; "required": false; }; "removePossible": { "alias": "removePossible"; "required": false; }; "blankItem": { "alias": "blankItem"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "maxItems": { "alias": "maxItems"; "required": false; }; "minItems": { "alias": "minItems"; "required": false; }; "formArray": { "alias": "formArray"; "required": false; }; }, { "added": "added"; "removed": "removed"; }, ["itemTemplate"], never, false, never>;
40
+ }
41
+ //# sourceMappingURL=base-quick-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/base-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EACT,WAAW,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAEzE,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,qBAKa,sBAAsB,CAAC,CAAC,CAAE,YAAW,MAAM,EAAE,aAAa;IAoB5D,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;IApBxB,QAAQ,MAAa;IACrB,QAAQ,SAAa;IACrB,WAAW,UAAQ;IACnB,cAAc,UAAQ;IACtB,SAAS,MAAa;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,SAAS,CAAC;IAEpB,KAAK,kBAAyB;IAC9B,OAAO,kBAAyB;IACf,YAAY,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IACrC,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IAErD,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,QAAQ,CAAC;gBAGlB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;IAGjC,QAAQ,IAAI,IAAI;IAShB,eAAe,IAAI,IAAI;IAIvB,OAAO,IAAI,IAAI;IAOf,eAAe;IAMf,UAAU,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAOzB,kBAAkB,CAAC,IAAI,EAAE,eAAe,CAAC,GAAG,CAAC;IAW7C,aAAa,IAAI,IAAI;IAarB,YAAY,IAAI,OAAO;IAIvB,oBAAoB,IAAI,OAAO;IAI/B,eAAe,IAAI,OAAO;IAI1B,uBAAuB,IAAI,OAAO;IAIlC,OAAO,CAAC,cAAc;yCAjGX,sBAAsB;2CAAtB,sBAAsB;CA4GlC"}
@@ -0,0 +1,12 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class QuickListCompactComponent extends BaseQuickListComponent<QuickListItem> {
6
+ changeDetectorRef: ChangeDetectorRef;
7
+ formBuilder: FormBuilder;
8
+ constructor(changeDetectorRef: ChangeDetectorRef, formBuilder: FormBuilder);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickListCompactComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuickListCompactComponent, "mad-quick-list-compact", never, {}, {}, never, ["label"], false, never>;
11
+ }
12
+ //# sourceMappingURL=quick-list-compact.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/quick-list-compact/quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,yBAA0B,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAEzE,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,yBAAyB;2CAAzB,yBAAyB;CAOrC"}
@@ -0,0 +1,12 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { BaseQuickListComponent, QuickListItem } from './base-quick-list.component';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class QuickListComponent extends BaseQuickListComponent<QuickListItem> {
6
+ changeDetectorRef: ChangeDetectorRef;
7
+ formBuilder: FormBuilder;
8
+ constructor(changeDetectorRef: ChangeDetectorRef, formBuilder: FormBuilder);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickListComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuickListComponent, "mad-quick-list", never, {}, {}, never, ["label"], false, never>;
11
+ }
12
+ //# sourceMappingURL=quick-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,kBAAmB,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAElE,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,kBAAkB;2CAAlB,kBAAkB;CAO9B"}
@@ -0,0 +1,6 @@
1
+ export { QuickListCompactComponent } from './quick-list-compact/quick-list-compact.component';
2
+ export { BaseQuickListComponent } from './base-quick-list.component';
3
+ export { QuickListComponent } from './quick-list.component';
4
+ export { ReactiveFormQuickListComponent } from './reactive-form-quick-list/reactive-form-quick-list.component';
5
+ export { ReactiveFormQuickListCompactComponent } from './reactive-form-quick-list-compact/reactive-form-quick-list-compact.component';
6
+ //# sourceMappingURL=quick-list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quick-list.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,mDAAmD,CAAC;AAC9F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,8BAA8B,EAAE,MAAM,+DAA+D,CAAC;AAC/G,OAAO,EAAE,qCAAqC,EAAE,MAAM,+EAA+E,CAAC"}
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./quick-list.component";
3
+ import * as i2 from "./base-quick-list.component";
4
+ import * as i3 from "./quick-list-compact/quick-list-compact.component";
5
+ import * as i4 from "./reactive-form-quick-list/reactive-form-quick-list.component";
6
+ import * as i5 from "./reactive-form-quick-list-compact/reactive-form-quick-list-compact.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@angular/material/button";
9
+ import * as i8 from "@angular/material/icon";
10
+ import * as i9 from "../button/button.module";
11
+ import * as i10 from "@angular/forms";
12
+ export declare class QuickListModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickListModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QuickListModule, [typeof i1.QuickListComponent, typeof i2.BaseQuickListComponent, typeof i3.QuickListCompactComponent, typeof i4.ReactiveFormQuickListComponent, typeof i5.ReactiveFormQuickListCompactComponent], [typeof i6.CommonModule, typeof i7.MatButtonModule, typeof i8.MatIconModule, typeof i9.ButtonModule, typeof i10.ReactiveFormsModule], [typeof i1.QuickListComponent, typeof i3.QuickListCompactComponent, typeof i2.BaseQuickListComponent, typeof i4.ReactiveFormQuickListComponent, typeof i5.ReactiveFormQuickListCompactComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<QuickListModule>;
16
+ }
17
+ //# sourceMappingURL=quick-list.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quick-list.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,qBAiBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -0,0 +1,12 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ReactiveFormQuickListComponent extends BaseQuickListComponent<QuickListItem> {
6
+ changeDetectorRef: ChangeDetectorRef;
7
+ formBuilder: FormBuilder;
8
+ constructor(changeDetectorRef: ChangeDetectorRef, formBuilder: FormBuilder);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReactiveFormQuickListComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReactiveFormQuickListComponent, "mad-reactive-form-quick-list", never, {}, {}, never, ["label"], false, never>;
11
+ }
12
+ //# sourceMappingURL=reactive-form-quick-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reactive-form-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,8BAA+B,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAE9E,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,8BAA8B;2CAA9B,8BAA8B;CAO1C"}
@@ -0,0 +1,12 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { FormBuilder } from '@angular/forms';
3
+ import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ReactiveFormQuickListCompactComponent extends BaseQuickListComponent<QuickListItem> {
6
+ changeDetectorRef: ChangeDetectorRef;
7
+ formBuilder: FormBuilder;
8
+ constructor(changeDetectorRef: ChangeDetectorRef, formBuilder: FormBuilder);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReactiveFormQuickListCompactComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReactiveFormQuickListCompactComponent, "mad-reactive-form-quick-list-compact", never, {}, {}, never, ["label"], false, never>;
11
+ }
12
+ //# sourceMappingURL=reactive-form-quick-list-compact.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reactive-form-quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;;AAErF,qBAKa,qCAAsC,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAErF,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,qCAAqC;2CAArC,qCAAqC;CAOjD"}
@@ -1,14 +1,56 @@
1
- import { ChangeDetectorRef, SimpleChanges, OnChanges } from '@angular/core';
2
- /**
3
- * Read-only mat-form-field representation of provided value
4
- *
5
- * @author Stefan Laesser
6
- */
7
- export declare class ReadOnlyFormFieldComponent implements OnChanges {
8
- private changeDetector;
9
- value: any;
10
- label: string;
11
- constructor(changeDetector: ChangeDetectorRef);
12
- ngOnChanges(_: SimpleChanges): void;
13
- checkForValue(): boolean;
14
- }
1
+ import { AfterViewChecked, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
2
+ import { ErrorStateMatcher } from '@angular/material/core';
3
+ import { NumberFormatService } from '../../numeric-field/number-format.service';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Read-only mat-form-field representation of provided value
7
+ *
8
+ * @author Stefan Laesser
9
+ */
10
+ export declare class ReadOnlyFormFieldComponent implements OnChanges, AfterViewChecked {
11
+ private changeDetector;
12
+ private renderer;
13
+ private numberFormatService;
14
+ originalContent: ElementRef;
15
+ value: any;
16
+ label: string;
17
+ textAlign: 'right' | 'left';
18
+ formatNumber: boolean;
19
+ decimalPlaces: number;
20
+ roundValue: boolean;
21
+ autofillDecimals: boolean;
22
+ unit: string | null;
23
+ unitPosition: 'right' | 'left';
24
+ errorMessage: string | null;
25
+ multiline: boolean;
26
+ rows: number;
27
+ id: string;
28
+ shrinkIfEmpty: boolean;
29
+ /**
30
+ * suffix iocon
31
+ */
32
+ suffix: string;
33
+ /**
34
+ * prefix iocon
35
+ */
36
+ prefix: string;
37
+ /**
38
+ * if cdkTextareaAutosize is active for textareas
39
+ */
40
+ multilineAutoSize: boolean;
41
+ suffixClickedEmitter: EventEmitter<any>;
42
+ prefixClickedEmitter: EventEmitter<any>;
43
+ inputEl: ElementRef;
44
+ errorMatcher: ErrorStateMatcher;
45
+ private unitSpan;
46
+ private textSpan;
47
+ constructor(changeDetector: ChangeDetectorRef, renderer: Renderer2, numberFormatService: NumberFormatService);
48
+ ngOnChanges(_: SimpleChanges): void;
49
+ ngAfterViewChecked(): void;
50
+ suffixClicked(): void;
51
+ prefixClicked(): void;
52
+ private injectUnitSymbol;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyFormFieldComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReadOnlyFormFieldComponent, "mad-readonly-form-field", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "formatNumber": { "alias": "formatNumber"; "required": false; }; "decimalPlaces": { "alias": "decimalPlaces"; "required": false; }; "roundValue": { "alias": "roundDisplayValue"; "required": false; }; "autofillDecimals": { "alias": "autofillDecimals"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "unitPosition": { "alias": "unitPosition"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "id": { "alias": "id"; "required": false; }; "shrinkIfEmpty": { "alias": "shrinkIfEmpty"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "multilineAutoSize": { "alias": "multilineAutoSize"; "required": false; }; }, { "suffixClickedEmitter": "suffixClickedEmitter"; "prefixClickedEmitter": "prefixClickedEmitter"; }, never, never, false, never>;
55
+ }
56
+ //# sourceMappingURL=readonly-form-field.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"readonly-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field/readonly-form-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EAET,SAAS,EACT,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;;AAEhF;;;;GAIG;AAEH,qBAKa,0BAA2B,YAAW,SAAS,EAAE,gBAAgB;IA8C1E,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,mBAAmB;IA9C7B,eAAe,EAAE,UAAU,CAAC;IACZ,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,OAAO,GAAG,MAAM,CAAU;IAClC,YAAY,UAAS;IACpB,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAU;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjD,SAAS,UAAS;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IAOX,aAAa,UAAS;IAC/B;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,iBAAiB,UAAS;IACzB,oBAAoB,oBAAsB;IAC1C,oBAAoB,oBAAsB;IAC9B,OAAO,EAAE,UAAU,CAAC;IAC1C,YAAY,EAAE,iBAAiB,CAE7B;IAEF,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,QAAQ,CAAkB;gBAGxB,cAAc,EAAE,iBAAiB,EACjC,QAAQ,EAAE,SAAS,EACnB,mBAAmB,EAAE,mBAAmB;IAGlD,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAiBnC,kBAAkB,IAAI,IAAI;IAI1B,aAAa;IAIb,aAAa;IAIb,OAAO,CAAC,gBAAgB;yCAhFb,0BAA0B;2CAA1B,0BAA0B;CAkItC"}