@mtna/web-form-angular 1.0.4 → 1.0.5

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 (394) hide show
  1. package/_index.scss +20 -0
  2. package/bundles/mtna-web-form-angular.umd.js +5912 -359
  3. package/bundles/mtna-web-form-angular.umd.js.map +1 -1
  4. package/esm2015/lib/components/acknowledge-dialog/acknowledge-dialog.component.js +1 -1
  5. package/esm2015/lib/components/base-form/base-form.component.js +11 -2
  6. package/esm2015/lib/components/base-items/base-form-item.component.js +11 -2
  7. package/esm2015/lib/components/base-items/base-section-item.component.js +1 -2
  8. package/esm2015/lib/components/form/form.component.js +2 -2
  9. package/esm2015/lib/components/form-item/form-item.component.js +11 -2
  10. package/esm2015/lib/components/form-item-dialog/form-item-dialog.component.js +1 -1
  11. package/esm2015/lib/components/form-item-impl/boolean/boolean.component.js +2 -2
  12. package/esm2015/lib/components/form-item-impl/checkbox/checkbox.component.js +2 -2
  13. package/esm2015/lib/components/form-item-impl/date/date.component.js +1 -1
  14. package/esm2015/lib/components/form-item-impl/date/date.module.js +5 -2
  15. package/esm2015/lib/components/form-item-impl/date-range/date-range.component.js +2 -2
  16. package/esm2015/lib/components/form-item-impl/file-upload/file-upload.component.js +1 -1
  17. package/esm2015/lib/components/form-item-impl/form-group/form-group.component.js +2 -2
  18. package/esm2015/lib/components/form-item-impl/form-section/form-section.component.js +2 -2
  19. package/esm2015/lib/components/form-item-impl/i18n-input/i18n-input.component.js +3 -2
  20. package/esm2015/lib/components/form-item-impl/i18n-input/i18n-input.module.js +6 -3
  21. package/esm2015/lib/components/form-item-impl/multiple-choice/multiple-choice.component.js +2 -2
  22. package/esm2015/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.component.js +11 -10
  23. package/esm2015/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.module.js +6 -2
  24. package/esm2015/lib/components/form-item-impl/search/resource-search.component.js +9 -8
  25. package/esm2015/lib/components/form-item-impl/table-item/table-item.component.js +2 -2
  26. package/esm2015/lib/components/form-item-impl/year-quarter/year-quarter.component.js +3 -3
  27. package/esm2015/lib/components/form-item-impl/year-quarter-range/year-quarter-range.component.js +2 -2
  28. package/esm2015/lib/components/form-item-injector/form-item-injector.component.js +12 -2
  29. package/esm2015/lib/components/index.js +2 -1
  30. package/esm2015/lib/components/progressive-form/progressive-form/progressive-form.component.js +2 -2
  31. package/esm2015/lib/components/step-card/step-card.component.js +1 -2
  32. package/esm2015/lib/components/template-item-impl/base/base-template-item-with-list.component.js +26 -0
  33. package/esm2015/lib/components/template-item-impl/base/base-template-item.component.js +80 -0
  34. package/esm2015/lib/components/template-item-impl/base/index.js +3 -0
  35. package/esm2015/lib/components/template-item-impl/boolean-item/boolean-item.component.js +24 -0
  36. package/esm2015/lib/components/template-item-impl/boolean-item/boolean-item.module.js +21 -0
  37. package/esm2015/lib/components/template-item-impl/boolean-item/index.js +3 -0
  38. package/esm2015/lib/components/template-item-impl/checkbox-item/checkbox-item.component.js +37 -0
  39. package/esm2015/lib/components/template-item-impl/checkbox-item/checkbox-item.module.js +24 -0
  40. package/esm2015/lib/components/template-item-impl/checkbox-item/index.js +3 -0
  41. package/esm2015/lib/components/template-item-impl/date/index.js +4 -0
  42. package/esm2015/lib/components/template-item-impl/date/offset-date-range-item/index.js +3 -0
  43. package/esm2015/lib/components/template-item-impl/date/offset-date-range-item/offset-date-range-item.component.js +41 -0
  44. package/esm2015/lib/components/template-item-impl/date/offset-date-range-item/offset-date-range-item.module.js +21 -0
  45. package/esm2015/lib/components/template-item-impl/date/year-quarter-item/index.js +3 -0
  46. package/esm2015/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.component.js +59 -0
  47. package/esm2015/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.module.js +48 -0
  48. package/esm2015/lib/components/template-item-impl/date/year-quarter-range-item/index.js +3 -0
  49. package/esm2015/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.component.js +21 -0
  50. package/esm2015/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.module.js +22 -0
  51. package/esm2015/lib/components/template-item-impl/date-item/date-item.component.js +85 -0
  52. package/esm2015/lib/components/template-item-impl/date-item/date-item.module.js +52 -0
  53. package/esm2015/lib/components/template-item-impl/date-item/index.js +3 -0
  54. package/esm2015/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.component.js +29 -0
  55. package/esm2015/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.module.js +41 -0
  56. package/esm2015/lib/components/template-item-impl/decimal-answer-item/index.js +3 -0
  57. package/esm2015/lib/components/template-item-impl/dropdown-item/dropdown-item.component.js +23 -0
  58. package/esm2015/lib/components/template-item-impl/dropdown-item/dropdown-item.module.js +48 -0
  59. package/esm2015/lib/components/template-item-impl/dropdown-item/index.js +3 -0
  60. package/esm2015/lib/components/template-item-impl/file-upload-item/file-upload-item.component.js +25 -0
  61. package/esm2015/lib/components/template-item-impl/file-upload-item/file-upload-item.module.js +45 -0
  62. package/esm2015/lib/components/template-item-impl/file-upload-item/index.js +3 -0
  63. package/esm2015/lib/components/template-item-impl/i18n-paragraph-answer-item/i18n-paragraph-answer-item.component.js +51 -0
  64. package/esm2015/lib/components/template-item-impl/i18n-paragraph-answer-item/i18n-paragraph-answer-item.module.js +45 -0
  65. package/esm2015/lib/components/template-item-impl/i18n-paragraph-answer-item/index.js +3 -0
  66. package/esm2015/lib/components/template-item-impl/i18n-short-answer-item/i18n-short-answer-item.component.js +50 -0
  67. package/esm2015/lib/components/template-item-impl/i18n-short-answer-item/i18n-short-answer-item.module.js +48 -0
  68. package/esm2015/lib/components/template-item-impl/i18n-short-answer-item/index.js +3 -0
  69. package/esm2015/lib/components/template-item-impl/index.js +29 -0
  70. package/esm2015/lib/components/template-item-impl/models/index.js +2 -0
  71. package/esm2015/lib/components/template-item-impl/models/step-aware.model.js +6 -0
  72. package/esm2015/lib/components/template-item-impl/multiple-choice-item/index.js +3 -0
  73. package/esm2015/lib/components/template-item-impl/multiple-choice-item/multiple-choice-item.component.js +21 -0
  74. package/esm2015/lib/components/template-item-impl/multiple-choice-item/multiple-choice-item.module.js +21 -0
  75. package/esm2015/lib/components/template-item-impl/option/template-option-group-item.component.js +17 -0
  76. package/esm2015/lib/components/template-item-impl/option/template-option-item.component.js +17 -0
  77. package/esm2015/lib/components/template-item-impl/ordered-list-item/index.js +3 -0
  78. package/esm2015/lib/components/template-item-impl/ordered-list-item/ordered-list-item.component.js +21 -0
  79. package/esm2015/lib/components/template-item-impl/ordered-list-item/ordered-list-item.module.js +19 -0
  80. package/esm2015/lib/components/template-item-impl/paragraph-answer-item/index.js +3 -0
  81. package/esm2015/lib/components/template-item-impl/paragraph-answer-item/paragraph-answer-item.component.js +28 -0
  82. package/esm2015/lib/components/template-item-impl/paragraph-answer-item/paragraph-answer-item.module.js +41 -0
  83. package/esm2015/lib/components/template-item-impl/repeatable-item/index.js +3 -0
  84. package/esm2015/lib/components/template-item-impl/repeatable-item/repeatable-item.component.js +23 -0
  85. package/esm2015/lib/components/template-item-impl/repeatable-item/repeatable-item.module.js +18 -0
  86. package/esm2015/lib/components/template-item-impl/repeatable-item-container/index.js +3 -0
  87. package/esm2015/lib/components/template-item-impl/repeatable-item-container/repeatable-item-container.component.js +46 -0
  88. package/esm2015/lib/components/template-item-impl/repeatable-item-container/repeatable-item-container.module.js +50 -0
  89. package/esm2015/lib/components/template-item-impl/short-answer-item/index.js +3 -0
  90. package/esm2015/lib/components/template-item-impl/short-answer-item/short-answer-item.component.js +28 -0
  91. package/esm2015/lib/components/template-item-impl/short-answer-item/short-answer-item.module.js +41 -0
  92. package/esm2015/lib/components/template-item-impl/template/index.js +3 -0
  93. package/esm2015/lib/components/template-item-impl/template/template.component.js +89 -0
  94. package/esm2015/lib/components/template-item-impl/template/template.module.js +46 -0
  95. package/esm2015/lib/components/template-item-impl/template-display-viewer/index.js +3 -0
  96. package/esm2015/lib/components/template-item-impl/template-display-viewer/template-display-viewer.component.js +44 -0
  97. package/esm2015/lib/components/template-item-impl/template-display-viewer/template-display-viewer.module.js +57 -0
  98. package/esm2015/lib/components/template-item-impl/template-item/index.js +3 -0
  99. package/esm2015/lib/components/template-item-impl/template-item/template-item.component.js +81 -0
  100. package/esm2015/lib/components/template-item-impl/template-item/template-item.module.js +21 -0
  101. package/esm2015/lib/components/template-item-impl/template-item-component-provider/index.js +3 -0
  102. package/esm2015/lib/components/template-item-impl/template-item-component-provider/template-item-component-provider.js +8 -0
  103. package/esm2015/lib/components/template-item-impl/template-item-component-provider/template-item-injected-components.js +107 -0
  104. package/esm2015/lib/components/template-item-impl/template-item-group/index.js +3 -0
  105. package/esm2015/lib/components/template-item-impl/template-item-group/template-item-group.component.js +52 -0
  106. package/esm2015/lib/components/template-item-impl/template-item-group/template-item-group.module.js +22 -0
  107. package/esm2015/lib/components/template-item-impl/template-item-header/index.js +3 -0
  108. package/esm2015/lib/components/template-item-impl/template-item-header/template-item-header.component.js +68 -0
  109. package/esm2015/lib/components/template-item-impl/template-item-header/template-item-header.module.js +19 -0
  110. package/esm2015/lib/components/template-item-impl/template-item-injector/index.js +3 -0
  111. package/esm2015/lib/components/template-item-impl/template-item-injector/template-item-injector.component.js +115 -0
  112. package/esm2015/lib/components/template-item-impl/template-item-injector/template-item-injector.module.js +18 -0
  113. package/esm2015/lib/components/template-item-impl/template-section/index.js +3 -0
  114. package/esm2015/lib/components/template-item-impl/template-section/template-section.component.js +32 -0
  115. package/esm2015/lib/components/template-item-impl/template-section/template-section.module.js +44 -0
  116. package/esm2015/lib/components/template-item-impl/text-item/index.js +3 -0
  117. package/esm2015/lib/components/template-item-impl/text-item/text-item.component.js +21 -0
  118. package/esm2015/lib/components/template-item-impl/text-item/text-item.module.js +19 -0
  119. package/esm2015/lib/components/template-item-impl/title-item/index.js +3 -0
  120. package/esm2015/lib/components/template-item-impl/title-item/title-item.component.js +20 -0
  121. package/esm2015/lib/components/template-item-impl/title-item/title-item.module.js +19 -0
  122. package/esm2015/lib/components/template-item-impl/unordered-list-item/index.js +3 -0
  123. package/esm2015/lib/components/template-item-impl/unordered-list-item/unordered-list-item.component.js +21 -0
  124. package/esm2015/lib/components/template-item-impl/unordered-list-item/unordered-list-item.module.js +19 -0
  125. package/esm2015/lib/components/template-item-impl/whole-number-answer-item/index.js +3 -0
  126. package/esm2015/lib/components/template-item-impl/whole-number-answer-item/whole-number-answer-item.component.js +28 -0
  127. package/esm2015/lib/components/template-item-impl/whole-number-answer-item/whole-number-answer-item.module.js +41 -0
  128. package/esm2015/lib/models/custom-date-format-provider.model.js +13 -0
  129. package/esm2015/lib/models/date/default-year-range.model.js +3 -0
  130. package/esm2015/lib/models/date/index.js +2 -0
  131. package/esm2015/lib/models/design/conditional-processing-resources.model.js +2 -0
  132. package/esm2015/lib/models/design/design-mapper/boolean-item-template-mapper.js +15 -0
  133. package/esm2015/lib/models/design/design-mapper/bulleted-list-item-template-mapper.js +27 -0
  134. package/esm2015/lib/models/design/design-mapper/checkbox-item-template-mapper.js +15 -0
  135. package/esm2015/lib/models/design/design-mapper/date-item-template-mapper.js +39 -0
  136. package/esm2015/lib/models/design/design-mapper/dropdown-item-template-mapper.js +26 -0
  137. package/esm2015/lib/models/design/design-mapper/file-upload-item-template-mapper.js +31 -0
  138. package/esm2015/lib/models/design/design-mapper/i18n-text-response-item-template-mapper.js +28 -0
  139. package/esm2015/lib/models/design/design-mapper/index.js +27 -0
  140. package/esm2015/lib/models/design/design-mapper/mapper-classes.model.js +89 -0
  141. package/esm2015/lib/models/design/design-mapper/mapping-logic-core.js +19 -0
  142. package/esm2015/lib/models/design/design-mapper/multiple-choice-item-template-mapper.js +25 -0
  143. package/esm2015/lib/models/design/design-mapper/numbered-list-item-template-mapper.js +27 -0
  144. package/esm2015/lib/models/design/design-mapper/numeric-response-item-template-mapper.js +37 -0
  145. package/esm2015/lib/models/design/design-mapper/offset-date-range-template-mapper.js +32 -0
  146. package/esm2015/lib/models/design/design-mapper/option-group-item-mapper.js +59 -0
  147. package/esm2015/lib/models/design/design-mapper/option-item-mapper.js +54 -0
  148. package/esm2015/lib/models/design/design-mapper/option-selector-mapper.js +117 -0
  149. package/esm2015/lib/models/design/design-mapper/repeatable-item-template-mapper.js +50 -0
  150. package/esm2015/lib/models/design/design-mapper/template-item-group-mapper.js +34 -0
  151. package/esm2015/lib/models/design/design-mapper/template-item-mapper.js +79 -0
  152. package/esm2015/lib/models/design/design-mapper/template-mapper.js +64 -0
  153. package/esm2015/lib/models/design/design-mapper/template-section-mapper.js +40 -0
  154. package/esm2015/lib/models/design/design-mapper/text-item-template-mapper.js +26 -0
  155. package/esm2015/lib/models/design/design-mapper/text-response-item-template-mapper.js +32 -0
  156. package/esm2015/lib/models/design/design-mapper/time-item-template-mapper.js +30 -0
  157. package/esm2015/lib/models/design/design-mapper/title-item-template-mapper.js +26 -0
  158. package/esm2015/lib/models/design/design-mapper/year-quarter-range-template-mapper.js +28 -0
  159. package/esm2015/lib/models/design/enumerations/date-enumeration.model.js +33 -0
  160. package/esm2015/lib/models/design/enumerations/index.js +2 -0
  161. package/esm2015/lib/models/design/index.js +9 -0
  162. package/esm2015/lib/models/design/option-group-item-section-display-name-map.model.js +8 -0
  163. package/esm2015/lib/models/design/option-item-section-display-name-map.model.js +6 -0
  164. package/esm2015/lib/models/design/potential-designs.model.js +160 -0
  165. package/esm2015/lib/models/design/template-design-constants.model.js +48 -0
  166. package/esm2015/lib/models/design/template-design-context.model.js +10 -0
  167. package/esm2015/lib/models/i18n-constants.model.js +185 -0
  168. package/esm2015/lib/models/index.js +5 -1
  169. package/esm2015/lib/pipes/filter-hidden-items.pipe.js +1 -1
  170. package/esm2015/lib/pipes/get-i18n-string-value-from-locale.pipe.js +36 -0
  171. package/esm2015/lib/pipes/get-i18n-strings-value-from-locale.pipe.js +36 -0
  172. package/esm2015/lib/pipes/get-progressive-form-item.pipe.js +1 -2
  173. package/esm2015/lib/pipes/index.js +6 -1
  174. package/esm2015/lib/pipes/instance-of-template-item-group-impl.pipe.js +33 -0
  175. package/esm2015/lib/pipes/instance-of-template-item.pipe.js +29 -0
  176. package/esm2015/lib/pipes/instance-of-template.pipe.js +29 -0
  177. package/esm2015/lib/pipes/items-with-value.pipe.js +1 -3
  178. package/esm2015/lib/services/api.service.js +8 -2
  179. package/esm2015/lib/services/dialog.service.js +9 -9
  180. package/esm2015/lib/services/index.js +2 -1
  181. package/esm2015/lib/services/template-transformation.service.js +27 -0
  182. package/esm2015/lib/state/design/index.js +2 -0
  183. package/esm2015/lib/state/design/template-design.facade.js +239 -0
  184. package/esm2015/lib/state/form/index.js +8 -0
  185. package/esm2015/lib/state/form/template-form-api.actions.js +6 -0
  186. package/esm2015/lib/state/form/template-form.actions.js +5 -0
  187. package/esm2015/lib/state/form/template-form.effects.js +39 -0
  188. package/esm2015/lib/state/form/template-form.facade.js +28 -0
  189. package/esm2015/lib/state/form/template-form.reducer.js +18 -0
  190. package/esm2015/lib/state/form/template-form.selectors.js +8 -0
  191. package/esm2015/lib/state/index.js +3 -0
  192. package/esm2015/lib/utilities/design-conditionals-util.js +124 -0
  193. package/esm2015/lib/utilities/form-option-design-util.js +88 -0
  194. package/esm2015/lib/utilities/generate-form-steps.js +1 -1
  195. package/esm2015/lib/utilities/index.js +6 -2
  196. package/esm2015/lib/utilities/merge-template-util.js +116 -0
  197. package/esm2015/lib/utilities/new-base-designs.util.js +193 -0
  198. package/esm2015/lib/utilities/serializer-util.js +33 -2
  199. package/esm2015/lib/utilities/template-design-core-util.js +34 -0
  200. package/esm2015/lib/utilities/template-design-util.js +113 -0
  201. package/esm2015/public-api.js +2 -1
  202. package/fesm2015/mtna-web-form-angular.js +4649 -138
  203. package/fesm2015/mtna-web-form-angular.js.map +1 -1
  204. package/lib/_index.scss +45 -0
  205. package/lib/components/base-form/base-form.component.d.ts +6 -2
  206. package/lib/components/base-items/base-form-item.component.d.ts +4 -1
  207. package/lib/components/form-item/form-item.component.d.ts +4 -1
  208. package/lib/components/form-item-impl/checkbox/_checkbox-theme.scss +3 -20
  209. package/lib/components/form-item-impl/i18n-input/i18n-input.module.d.ts +2 -1
  210. package/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.module.d.ts +2 -1
  211. package/lib/components/form-item-impl/search/resource-search.component.d.ts +3 -3
  212. package/lib/components/form-item-impl/year-quarter/year-quarter.component.d.ts +2 -6
  213. package/lib/components/form-item-injector/form-item-injector.component.d.ts +5 -1
  214. package/lib/components/index.d.ts +1 -0
  215. package/lib/components/template-item-impl/base/base-template-item-with-list.component.d.ts +12 -0
  216. package/lib/components/template-item-impl/base/base-template-item.component.d.ts +30 -0
  217. package/lib/components/template-item-impl/base/index.d.ts +2 -0
  218. package/lib/components/template-item-impl/boolean-item/boolean-item.component.d.ts +11 -0
  219. package/lib/components/template-item-impl/boolean-item/boolean-item.module.d.ts +11 -0
  220. package/lib/components/template-item-impl/boolean-item/index.d.ts +2 -0
  221. package/lib/components/template-item-impl/checkbox-item/_checkbox-item-template-theme.scss +47 -0
  222. package/lib/components/template-item-impl/checkbox-item/checkbox-item.component.d.ts +11 -0
  223. package/lib/components/template-item-impl/checkbox-item/checkbox-item.module.d.ts +14 -0
  224. package/lib/components/template-item-impl/checkbox-item/index.d.ts +2 -0
  225. package/lib/components/template-item-impl/date/index.d.ts +3 -0
  226. package/lib/components/template-item-impl/date/offset-date-range-item/index.d.ts +2 -0
  227. package/lib/components/template-item-impl/date/offset-date-range-item/offset-date-range-item.component.d.ts +13 -0
  228. package/lib/components/template-item-impl/date/offset-date-range-item/offset-date-range-item.module.d.ts +11 -0
  229. package/lib/components/template-item-impl/date/year-quarter-item/_year-quarter-item-template-theme.scss +28 -0
  230. package/lib/components/template-item-impl/date/year-quarter-item/index.d.ts +2 -0
  231. package/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.component.d.ts +23 -0
  232. package/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.module.d.ts +14 -0
  233. package/lib/components/template-item-impl/date/year-quarter-range-item/index.d.ts +2 -0
  234. package/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.component.d.ts +7 -0
  235. package/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.module.d.ts +12 -0
  236. package/lib/components/template-item-impl/date-item/_date-item-template-theme.scss +29 -0
  237. package/lib/components/template-item-impl/date-item/date-item.component.d.ts +22 -0
  238. package/lib/components/template-item-impl/date-item/date-item.module.d.ts +14 -0
  239. package/lib/components/template-item-impl/date-item/index.d.ts +2 -0
  240. package/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.component.d.ts +8 -0
  241. package/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.module.d.ts +13 -0
  242. package/lib/components/template-item-impl/decimal-answer-item/index.d.ts +2 -0
  243. package/lib/components/template-item-impl/dropdown-item/_dropdown-item-template-theme.scss +35 -0
  244. package/lib/components/template-item-impl/dropdown-item/dropdown-item.component.d.ts +7 -0
  245. package/lib/components/template-item-impl/dropdown-item/dropdown-item.module.d.ts +15 -0
  246. package/lib/components/template-item-impl/dropdown-item/index.d.ts +2 -0
  247. package/lib/components/template-item-impl/file-upload-item/file-upload-item.component.d.ts +9 -0
  248. package/lib/components/template-item-impl/file-upload-item/file-upload-item.module.d.ts +13 -0
  249. package/lib/components/template-item-impl/file-upload-item/index.d.ts +2 -0
  250. package/lib/components/template-item-impl/i18n-paragraph-answer-item/i18n-paragraph-answer-item.component.d.ts +13 -0
  251. package/lib/components/template-item-impl/i18n-paragraph-answer-item/i18n-paragraph-answer-item.module.d.ts +14 -0
  252. package/lib/components/template-item-impl/i18n-paragraph-answer-item/index.d.ts +2 -0
  253. package/lib/components/template-item-impl/i18n-short-answer-item/i18n-short-answer-item.component.d.ts +11 -0
  254. package/lib/components/template-item-impl/i18n-short-answer-item/i18n-short-answer-item.module.d.ts +15 -0
  255. package/lib/components/template-item-impl/i18n-short-answer-item/index.d.ts +2 -0
  256. package/lib/components/template-item-impl/index.d.ts +28 -0
  257. package/lib/components/template-item-impl/models/index.d.ts +1 -0
  258. package/lib/components/template-item-impl/models/step-aware.model.d.ts +5 -0
  259. package/lib/components/template-item-impl/multiple-choice-item/index.d.ts +2 -0
  260. package/lib/components/template-item-impl/multiple-choice-item/multiple-choice-item.component.d.ts +7 -0
  261. package/lib/components/template-item-impl/multiple-choice-item/multiple-choice-item.module.d.ts +11 -0
  262. package/lib/components/template-item-impl/option/template-option-group-item.component.d.ts +8 -0
  263. package/lib/components/template-item-impl/option/template-option-item.component.d.ts +8 -0
  264. package/lib/components/template-item-impl/ordered-list-item/index.d.ts +2 -0
  265. package/lib/components/template-item-impl/ordered-list-item/ordered-list-item.component.d.ts +7 -0
  266. package/lib/components/template-item-impl/ordered-list-item/ordered-list-item.module.d.ts +10 -0
  267. package/lib/components/template-item-impl/paragraph-answer-item/index.d.ts +2 -0
  268. package/lib/components/template-item-impl/paragraph-answer-item/paragraph-answer-item.component.d.ts +8 -0
  269. package/lib/components/template-item-impl/paragraph-answer-item/paragraph-answer-item.module.d.ts +13 -0
  270. package/lib/components/template-item-impl/repeatable-item/index.d.ts +2 -0
  271. package/lib/components/template-item-impl/repeatable-item/repeatable-item.component.d.ts +5 -0
  272. package/lib/components/template-item-impl/repeatable-item/repeatable-item.module.d.ts +8 -0
  273. package/lib/components/template-item-impl/repeatable-item-container/_repeatable-item-template-container-theme.scss +28 -0
  274. package/lib/components/template-item-impl/repeatable-item-container/index.d.ts +2 -0
  275. package/lib/components/template-item-impl/repeatable-item-container/repeatable-item-container.component.d.ts +8 -0
  276. package/lib/components/template-item-impl/repeatable-item-container/repeatable-item-container.module.d.ts +15 -0
  277. package/lib/components/template-item-impl/short-answer-item/index.d.ts +2 -0
  278. package/lib/components/template-item-impl/short-answer-item/short-answer-item.component.d.ts +8 -0
  279. package/lib/components/template-item-impl/short-answer-item/short-answer-item.module.d.ts +13 -0
  280. package/lib/components/template-item-impl/template/index.d.ts +2 -0
  281. package/lib/components/template-item-impl/template/template.component.d.ts +35 -0
  282. package/lib/components/template-item-impl/template/template.module.d.ts +14 -0
  283. package/lib/components/template-item-impl/template-display-viewer/index.d.ts +2 -0
  284. package/lib/components/template-item-impl/template-display-viewer/template-display-viewer.component.d.ts +25 -0
  285. package/lib/components/template-item-impl/template-display-viewer/template-display-viewer.module.d.ts +17 -0
  286. package/lib/components/template-item-impl/template-item/index.d.ts +2 -0
  287. package/lib/components/template-item-impl/template-item/template-item.component.d.ts +29 -0
  288. package/lib/components/template-item-impl/template-item/template-item.module.d.ts +11 -0
  289. package/lib/components/template-item-impl/template-item-component-provider/index.d.ts +2 -0
  290. package/lib/components/template-item-impl/template-item-component-provider/template-item-component-provider.d.ts +4 -0
  291. package/lib/components/template-item-impl/template-item-component-provider/template-item-injected-components.d.ts +2 -0
  292. package/lib/components/template-item-impl/template-item-group/_template-item-group-theme.scss +31 -0
  293. package/lib/components/template-item-impl/template-item-group/index.d.ts +2 -0
  294. package/lib/components/template-item-impl/template-item-group/template-item-group.component.d.ts +18 -0
  295. package/lib/components/template-item-impl/template-item-group/template-item-group.module.d.ts +12 -0
  296. package/lib/components/template-item-impl/template-item-header/_template-item-header-theme.scss +28 -0
  297. package/lib/components/template-item-impl/template-item-header/index.d.ts +2 -0
  298. package/lib/components/template-item-impl/template-item-header/template-item-header.component.d.ts +26 -0
  299. package/lib/components/template-item-impl/template-item-header/template-item-header.module.d.ts +10 -0
  300. package/lib/components/template-item-impl/template-item-injector/index.d.ts +2 -0
  301. package/lib/components/template-item-impl/template-item-injector/template-item-injector.component.d.ts +43 -0
  302. package/lib/components/template-item-impl/template-item-injector/template-item-injector.module.d.ts +8 -0
  303. package/lib/components/template-item-impl/template-section/index.d.ts +2 -0
  304. package/lib/components/template-item-impl/template-section/template-section.component.d.ts +12 -0
  305. package/lib/components/template-item-impl/template-section/template-section.module.d.ts +13 -0
  306. package/lib/components/template-item-impl/text-item/index.d.ts +2 -0
  307. package/lib/components/template-item-impl/text-item/text-item.component.d.ts +7 -0
  308. package/lib/components/template-item-impl/text-item/text-item.module.d.ts +10 -0
  309. package/lib/components/template-item-impl/title-item/_title-item-template-theme.scss +28 -0
  310. package/lib/components/template-item-impl/title-item/index.d.ts +2 -0
  311. package/lib/components/template-item-impl/title-item/title-item.component.d.ts +7 -0
  312. package/lib/components/template-item-impl/title-item/title-item.module.d.ts +9 -0
  313. package/lib/components/template-item-impl/unordered-list-item/index.d.ts +2 -0
  314. package/lib/components/template-item-impl/unordered-list-item/unordered-list-item.component.d.ts +7 -0
  315. package/lib/components/template-item-impl/unordered-list-item/unordered-list-item.module.d.ts +10 -0
  316. package/lib/components/template-item-impl/whole-number-answer-item/index.d.ts +2 -0
  317. package/lib/components/template-item-impl/whole-number-answer-item/whole-number-answer-item.component.d.ts +8 -0
  318. package/lib/components/template-item-impl/whole-number-answer-item/whole-number-answer-item.module.d.ts +13 -0
  319. package/lib/core/_all-color.scss +18 -0
  320. package/lib/core/_all-theme.scss +18 -0
  321. package/lib/core/_all-typography.scss +18 -0
  322. package/lib/core/_mixins.scss +58 -0
  323. package/lib/models/custom-date-format-provider.model.d.ts +2 -0
  324. package/lib/models/date/default-year-range.model.d.ts +6 -0
  325. package/lib/models/date/index.d.ts +1 -0
  326. package/lib/models/design/conditional-processing-resources.model.d.ts +7 -0
  327. package/lib/models/design/design-mapper/boolean-item-template-mapper.d.ts +10 -0
  328. package/lib/models/design/design-mapper/bulleted-list-item-template-mapper.d.ts +11 -0
  329. package/lib/models/design/design-mapper/checkbox-item-template-mapper.d.ts +10 -0
  330. package/lib/models/design/design-mapper/date-item-template-mapper.d.ts +11 -0
  331. package/lib/models/design/design-mapper/dropdown-item-template-mapper.d.ts +11 -0
  332. package/lib/models/design/design-mapper/file-upload-item-template-mapper.d.ts +11 -0
  333. package/lib/models/design/design-mapper/i18n-text-response-item-template-mapper.d.ts +11 -0
  334. package/lib/models/design/design-mapper/index.d.ts +26 -0
  335. package/lib/models/design/design-mapper/mapper-classes.model.d.ts +1 -0
  336. package/lib/models/design/design-mapper/mapping-logic-core.d.ts +19 -0
  337. package/lib/models/design/design-mapper/multiple-choice-item-template-mapper.d.ts +10 -0
  338. package/lib/models/design/design-mapper/numbered-list-item-template-mapper.d.ts +11 -0
  339. package/lib/models/design/design-mapper/numeric-response-item-template-mapper.d.ts +11 -0
  340. package/lib/models/design/design-mapper/offset-date-range-template-mapper.d.ts +11 -0
  341. package/lib/models/design/design-mapper/option-group-item-mapper.d.ts +13 -0
  342. package/lib/models/design/design-mapper/option-item-mapper.d.ts +13 -0
  343. package/lib/models/design/design-mapper/option-selector-mapper.d.ts +29 -0
  344. package/lib/models/design/design-mapper/repeatable-item-template-mapper.d.ts +11 -0
  345. package/lib/models/design/design-mapper/template-item-group-mapper.d.ts +12 -0
  346. package/lib/models/design/design-mapper/template-item-mapper.d.ts +13 -0
  347. package/lib/models/design/design-mapper/template-mapper.d.ts +13 -0
  348. package/lib/models/design/design-mapper/template-section-mapper.d.ts +12 -0
  349. package/lib/models/design/design-mapper/text-item-template-mapper.d.ts +11 -0
  350. package/lib/models/design/design-mapper/text-response-item-template-mapper.d.ts +11 -0
  351. package/lib/models/design/design-mapper/time-item-template-mapper.d.ts +11 -0
  352. package/lib/models/design/design-mapper/title-item-template-mapper.d.ts +11 -0
  353. package/lib/models/design/design-mapper/year-quarter-range-template-mapper.d.ts +11 -0
  354. package/lib/models/design/enumerations/date-enumeration.model.d.ts +8 -0
  355. package/lib/models/design/enumerations/index.d.ts +1 -0
  356. package/lib/models/design/index.d.ts +8 -0
  357. package/lib/models/design/option-group-item-section-display-name-map.model.d.ts +3 -0
  358. package/lib/models/design/option-item-section-display-name-map.model.d.ts +3 -0
  359. package/lib/models/design/potential-designs.model.d.ts +27 -0
  360. package/lib/models/design/template-design-constants.model.d.ts +47 -0
  361. package/lib/models/design/template-design-context.model.d.ts +3 -0
  362. package/lib/models/i18n-constants.model.d.ts +183 -0
  363. package/lib/models/index.d.ts +4 -0
  364. package/lib/pipes/get-i18n-string-value-from-locale.pipe.d.ts +14 -0
  365. package/lib/pipes/get-i18n-strings-value-from-locale.pipe.d.ts +14 -0
  366. package/lib/pipes/index.d.ts +5 -0
  367. package/lib/pipes/instance-of-template-item-group-impl.pipe.d.ts +14 -0
  368. package/lib/pipes/instance-of-template-item.pipe.d.ts +13 -0
  369. package/lib/pipes/instance-of-template.pipe.d.ts +13 -0
  370. package/lib/services/api.service.d.ts +4 -2
  371. package/lib/services/dialog.service.d.ts +3 -3
  372. package/lib/services/index.d.ts +1 -0
  373. package/lib/services/template-transformation.service.d.ts +14 -0
  374. package/lib/state/design/index.d.ts +1 -0
  375. package/lib/state/design/template-design.facade.d.ts +31 -0
  376. package/lib/state/form/index.d.ts +7 -0
  377. package/lib/state/form/template-form-api.actions.d.ts +13 -0
  378. package/lib/state/form/template-form.actions.d.ts +12 -0
  379. package/lib/state/form/template-form.effects.d.ts +23 -0
  380. package/lib/state/form/template-form.facade.d.ts +16 -0
  381. package/lib/state/form/template-form.reducer.d.ts +11 -0
  382. package/lib/state/form/template-form.selectors.d.ts +6 -0
  383. package/lib/state/index.d.ts +2 -0
  384. package/lib/utilities/design-conditionals-util.d.ts +13 -0
  385. package/lib/utilities/form-option-design-util.d.ts +12 -0
  386. package/lib/utilities/generate-form-steps.d.ts +2 -2
  387. package/lib/utilities/index.d.ts +5 -1
  388. package/lib/utilities/merge-template-util.d.ts +11 -0
  389. package/lib/utilities/new-base-designs.util.d.ts +25 -0
  390. package/lib/utilities/serializer-util.d.ts +1 -0
  391. package/lib/utilities/template-design-core-util.d.ts +10 -0
  392. package/lib/utilities/template-design-util.d.ts +14 -0
  393. package/package.json +5 -2
  394. package/public-api.d.ts +1 -0
@@ -0,0 +1,8 @@
1
+ import { DecimalAnswerItemTemplate, NumberOption } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateOptionItemComponent } from '../option/template-option-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfDecimalAnswerItemTemplateComponent extends MtnaWfBaseTemplateOptionItemComponent<NumberOption, DecimalAnswerItemTemplate> {
5
+ _noInformationText: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfDecimalAnswerItemTemplateComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfDecimalAnswerItemTemplateComponent, "mtna-wf-decimal-answer-item-template", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./decimal-answer-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/form-field";
5
+ import * as i4 from "@angular/material/list";
6
+ import * as i5 from "@angular/material/input";
7
+ import * as i6 from "../../../pipes/get-auto-complete.pipe";
8
+ import * as i7 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
9
+ export declare class MtnaWfDecimalAnswerItemTemplateModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfDecimalAnswerItemTemplateModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfDecimalAnswerItemTemplateModule, [typeof i1.MtnaWfDecimalAnswerItemTemplateComponent], [typeof i2.CommonModule, typeof i3.MatFormFieldModule, typeof i4.MatListModule, typeof i5.MatInputModule, typeof i6.MtnaWfGetAutoCompletePipeModule, typeof i7.GetI18nStringValueFromLocalePipeModule], [typeof i1.MtnaWfDecimalAnswerItemTemplateComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfDecimalAnswerItemTemplateModule>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export * from './decimal-answer-item.component';
2
+ export * from './decimal-answer-item.module';
@@ -0,0 +1,35 @@
1
+ @use 'sass:map';
2
+ @use '~@angular/material' as mat;
3
+
4
+ @mixin color($theme) {
5
+ $config: mat.get-color-config($theme);
6
+ $foreground: map.get($config, foreground);
7
+ $background: map.get($config, background);
8
+
9
+ .cdk-overlay-container .cdk-overlay-pane {
10
+ .mtna-wf-dropdown-item-template__select-panel {
11
+ .mat-option {
12
+ &:focus,
13
+ &:hover,
14
+ &.mat-active {
15
+ background-color: mat.get-color-from-palette($background, focused-button);
16
+ }
17
+ }
18
+ }
19
+ }
20
+ }
21
+
22
+ @mixin typography($theme) {
23
+ }
24
+
25
+ @mixin theme($theme) {
26
+ $config: mat.get-color-config($theme);
27
+ @if $config != null {
28
+ @include color($theme);
29
+ }
30
+
31
+ $typography-config: mat.get-typography-config($theme);
32
+ @if $typography-config != null {
33
+ @include typography($theme);
34
+ }
35
+ }
@@ -0,0 +1,7 @@
1
+ import { DropdownItemTemplate, StringOption } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateOptionGroupItemComponent } from '../option/template-option-group-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfDropdownItemTemplateComponent extends MtnaWfBaseTemplateOptionGroupItemComponent<StringOption, DropdownItemTemplate> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfDropdownItemTemplateComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfDropdownItemTemplateComponent, "mtna-wf-dropdown-item-template", never, {}, {}, never, never>;
7
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/form-field";
5
+ import * as i4 from "@angular/material/icon";
6
+ import * as i5 from "@angular/material/list";
7
+ import * as i6 from "@angular/material/select";
8
+ import * as i7 from "../../../pipes/get-list-icon.pipe";
9
+ import * as i8 from "../../../pipes/get-selected-option.pipe";
10
+ import * as i9 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
11
+ export declare class MtnaWfDropdownItemTemplateModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfDropdownItemTemplateModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfDropdownItemTemplateModule, [typeof i1.MtnaWfDropdownItemTemplateComponent], [typeof i2.CommonModule, typeof i3.MatFormFieldModule, typeof i4.MatIconModule, typeof i5.MatListModule, typeof i6.MatSelectModule, typeof i7.MtnaWfGetListIconPipeModule, typeof i8.MtnaWfGetSelectedOptionNamePipeModule, typeof i9.GetI18nStringValueFromLocalePipeModule], [typeof i1.MtnaWfDropdownItemTemplateComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfDropdownItemTemplateModule>;
15
+ }
@@ -0,0 +1,2 @@
1
+ export * from './dropdown-item.component';
2
+ export * from './dropdown-item.module';
@@ -0,0 +1,9 @@
1
+ import { FileUploadItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemComponent } from '../base/base-template-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfFileUploadItemTemplateComponent extends MtnaWfBaseTemplateItemComponent<FileUploadItemTemplate> {
5
+ loading: boolean;
6
+ _fileUploadButtonText: string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFileUploadItemTemplateComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFileUploadItemTemplateComponent, "mtna-wf-file-upload-item-template", never, {}, {}, never, never>;
9
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./file-upload-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/icon";
6
+ import * as i5 from "@mtna/file-manager-angular";
7
+ import * as i6 from "@angular/material/list";
8
+ import * as i7 from "@angular/material/progress-spinner";
9
+ export declare class MtnaWfFileUploadItemTemplateModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFileUploadItemTemplateModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFileUploadItemTemplateModule, [typeof i1.MtnaWfFileUploadItemTemplateComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.MatIconModule, typeof i5.MtnaFileDownloadModule, typeof i5.MtnaFileUploadModule, typeof i6.MatListModule, typeof i7.MatProgressSpinnerModule], [typeof i1.MtnaWfFileUploadItemTemplateComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfFileUploadItemTemplateModule>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export * from './file-upload-item.component';
2
+ export * from './file-upload-item.module';
@@ -0,0 +1,13 @@
1
+ import { MtnaLocaleId } from '@mtna/core-i18n-angular';
2
+ import { InternationalizedParagraphAnswerItemTemplate } from '@mtna/web-form-ts';
3
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
4
+ import { InternationalizedString } from '@mtna/core-i18n-ts';
5
+ import * as i0 from "@angular/core";
6
+ export declare class MtnaWfI18nParagraphAnswerItemTemplateComponent extends MtnaWfBaseTemplateItemWithListComponent<InternationalizedParagraphAnswerItemTemplate> {
7
+ _noInformationText: string;
8
+ languageIds: MtnaLocaleId[];
9
+ getLabelDisplay(label: InternationalizedString[], language: string): string;
10
+ getLanguageDisplay(language: string): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfI18nParagraphAnswerItemTemplateComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfI18nParagraphAnswerItemTemplateComponent, "mtna-wf-i18n-paragraph-answer-item-template", never, {}, {}, never, never>;
13
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./i18n-paragraph-answer-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
5
+ import * as i4 from "@angular/material/form-field";
6
+ import * as i5 from "@angular/material/input";
7
+ import * as i6 from "@angular/material/list";
8
+ import * as i7 from "@angular/material/icon";
9
+ import * as i8 from "../../../pipes/get-list-icon.pipe";
10
+ export declare class MtnaWfI18nParagraphAnswerItemTemplateModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfI18nParagraphAnswerItemTemplateModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfI18nParagraphAnswerItemTemplateModule, [typeof i1.MtnaWfI18nParagraphAnswerItemTemplateComponent], [typeof i2.CommonModule, typeof i3.GetI18nStringValueFromLocalePipeModule, typeof i4.MatFormFieldModule, typeof i5.MatInputModule, typeof i6.MatListModule, typeof i7.MatIconModule, typeof i8.MtnaWfGetListIconPipeModule], [typeof i1.MtnaWfI18nParagraphAnswerItemTemplateComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfI18nParagraphAnswerItemTemplateModule>;
14
+ }
@@ -0,0 +1,2 @@
1
+ export * from './i18n-paragraph-answer-item.component';
2
+ export * from './i18n-paragraph-answer-item.module';
@@ -0,0 +1,11 @@
1
+ import { InternationalizedShortAnswerItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
3
+ import { InternationalizedString } from '@mtna/core-i18n-ts';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MtnaWfI18nShortAnswerItemTemplateComponent extends MtnaWfBaseTemplateItemWithListComponent<InternationalizedShortAnswerItemTemplate> {
6
+ _noInformationText: string;
7
+ getLabelDisplay(label: InternationalizedString[], language: string): string;
8
+ getLanguageDisplay(language: string): string;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfI18nShortAnswerItemTemplateComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfI18nShortAnswerItemTemplateComponent, "mtna-wf-i18n-short-answer-item-template", never, {}, {}, never, never>;
11
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./i18n-short-answer-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
5
+ import * as i4 from "@angular/material/form-field";
6
+ import * as i5 from "@angular/material/input";
7
+ import * as i6 from "@angular/material/list";
8
+ import * as i7 from "@angular/material/icon";
9
+ import * as i8 from "../../../pipes/get-auto-complete.pipe";
10
+ import * as i9 from "../../../pipes/get-list-icon.pipe";
11
+ export declare class MtnaWfI18nShortAnswerItemTemplateModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfI18nShortAnswerItemTemplateModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfI18nShortAnswerItemTemplateModule, [typeof i1.MtnaWfI18nShortAnswerItemTemplateComponent], [typeof i2.CommonModule, typeof i3.GetI18nStringValueFromLocalePipeModule, typeof i4.MatFormFieldModule, typeof i5.MatInputModule, typeof i6.MatListModule, typeof i7.MatIconModule, typeof i8.MtnaWfGetAutoCompletePipeModule, typeof i9.MtnaWfGetListIconPipeModule], [typeof i1.MtnaWfI18nShortAnswerItemTemplateComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfI18nShortAnswerItemTemplateModule>;
15
+ }
@@ -0,0 +1,2 @@
1
+ export * from './i18n-short-answer-item.component';
2
+ export * from './i18n-short-answer-item.module';
@@ -0,0 +1,28 @@
1
+ export * from './base';
2
+ export * from './boolean-item';
3
+ export * from './checkbox-item';
4
+ export * from './date';
5
+ export * from './date-item';
6
+ export * from './decimal-answer-item';
7
+ export * from './dropdown-item';
8
+ export * from './file-upload-item';
9
+ export * from './i18n-paragraph-answer-item';
10
+ export * from './i18n-short-answer-item';
11
+ export * from './multiple-choice-item';
12
+ export * from './ordered-list-item';
13
+ export * from './paragraph-answer-item';
14
+ export * from './repeatable-item';
15
+ export * from './repeatable-item-container';
16
+ export * from './short-answer-item';
17
+ export * from './template';
18
+ export * from './template-display-viewer';
19
+ export * from './template-item';
20
+ export * from './template-item-component-provider';
21
+ export * from './template-item-group';
22
+ export * from './template-item-header';
23
+ export * from './template-item-injector';
24
+ export * from './template-section';
25
+ export * from './text-item';
26
+ export * from './title-item';
27
+ export * from './unordered-list-item';
28
+ export * from './whole-number-answer-item';
@@ -0,0 +1 @@
1
+ export * from './step-aware.model';
@@ -0,0 +1,5 @@
1
+ import { FormStep } from '../../../models';
2
+ export interface StepAware {
3
+ step: FormStep | null | undefined;
4
+ }
5
+ export declare function instanceOfStepAware(something: unknown): something is StepAware;
@@ -0,0 +1,2 @@
1
+ export * from './multiple-choice-item.component';
2
+ export * from './multiple-choice-item.module';
@@ -0,0 +1,7 @@
1
+ import { MultipleChoiceItemTemplate, StringOption } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateOptionGroupItemComponent } from '../option/template-option-group-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfMultipleChoiceItemTemplateComponent extends MtnaWfBaseTemplateOptionGroupItemComponent<StringOption, MultipleChoiceItemTemplate> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfMultipleChoiceItemTemplateComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfMultipleChoiceItemTemplateComponent, "mtna-wf-multiple-choice-item-template", never, {}, {}, never, never>;
7
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./multiple-choice-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/radio";
5
+ import * as i4 from "../template-item/template-item.module";
6
+ import * as i5 from "@angular/material/form-field";
7
+ export declare class MtnaWfMultipleChoiceItemTemplateModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfMultipleChoiceItemTemplateModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfMultipleChoiceItemTemplateModule, [typeof i1.MtnaWfMultipleChoiceItemTemplateComponent], [typeof i2.CommonModule, typeof i3.MatRadioModule, typeof i4.MtnaWfTemplateItemModule, typeof i5.MatFormFieldModule], [typeof i1.MtnaWfMultipleChoiceItemTemplateComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfMultipleChoiceItemTemplateModule>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { Option, TemplateItem, TemplateOptionGroupItem } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateOptionItemComponent } from './template-option-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class MtnaWfBaseTemplateOptionGroupItemComponent<O extends Option<unknown>, T extends TemplateOptionGroupItem<O>> extends MtnaWfBaseTemplateOptionItemComponent<O, T> {
5
+ _trackByInstanceId(index: number, item: TemplateItem): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfBaseTemplateOptionGroupItemComponent<any, any>, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfBaseTemplateOptionGroupItemComponent<any, any>, "ng-component", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { FormOptionSelector, Option, TemplateItem } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class MtnaWfBaseTemplateOptionItemComponent<O extends Option<unknown>, T extends TemplateItem> extends MtnaWfBaseTemplateItemWithListComponent<T> {
5
+ _trackByTemplateId(index: number, option: FormOptionSelector<O>): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfBaseTemplateOptionItemComponent<any, any>, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfBaseTemplateOptionItemComponent<any, any>, "ng-component", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './ordered-list-item.component';
2
+ export * from './ordered-list-item.module';
@@ -0,0 +1,7 @@
1
+ import { NumberedListItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemComponent } from '../base/base-template-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfOrderedListItemTemplateComponent extends MtnaWfBaseTemplateItemComponent<NumberedListItemTemplate> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfOrderedListItemTemplateComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfOrderedListItemTemplateComponent, "mtna-wf-ordered-list-item-template", never, {}, {}, never, never>;
7
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./ordered-list-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../pipes/sanitize-html.pipe";
5
+ import * as i4 from "../../../pipes/get-i18n-strings-value-from-locale.pipe";
6
+ export declare class MtnaWfOrderedListItemTemplateModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfOrderedListItemTemplateModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfOrderedListItemTemplateModule, [typeof i1.MtnaWfOrderedListItemTemplateComponent], [typeof i2.CommonModule, typeof i3.MtnaWfSanitizeHtmlPipeModule, typeof i4.GetI18nStringsValueFromLocalePipeModule], [typeof i1.MtnaWfOrderedListItemTemplateComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfOrderedListItemTemplateModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './paragraph-answer-item.component';
2
+ export * from './paragraph-answer-item.module';
@@ -0,0 +1,8 @@
1
+ import { ParagraphAnswerItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfParagraphAnswerItemTemplateComponent extends MtnaWfBaseTemplateItemWithListComponent<ParagraphAnswerItemTemplate> {
5
+ _noInformationText: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfParagraphAnswerItemTemplateComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfParagraphAnswerItemTemplateComponent, "mtna-wf-paragraph-answer-item-template", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./paragraph-answer-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
5
+ import * as i4 from "@angular/material/form-field";
6
+ import * as i5 from "@angular/material/input";
7
+ import * as i6 from "@angular/material/list";
8
+ import * as i7 from "../../../pipes/get-list-icon.pipe";
9
+ export declare class MtnaWfParagraphAnswerItemTemplateModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfParagraphAnswerItemTemplateModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfParagraphAnswerItemTemplateModule, [typeof i1.MtnaWfParagraphAnswerItemTemplateComponent], [typeof i2.CommonModule, typeof i3.GetI18nStringValueFromLocalePipeModule, typeof i4.MatFormFieldModule, typeof i5.MatInputModule, typeof i6.MatListModule, typeof i7.MtnaWfGetListIconPipeModule], [typeof i1.MtnaWfParagraphAnswerItemTemplateComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfParagraphAnswerItemTemplateModule>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export * from './repeatable-item.component';
2
+ export * from './repeatable-item.module';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MtnaWfRepeatableItemTemplateComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfRepeatableItemTemplateComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfRepeatableItemTemplateComponent, "mtna-wf-repeatable-item-template", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./repeatable-item.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class MtnaWfRepeatableItemTemplateModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfRepeatableItemTemplateModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfRepeatableItemTemplateModule, [typeof i1.MtnaWfRepeatableItemTemplateComponent], [typeof i2.CommonModule], [typeof i1.MtnaWfRepeatableItemTemplateComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfRepeatableItemTemplateModule>;
8
+ }
@@ -0,0 +1,28 @@
1
+ @use 'sass:map';
2
+ @use '~@angular/material' as mat;
3
+
4
+ @mixin color($theme) {
5
+ $config: mat.get-color-config($theme);
6
+ $foreground: map.get($config, foreground);
7
+
8
+ mtna-wf-repeatable-item-template-container {
9
+ mtna-wf-repeatable-item-template {
10
+ border-color: mat.get-color-from-palette($foreground, divider);
11
+ }
12
+ }
13
+ }
14
+
15
+ @mixin typography($theme) {
16
+ }
17
+
18
+ @mixin theme($theme) {
19
+ $config: mat.get-color-config($theme);
20
+ @if $config != null {
21
+ @include color($theme);
22
+ }
23
+
24
+ $typography-config: mat.get-typography-config($theme);
25
+ @if $typography-config != null {
26
+ @include typography($theme);
27
+ }
28
+ }
@@ -0,0 +1,2 @@
1
+ export * from './repeatable-item-container.component';
2
+ export * from './repeatable-item-container.module';
@@ -0,0 +1,8 @@
1
+ import { RepeatableItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfRepeatableItemTemplateContainerComponent extends MtnaWfBaseTemplateItemWithListComponent<RepeatableItemTemplate> {
5
+ _addText: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfRepeatableItemTemplateContainerComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfRepeatableItemTemplateContainerComponent, "mtna-wf-repeatable-item-template-container", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./repeatable-item-container.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../repeatable-item/repeatable-item.module";
5
+ import * as i4 from "../template-item/template-item.module";
6
+ import * as i5 from "@angular/material/button";
7
+ import * as i6 from "@angular/material/icon";
8
+ import * as i7 from "@angular/material/tooltip";
9
+ import * as i8 from "@mtna/core-angular";
10
+ import * as i9 from "@angular/material/card";
11
+ export declare class MtnaWfRepeatableItemTemplateContainerModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfRepeatableItemTemplateContainerModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfRepeatableItemTemplateContainerModule, [typeof i1.MtnaWfRepeatableItemTemplateContainerComponent], [typeof i2.CommonModule, typeof i3.MtnaWfRepeatableItemTemplateModule, typeof i4.MtnaWfTemplateItemModule, typeof i5.MatButtonModule, typeof i6.MatIconModule, typeof i7.MatTooltipModule, typeof i8.MtnaTrackByPropertyPipeModule, typeof i9.MatCardModule], [typeof i1.MtnaWfRepeatableItemTemplateContainerComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfRepeatableItemTemplateContainerModule>;
15
+ }
@@ -0,0 +1,2 @@
1
+ export * from './short-answer-item.component';
2
+ export * from './short-answer-item.module';
@@ -0,0 +1,8 @@
1
+ import { ShortAnswerItemTemplate } from '@mtna/web-form-ts';
2
+ import { MtnaWfBaseTemplateItemWithListComponent } from '../base/base-template-item-with-list.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MtnaWfShortAnswerItemTemplateComponent extends MtnaWfBaseTemplateItemWithListComponent<ShortAnswerItemTemplate> {
5
+ _noInformationText: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfShortAnswerItemTemplateComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfShortAnswerItemTemplateComponent, "mtna-wf-short-answer-item-template", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./short-answer-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../pipes/get-i18n-string-value-from-locale.pipe";
5
+ import * as i4 from "@angular/material/form-field";
6
+ import * as i5 from "@angular/material/input";
7
+ import * as i6 from "@angular/material/list";
8
+ import * as i7 from "../../../pipes/get-list-icon.pipe";
9
+ export declare class MtnaWfShortAnswerItemTemplateModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfShortAnswerItemTemplateModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfShortAnswerItemTemplateModule, [typeof i1.MtnaWfShortAnswerItemTemplateComponent], [typeof i2.CommonModule, typeof i3.GetI18nStringValueFromLocalePipeModule, typeof i4.MatFormFieldModule, typeof i5.MatInputModule, typeof i6.MatListModule, typeof i7.MtnaWfGetListIconPipeModule], [typeof i1.MtnaWfShortAnswerItemTemplateComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfShortAnswerItemTemplateModule>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export * from './template.module';
2
+ export * from './template.component';
@@ -0,0 +1,35 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormStep } from '../../../models';
3
+ import { Template } from '@mtna/web-form-ts';
4
+ import { MtnaLocaleIds } from '@mtna/core-i18n-angular';
5
+ import { MtnaScrollService } from '@mtna/core-angular';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MtnaWfTemplateComponent {
8
+ private scrollService;
9
+ get displayLocale(): typeof MtnaLocaleIds.type;
10
+ set displayLocale(displayLocale: typeof MtnaLocaleIds.type);
11
+ private _displayLocale;
12
+ get isCompact(): boolean;
13
+ set isCompact(value: boolean);
14
+ private _isCompact;
15
+ get highlightId(): string | null | undefined;
16
+ set highlightId(highlightId: string | null | undefined);
17
+ private _highlightId;
18
+ set steps(newSteps: Array<FormStep> | null | undefined);
19
+ get template(): Template | null | undefined;
20
+ set template(template: Template | null | undefined);
21
+ private _template;
22
+ _steps: {
23
+ [id: string]: FormStep;
24
+ } | undefined;
25
+ /**
26
+ * The container element that will be scrolled to highlight the element with the provided highlightId.
27
+ * This is used to differentiate from the document/window elements, so that only the view is scrolled.
28
+ * Primarily used for template designer functionality.
29
+ */
30
+ templateContainer: ElementRef | undefined;
31
+ constructor(scrollService: MtnaScrollService);
32
+ scrollToElement(highlightId: string | null | undefined): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfTemplateComponent, "mtna-wf-template", never, { "displayLocale": "displayLocale"; "isCompact": "isCompact"; "highlightId": "highlightId"; "steps": "steps"; "template": "template"; }, {}, never, never>;
35
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./template.component";
3
+ import * as i2 from "@angular/cdk/a11y";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/flex-layout";
6
+ import * as i5 from "@angular/material-moment-adapter";
7
+ import * as i6 from "@mtna/core-angular";
8
+ import * as i7 from "../template-item/template-item.module";
9
+ import * as i8 from "@angular/forms";
10
+ export declare class MtnaWfTemplateModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfTemplateModule, [typeof i1.MtnaWfTemplateComponent], [typeof i2.A11yModule, typeof i3.CommonModule, typeof i4.FlexLayoutModule, typeof i5.MatMomentDateModule, typeof i6.MtnaHighlightModule, typeof i7.MtnaWfTemplateItemModule, typeof i8.ReactiveFormsModule], [typeof i1.MtnaWfTemplateComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfTemplateModule>;
14
+ }
@@ -0,0 +1,2 @@
1
+ export * from './template-display-viewer.component';
2
+ export * from './template-display-viewer.module';
@@ -0,0 +1,25 @@
1
+ import { DesignFacade } from '@mtna/designer-angular';
2
+ import { FormOptionSelector, Option, Template, TemplateItem } from '@mtna/web-form-ts';
3
+ import { FormStep } from '../../../models';
4
+ import { BehaviorSubject } from 'rxjs';
5
+ import { TemplateFormFacade } from '../../../state';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MtnaWfTemplateDisplayViewerComponent {
8
+ private designFacade;
9
+ private templateFormFacade;
10
+ contextSelected$: BehaviorSubject<import("@mtna/designer-ts").Context | undefined>;
11
+ focusedDesignId$: BehaviorSubject<string | undefined>;
12
+ modifiedModel$: import("rxjs").Observable<TemplateItem | Template | FormOptionSelector<Option<unknown>> | undefined>;
13
+ previewLanguage$: BehaviorSubject<"en" | "fr" | "de" | "it" | undefined>;
14
+ loading$: import("rxjs").Observable<boolean>;
15
+ templateForm$: import("rxjs").Observable<import("@mtna/web-form-ts").Form | undefined>;
16
+ templateFormItem$: import("rxjs").Observable<import("@mtna/web-form-ts").FormItem | undefined>;
17
+ typeLoaded$: import("rxjs").Observable<"form" | "formItem" | undefined>;
18
+ formSteps$: BehaviorSubject<FormStep[] | null | undefined>;
19
+ retryTrigger$: BehaviorSubject<void>;
20
+ constructor(designFacade: DesignFacade<Template | TemplateItem | FormOptionSelector<Option<unknown>>>, templateFormFacade: TemplateFormFacade);
21
+ context_template: import("@mtna/designer-ts").Context;
22
+ context_form: import("@mtna/designer-ts").Context;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateDisplayViewerComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfTemplateDisplayViewerComponent, "mtna-wf-template-display-viewer", never, {}, {}, never, never>;
25
+ }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./template-display-viewer.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/flex-layout";
5
+ import * as i4 from "@angular/material/button";
6
+ import * as i5 from "@angular/material/icon";
7
+ import * as i6 from "@angular/material/progress-spinner";
8
+ import * as i7 from "../../form/form.module";
9
+ import * as i8 from "../template/template.module";
10
+ import * as i9 from "../../../pipes/instance-of-template-item.pipe";
11
+ import * as i10 from "../template-item/template-item.module";
12
+ import * as i11 from "../../../pipes/instance-of-template.pipe";
13
+ export declare class MtnaWfTemplateDisplayViewerModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateDisplayViewerModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfTemplateDisplayViewerModule, [typeof i1.MtnaWfTemplateDisplayViewerComponent], [typeof i2.CommonModule, typeof i3.FlexLayoutModule, typeof i4.MatButtonModule, typeof i5.MatIconModule, typeof i6.MatProgressSpinnerModule, typeof i7.MtnaFormModule, typeof i8.MtnaWfTemplateModule, typeof i9.MtnaWfInstanceOfTemplateItemPipeModule, typeof i10.MtnaWfTemplateItemModule, typeof i11.MtnaWfInstanceOfTemplateImplPipeModule], [typeof i1.MtnaWfTemplateDisplayViewerComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfTemplateDisplayViewerModule>;
17
+ }
@@ -0,0 +1,2 @@
1
+ export * from './template-item.component';
2
+ export * from './template-item.module';
@@ -0,0 +1,29 @@
1
+ import { BooleanInput } from '@angular/cdk/coercion';
2
+ import { ThemePalette } from '@angular/material/core';
3
+ import { MtnaLocaleIds } from '@mtna/core-i18n-angular';
4
+ import { Condition, TemplateItem } from '@mtna/web-form-ts';
5
+ import { FormStep } from '../../../models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MtnaWfTemplateItemComponent {
8
+ static ngAcceptInputType_inList: BooleanInput;
9
+ static ngAcceptInputType_inListItems: BooleanInput;
10
+ get displayLocale(): typeof MtnaLocaleIds.type;
11
+ set displayLocale(displayLocale: typeof MtnaLocaleIds.type);
12
+ private _displayLocale;
13
+ get inList(): boolean;
14
+ set inList(value: boolean);
15
+ private _inList;
16
+ get isCompact(): boolean;
17
+ set isCompact(value: boolean);
18
+ private _isCompact;
19
+ get step(): FormStep | null | undefined;
20
+ set step(step: FormStep | null | undefined);
21
+ private _step;
22
+ get template(): TemplateItem;
23
+ set template(template: TemplateItem);
24
+ protected _template: TemplateItem;
25
+ condition: Condition | undefined;
26
+ color: ThemePalette;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateItemComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfTemplateItemComponent, "mtna-wf-template-item", never, { "displayLocale": "displayLocale"; "inList": "inList"; "isCompact": "isCompact"; "step": "step"; "template": "template"; "color": "color"; }, {}, never, never>;
29
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./template-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../template-item-injector/template-item-injector.module";
5
+ import * as i4 from "@mtna/pojo-social-angular";
6
+ import * as i5 from "../template-item-header/template-item-header.module";
7
+ export declare class MtnaWfTemplateItemModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfTemplateItemModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfTemplateItemModule, [typeof i1.MtnaWfTemplateItemComponent], [typeof i2.CommonModule, typeof i3.MtnaWfTemplateItemInjectorModule, typeof i4.MtnaAnnotationsIndicatorModule, typeof i5.MtnaWfTemplateItemHeaderModule], [typeof i1.MtnaWfTemplateItemComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfTemplateItemModule>;
11
+ }
@@ -0,0 +1,2 @@
1
+ export * from './template-item-component-provider';
2
+ export * from './template-item-injected-components';