ax-common-ui-lib 1.0.0-beta.0

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 (1016) hide show
  1. package/README.md +24 -0
  2. package/ax-common-ui-lib.d.ts +5 -0
  3. package/esm2020/ax-common-ui-lib.mjs +5 -0
  4. package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
  5. package/esm2020/lib/app-list/app-list.component.mjs +421 -0
  6. package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
  7. package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
  8. package/esm2020/lib/ax-common-ui-lib.component.mjs +26 -0
  9. package/esm2020/lib/ax-common-ui-lib.module.mjs +147 -0
  10. package/esm2020/lib/ax-common-ui-lib.service.mjs +14 -0
  11. package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
  12. package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
  13. package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
  14. package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
  15. package/esm2020/lib/axo-map/axo-map.mjs +37 -0
  16. package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
  17. package/esm2020/lib/axo-map/public-api.mjs +7 -0
  18. package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
  19. package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
  20. package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
  21. package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
  22. package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
  23. package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
  24. package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
  25. package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
  26. package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
  27. package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
  28. package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
  29. package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
  30. package/esm2020/lib/axo-utils/constants.mjs +3 -0
  31. package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
  32. package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
  33. package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
  34. package/esm2020/lib/axo-utils/public-api.mjs +2 -0
  35. package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
  36. package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
  37. package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
  38. package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
  39. package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
  40. package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
  41. package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
  42. package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
  43. package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
  44. package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
  45. package/esm2020/lib/code-editor/public-api.mjs +3 -0
  46. package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
  47. package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
  48. package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
  49. package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
  50. package/esm2020/lib/common-dto/form-dto.mjs +48 -0
  51. package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
  52. package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
  53. package/esm2020/lib/common-utils/entity-base.mjs +12 -0
  54. package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
  55. package/esm2020/lib/common-utils/report.mjs +45 -0
  56. package/esm2020/lib/common.service.mjs +78 -0
  57. package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
  58. package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
  59. package/esm2020/lib/core/auth/auth.service.mjs +146 -0
  60. package/esm2020/lib/core/core.module.mjs +37 -0
  61. package/esm2020/lib/core/icons/icons.module.mjs +255 -0
  62. package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
  63. package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
  64. package/esm2020/lib/core/user/axo-user.mjs +46 -0
  65. package/esm2020/lib/core/user/user-data.service.mjs +46 -0
  66. package/esm2020/lib/core/user/user.service.mjs +87 -0
  67. package/esm2020/lib/core/user/user.types.mjs +2 -0
  68. package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
  69. package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
  70. package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
  71. package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
  72. package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
  73. package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
  74. package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
  75. package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
  76. package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
  77. package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
  78. package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
  79. package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
  80. package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
  81. package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
  82. package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
  83. package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
  84. package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
  85. package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
  86. package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
  87. package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
  88. package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
  89. package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
  90. package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
  91. package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
  92. package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
  93. package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
  94. package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
  95. package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
  96. package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
  97. package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
  98. package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
  99. package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
  100. package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
  101. package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
  102. package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
  103. package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
  104. package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
  105. package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
  106. package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
  107. package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
  108. package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
  109. package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
  110. package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
  111. package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
  112. package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
  113. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
  114. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
  115. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
  116. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
  117. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
  118. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
  119. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
  120. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
  121. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
  122. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
  123. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
  124. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
  125. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
  126. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
  127. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
  128. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
  129. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
  130. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
  131. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
  132. package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
  133. package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
  134. package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
  135. package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
  136. package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
  137. package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
  138. package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
  139. package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
  140. package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
  141. package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
  142. package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
  143. package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
  144. package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
  145. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
  146. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
  147. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
  148. package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
  149. package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
  150. package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
  151. package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
  152. package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
  153. package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
  154. package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
  155. package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
  156. package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
  157. package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
  158. package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
  159. package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
  160. package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
  161. package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
  162. package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
  163. package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
  164. package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
  165. package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
  166. package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
  167. package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
  168. package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
  169. package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
  170. package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
  171. package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
  172. package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
  173. package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
  174. package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
  175. package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
  176. package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
  177. package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
  178. package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
  179. package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
  180. package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
  181. package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
  182. package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
  183. package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
  184. package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
  185. package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
  186. package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
  187. package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
  188. package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
  189. package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
  190. package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
  191. package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
  192. package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
  193. package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
  194. package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
  195. package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
  196. package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
  197. package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
  198. package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
  199. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
  200. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
  201. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
  202. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
  203. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
  204. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
  205. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
  206. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
  207. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
  208. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
  209. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
  210. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
  211. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
  212. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
  213. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
  214. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
  215. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
  216. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
  217. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
  218. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
  219. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
  220. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
  221. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
  222. package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
  223. package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
  224. package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
  225. package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
  226. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
  227. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
  228. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
  229. package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
  230. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
  231. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
  232. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
  233. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
  234. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
  235. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
  236. package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
  237. package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
  238. package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
  239. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
  240. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
  241. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
  242. package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
  243. package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
  244. package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
  245. package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
  246. package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
  247. package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
  248. package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
  249. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
  250. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
  251. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
  252. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
  253. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
  254. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
  255. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
  256. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
  257. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
  258. package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
  259. package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
  260. package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
  261. package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
  262. package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
  263. package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
  264. package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
  265. package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
  266. package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
  267. package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
  268. package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
  269. package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
  270. package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
  271. package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
  272. package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
  273. package/esm2020/lib/filters/filters.component.mjs +688 -0
  274. package/esm2020/lib/filters/filters.module.mjs +196 -0
  275. package/esm2020/lib/filters/filters.service.mjs +147 -0
  276. package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
  277. package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
  278. package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
  279. package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
  280. package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
  281. package/esm2020/lib/filters/public-api.mjs +15 -0
  282. package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
  283. package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
  284. package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
  285. package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
  286. package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
  287. package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
  288. package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
  289. package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
  290. package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
  291. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
  292. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
  293. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
  294. package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
  295. package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
  296. package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
  297. package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
  298. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
  299. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
  300. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
  301. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
  302. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
  303. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
  304. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
  305. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
  306. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
  307. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
  308. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
  309. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
  310. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
  311. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
  312. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
  313. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
  314. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
  315. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
  316. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
  317. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
  318. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
  319. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
  320. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
  321. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
  322. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
  323. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
  324. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
  325. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
  326. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
  327. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
  328. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
  329. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
  330. package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
  331. package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
  332. package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
  333. package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
  334. package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
  335. package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
  336. package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
  337. package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
  338. package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
  339. package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
  340. package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
  341. package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
  342. package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
  343. package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
  344. package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
  345. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
  346. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
  347. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
  348. package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
  349. package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
  350. package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
  351. package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
  352. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
  353. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
  354. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
  355. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
  356. package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
  357. package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
  358. package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
  359. package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
  360. package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
  361. package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
  362. package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
  363. package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
  364. package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
  365. package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
  366. package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
  367. package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
  368. package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
  369. package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
  370. package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
  371. package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
  372. package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
  373. package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
  374. package/esm2020/lib/form-object/public-api.mjs +3 -0
  375. package/esm2020/lib/form-permission.service.mjs +106 -0
  376. package/esm2020/lib/forms/ax-form.mjs +212 -0
  377. package/esm2020/lib/forms/iform.mjs +2 -0
  378. package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
  379. package/esm2020/lib/forms/page/common/constants.mjs +399 -0
  380. package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
  381. package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
  382. package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
  383. package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
  384. package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
  385. package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
  386. package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
  387. package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
  388. package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
  389. package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
  390. package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
  391. package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
  392. package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
  393. package/esm2020/lib/forms/page/form-object.mjs +17 -0
  394. package/esm2020/lib/forms/page/form-page.mjs +28 -0
  395. package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
  396. package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
  397. package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
  398. package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
  399. package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
  400. package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
  401. package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
  402. package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
  403. package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
  404. package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
  405. package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
  406. package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
  407. package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
  408. package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
  409. package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
  410. package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
  411. package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
  412. package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
  413. package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
  414. package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
  415. package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
  416. package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
  417. package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
  418. package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
  419. package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
  420. package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
  421. package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
  422. package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
  423. package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
  424. package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
  425. package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
  426. package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
  427. package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
  428. package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
  429. package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
  430. package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
  431. package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
  432. package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
  433. package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
  434. package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
  435. package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
  436. package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
  437. package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
  438. package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
  439. package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
  440. package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
  441. package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
  442. package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
  443. package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
  444. package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
  445. package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
  446. package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
  447. package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
  448. package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
  449. package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
  450. package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
  451. package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
  452. package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
  453. package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
  454. package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
  455. package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
  456. package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
  457. package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
  458. package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
  459. package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
  460. package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
  461. package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
  462. package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
  463. package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
  464. package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
  465. package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
  466. package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
  467. package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
  468. package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
  469. package/esm2020/lib/map-dialog/public-api.mjs +6 -0
  470. package/esm2020/lib/reports-container/public-api.mjs +8 -0
  471. package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
  472. package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
  473. package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
  474. package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
  475. package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
  476. package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
  477. package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
  478. package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
  479. package/esm2020/lib/scrollbar/index.mjs +3 -0
  480. package/esm2020/lib/scrollbar/public-api.mjs +3 -0
  481. package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
  482. package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
  483. package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
  484. package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
  485. package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
  486. package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
  487. package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
  488. package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
  489. package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
  490. package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
  491. package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
  492. package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
  493. package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
  494. package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
  495. package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
  496. package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
  497. package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
  498. package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
  499. package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
  500. package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
  501. package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
  502. package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
  503. package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
  504. package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
  505. package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
  506. package/esm2020/lib/shared/shared.module.mjs +51 -0
  507. package/esm2020/public-api.mjs +138 -0
  508. package/fesm2015/ax-common-ui-lib.mjs +56598 -0
  509. package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
  510. package/fesm2020/ax-common-ui-lib.mjs +52373 -0
  511. package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
  512. package/lib/app-list/app-list-dto.d.ts +15 -0
  513. package/lib/app-list/app-list.component.d.ts +62 -0
  514. package/lib/app-list/my-app-list.service.d.ts +69 -0
  515. package/lib/app-list/organization-list-dto.d.ts +15 -0
  516. package/lib/ax-common-ui-lib.component.d.ts +8 -0
  517. package/lib/ax-common-ui-lib.module.d.ts +24 -0
  518. package/lib/ax-common-ui-lib.service.d.ts +6 -0
  519. package/lib/axo-filters/axo-filters.component.d.ts +86 -0
  520. package/lib/axo-filters/axo-filters.module.d.ts +16 -0
  521. package/lib/axo-filters/axo-filters.service.d.ts +36 -0
  522. package/lib/axo-map/axo-map.component.d.ts +9 -0
  523. package/lib/axo-map/axo-map.d.ts +14 -0
  524. package/lib/axo-map/axo-map.module.d.ts +10 -0
  525. package/lib/axo-map/public-api.d.ts +6 -0
  526. package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
  527. package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
  528. package/lib/axo-search-bar/public.api.d.ts +2 -0
  529. package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
  530. package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
  531. package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
  532. package/lib/axo-snack-bar/public-api.d.ts +2 -0
  533. package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
  534. package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
  535. package/lib/axo-state-manager/public-api.d.ts +2 -0
  536. package/lib/axo-utils/axo-utils.d.ts +72 -0
  537. package/lib/axo-utils/axo-utils.module.d.ts +10 -0
  538. package/lib/axo-utils/constants.d.ts +2 -0
  539. package/lib/axo-utils/data-source-types.d.ts +10 -0
  540. package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
  541. package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
  542. package/lib/axo-utils/public-api.d.ts +1 -0
  543. package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
  544. package/lib/axo-utils/search-pipe.d.ts +7 -0
  545. package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
  546. package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
  547. package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
  548. package/lib/code-editor/code-editor-modes.d.ts +9 -0
  549. package/lib/code-editor/code-editor-themes.d.ts +6 -0
  550. package/lib/code-editor/code-editor.component.d.ts +20 -0
  551. package/lib/code-editor/code-editor.module.d.ts +10 -0
  552. package/lib/code-editor/icode-editor-options.d.ts +51 -0
  553. package/lib/code-editor/public-api.d.ts +2 -0
  554. package/lib/common-dto/attributes-dto.d.ts +24 -0
  555. package/lib/common-dto/dashboard-dto.d.ts +10 -0
  556. package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
  557. package/lib/common-dto/elements-dto.d.ts +51 -0
  558. package/lib/common-dto/form-dto.d.ts +17 -0
  559. package/lib/common-lib-configuration.service.d.ts +13 -0
  560. package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
  561. package/lib/common-utils/entity-base.d.ts +10 -0
  562. package/lib/common-utils/iFlatten.d.ts +13 -0
  563. package/lib/common-utils/report.d.ts +26 -0
  564. package/lib/common.service.d.ts +50 -0
  565. package/lib/converters/convert-to-new-service.d.ts +6 -0
  566. package/lib/converters/convert-to-old-service.d.ts +26 -0
  567. package/lib/core/auth/auth.service.d.ts +75 -0
  568. package/lib/core/core.module.d.ts +12 -0
  569. package/lib/core/icons/icons.module.d.ts +14 -0
  570. package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
  571. package/lib/core/transloco/transloco.module.d.ts +7 -0
  572. package/lib/core/user/axo-user.d.ts +9 -0
  573. package/lib/core/user/user-data.service.d.ts +25 -0
  574. package/lib/core/user/user.service.d.ts +45 -0
  575. package/lib/core/user/user.types.d.ts +9 -0
  576. package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
  577. package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
  578. package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
  579. package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
  580. package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
  581. package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
  582. package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
  583. package/lib/dashboard-lib/dashboard.d.ts +14 -0
  584. package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
  585. package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
  586. package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
  587. package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
  588. package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
  589. package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
  590. package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
  591. package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
  592. package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
  593. package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
  594. package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
  595. package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
  596. package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
  597. package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
  598. package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
  599. package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
  600. package/lib/data-view-lib/data-view/location.d.ts +8 -0
  601. package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
  602. package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
  603. package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
  604. package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
  605. package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
  606. package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
  607. package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
  608. package/lib/data-view-lib/data-view/task.d.ts +57 -0
  609. package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
  610. package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
  611. package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
  612. package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
  613. package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
  614. package/lib/data-view-lib/data-view.service.d.ts +94 -0
  615. package/lib/data-view-lib/public-api.d.ts +27 -0
  616. package/lib/directive/adjust-font-size.d.ts +13 -0
  617. package/lib/drill-through/drill-through.component.d.ts +53 -0
  618. package/lib/drill-through/drill-through.module.d.ts +10 -0
  619. package/lib/drill-through/drill-through.resolver.d.ts +30 -0
  620. package/lib/drill-through/drill-through.service.d.ts +100 -0
  621. package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
  622. package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
  623. package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
  624. package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
  625. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
  626. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
  627. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
  628. package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
  629. package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
  630. package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
  631. package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
  632. package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
  633. package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
  634. package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
  635. package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
  636. package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
  637. package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
  638. package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
  639. package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
  640. package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
  641. package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
  642. package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
  643. package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
  644. package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
  645. package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
  646. package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
  647. package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
  648. package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
  649. package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
  650. package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
  651. package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
  652. package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
  653. package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
  654. package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
  655. package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
  656. package/lib/enlighten-lib/elements/Property.d.ts +3 -0
  657. package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
  658. package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
  659. package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
  660. package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
  661. package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
  662. package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
  663. package/lib/enlighten-lib/fields/entity.d.ts +15 -0
  664. package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
  665. package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
  666. package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
  667. package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
  668. package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
  669. package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
  670. package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
  671. package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
  672. package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
  673. package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
  674. package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
  675. package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
  676. package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
  677. package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
  678. package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
  679. package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
  680. package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
  681. package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
  682. package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
  683. package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
  684. package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
  685. package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
  686. package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
  687. package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
  688. package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
  689. package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
  690. package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
  691. package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
  692. package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
  693. package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
  694. package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
  695. package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
  696. package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
  697. package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
  698. package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
  699. package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
  700. package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
  701. package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
  702. package/lib/enlighten-lib/property/element-property.d.ts +8 -0
  703. package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
  704. package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
  705. package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
  706. package/lib/enlighten-lib/report/element.service.d.ts +61 -0
  707. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
  708. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
  709. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
  710. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
  711. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
  712. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
  713. package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
  714. package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
  715. package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
  716. package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
  717. package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
  718. package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
  719. package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
  720. package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
  721. package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
  722. package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
  723. package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
  724. package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
  725. package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
  726. package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
  727. package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
  728. package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
  729. package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
  730. package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
  731. package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
  732. package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
  733. package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
  734. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
  735. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
  736. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
  737. package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
  738. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
  739. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
  740. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
  741. package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
  742. package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
  743. package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
  744. package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
  745. package/lib/enlighten-lib/report/ireport.d.ts +14 -0
  746. package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
  747. package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
  748. package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
  749. package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
  750. package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
  751. package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
  752. package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
  753. package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
  754. package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
  755. package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
  756. package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
  757. package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
  758. package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
  759. package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
  760. package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
  761. package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
  762. package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
  763. package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
  764. package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
  765. package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
  766. package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
  767. package/lib/enlighten-lib/report-control.service.d.ts +15 -0
  768. package/lib/enlighten-lib/utils/utils.d.ts +16 -0
  769. package/lib/field-list-lib/fields-list.service.d.ts +71 -0
  770. package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
  771. package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
  772. package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
  773. package/lib/filters/category-filter/category.service.d.ts +23 -0
  774. package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
  775. package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
  776. package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
  777. package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
  778. package/lib/filters/custom-scroll-directives.d.ts +14 -0
  779. package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
  780. package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
  781. package/lib/filters/filters.component.d.ts +139 -0
  782. package/lib/filters/filters.module.d.ts +43 -0
  783. package/lib/filters/filters.service.d.ts +83 -0
  784. package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
  785. package/lib/filters/metaColumnTypes.d.ts +18 -0
  786. package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
  787. package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
  788. package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
  789. package/lib/filters/public-api.d.ts +14 -0
  790. package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
  791. package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
  792. package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
  793. package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
  794. package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
  795. package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
  796. package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
  797. package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
  798. package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
  799. package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
  800. package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
  801. package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
  802. package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
  803. package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
  804. package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
  805. package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
  806. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
  807. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
  808. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
  809. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
  810. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
  811. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
  812. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
  813. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
  814. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
  815. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
  816. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
  817. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
  818. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
  819. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
  820. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
  821. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
  822. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
  823. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
  824. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
  825. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
  826. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
  827. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
  828. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
  829. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
  830. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
  831. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
  832. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
  833. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
  834. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
  835. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
  836. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
  837. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
  838. package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
  839. package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
  840. package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
  841. package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
  842. package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
  843. package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
  844. package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
  845. package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
  846. package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
  847. package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
  848. package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
  849. package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
  850. package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
  851. package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
  852. package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
  853. package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
  854. package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
  855. package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
  856. package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
  857. package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
  858. package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
  859. package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
  860. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
  861. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
  862. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
  863. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
  864. package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
  865. package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
  866. package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
  867. package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
  868. package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
  869. package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
  870. package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
  871. package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
  872. package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
  873. package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
  874. package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
  875. package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
  876. package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
  877. package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
  878. package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
  879. package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
  880. package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
  881. package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
  882. package/lib/form-object/public-api.d.ts +2 -0
  883. package/lib/form-permission.service.d.ts +51 -0
  884. package/lib/forms/ax-form.d.ts +47 -0
  885. package/lib/forms/iform.d.ts +18 -0
  886. package/lib/forms/page/common/axo-response-status.d.ts +4 -0
  887. package/lib/forms/page/common/constants.d.ts +371 -0
  888. package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
  889. package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
  890. package/lib/forms/page/common/form.constant.d.ts +85 -0
  891. package/lib/forms/page/common/property-panel-field.d.ts +21 -0
  892. package/lib/forms/page/common/widget-enums.d.ts +236 -0
  893. package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
  894. package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
  895. package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
  896. package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
  897. package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
  898. package/lib/forms/page/data-detail-view/section.d.ts +13 -0
  899. package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
  900. package/lib/forms/page/data-list/data-list.d.ts +24 -0
  901. package/lib/forms/page/form-object.d.ts +6 -0
  902. package/lib/forms/page/form-page.d.ts +19 -0
  903. package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
  904. package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
  905. package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
  906. package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
  907. package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
  908. package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
  909. package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
  910. package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
  911. package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
  912. package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
  913. package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
  914. package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
  915. package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
  916. package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
  917. package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
  918. package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
  919. package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
  920. package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
  921. package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
  922. package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
  923. package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
  924. package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
  925. package/lib/forms/page/widgets/auto-number.d.ts +28 -0
  926. package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
  927. package/lib/forms/page/widgets/ax-document.d.ts +44 -0
  928. package/lib/forms/page/widgets/ax-image.d.ts +46 -0
  929. package/lib/forms/page/widgets/bar-code.d.ts +52 -0
  930. package/lib/forms/page/widgets/child-record.d.ts +50 -0
  931. package/lib/forms/page/widgets/choicelist.d.ts +70 -0
  932. package/lib/forms/page/widgets/counter.d.ts +36 -0
  933. package/lib/forms/page/widgets/datetime.d.ts +53 -0
  934. package/lib/forms/page/widgets/formula.d.ts +38 -0
  935. package/lib/forms/page/widgets/geofence.d.ts +41 -0
  936. package/lib/forms/page/widgets/gps.d.ts +49 -0
  937. package/lib/forms/page/widgets/group-header.d.ts +51 -0
  938. package/lib/forms/page/widgets/languages.d.ts +41 -0
  939. package/lib/forms/page/widgets/link.d.ts +36 -0
  940. package/lib/forms/page/widgets/payment.d.ts +37 -0
  941. package/lib/forms/page/widgets/qr-code.d.ts +39 -0
  942. package/lib/forms/page/widgets/script-condition.d.ts +33 -0
  943. package/lib/forms/page/widgets/signature.d.ts +34 -0
  944. package/lib/forms/page/widgets/static-media.d.ts +40 -0
  945. package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
  946. package/lib/forms/page/widgets/sub-form.d.ts +39 -0
  947. package/lib/forms/page/widgets/textbox.d.ts +63 -0
  948. package/lib/forms/page/widgets/timestamp.d.ts +42 -0
  949. package/lib/forms/page/widgets/toggle.d.ts +36 -0
  950. package/lib/forms/page/widgets/unique-id.d.ts +33 -0
  951. package/lib/forms/page/widgets/verification.d.ts +55 -0
  952. package/lib/forms/page/widgets/video.d.ts +44 -0
  953. package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
  954. package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
  955. package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
  956. package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
  957. package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
  958. package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
  959. package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
  960. package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
  961. package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
  962. package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
  963. package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
  964. package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
  965. package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
  966. package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
  967. package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
  968. package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
  969. package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
  970. package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
  971. package/lib/forms/page/widgets/widget.d.ts +75 -0
  972. package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
  973. package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
  974. package/lib/ghost-loader/public-api.d.ts +2 -0
  975. package/lib/map-dialog/map-dialog.component.d.ts +16 -0
  976. package/lib/map-dialog/map-dialog.module.d.ts +11 -0
  977. package/lib/map-dialog/public-api.d.ts +5 -0
  978. package/lib/reports-container/public-api.d.ts +7 -0
  979. package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
  980. package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
  981. package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
  982. package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
  983. package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
  984. package/lib/reports-container/reports-container.component.d.ts +16 -0
  985. package/lib/reports-container/reports-container.module.d.ts +13 -0
  986. package/lib/reports-container/reports-container.service.d.ts +18 -0
  987. package/lib/scrollbar/index.d.ts +2 -0
  988. package/lib/scrollbar/public-api.d.ts +2 -0
  989. package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
  990. package/lib/scrollbar/scrollbar.module.d.ts +7 -0
  991. package/lib/scrollbar/scrollbar.types.d.ts +12 -0
  992. package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
  993. package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
  994. package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
  995. package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
  996. package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
  997. package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
  998. package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
  999. package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
  1000. package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
  1001. package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
  1002. package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
  1003. package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
  1004. package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
  1005. package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
  1006. package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
  1007. package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
  1008. package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
  1009. package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
  1010. package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
  1011. package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
  1012. package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
  1013. package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
  1014. package/lib/shared/shared.module.d.ts +13 -0
  1015. package/package.json +64 -0
  1016. package/public-api.d.ts +130 -0
@@ -0,0 +1,84 @@
1
+ import { Component, Input, ViewEncapsulation } from '@angular/core';
2
+ import { StaticMedia } from '../../../../forms/page/widgets/static-media';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "@angular/material/icon";
6
+ function StaticMediaWidgetViewComponent_div_0_span_3_Template(rf, ctx) { if (rf & 1) {
7
+ i0.ɵɵelementStart(0, "span");
8
+ i0.ɵɵtext(1);
9
+ i0.ɵɵelementStart(2, "span", 6);
10
+ i0.ɵɵtext(3, ":");
11
+ i0.ɵɵelementEnd();
12
+ i0.ɵɵelementEnd();
13
+ } if (rf & 2) {
14
+ const ctx_r1 = i0.ɵɵnextContext(2);
15
+ i0.ɵɵadvance(1);
16
+ i0.ɵɵtextInterpolate(ctx_r1.widget.prompt);
17
+ } }
18
+ function StaticMediaWidgetViewComponent_div_0_5_ng_template_0_span_2_Template(rf, ctx) { if (rf & 1) {
19
+ i0.ɵɵelementStart(0, "span");
20
+ i0.ɵɵtext(1);
21
+ i0.ɵɵelementStart(2, "span", 6);
22
+ i0.ɵɵtext(3, ":");
23
+ i0.ɵɵelementEnd();
24
+ i0.ɵɵelementEnd();
25
+ } if (rf & 2) {
26
+ const ctx_r4 = i0.ɵɵnextContext(4);
27
+ i0.ɵɵadvance(1);
28
+ i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
29
+ } }
30
+ function StaticMediaWidgetViewComponent_div_0_5_ng_template_0_Template(rf, ctx) { if (rf & 1) {
31
+ i0.ɵɵelementStart(0, "div", 2);
32
+ i0.ɵɵelement(1, "mat-icon", 3);
33
+ i0.ɵɵtemplate(2, StaticMediaWidgetViewComponent_div_0_5_ng_template_0_span_2_Template, 4, 1, "span", 4);
34
+ i0.ɵɵelementEnd();
35
+ i0.ɵɵelementStart(3, "span", 7);
36
+ i0.ɵɵtext(4, "-");
37
+ i0.ɵɵelementEnd();
38
+ } if (rf & 2) {
39
+ const ctx_r3 = i0.ɵɵnextContext(3);
40
+ i0.ɵɵadvance(2);
41
+ i0.ɵɵproperty("ngIf", ctx_r3.section.showPrompt);
42
+ } }
43
+ function StaticMediaWidgetViewComponent_div_0_5_Template(rf, ctx) { if (rf & 1) {
44
+ i0.ɵɵtemplate(0, StaticMediaWidgetViewComponent_div_0_5_ng_template_0_Template, 5, 1, "ng-template");
45
+ } }
46
+ function StaticMediaWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
47
+ i0.ɵɵelementStart(0, "div", 1);
48
+ i0.ɵɵelementStart(1, "div", 2);
49
+ i0.ɵɵelement(2, "mat-icon", 3);
50
+ i0.ɵɵtemplate(3, StaticMediaWidgetViewComponent_div_0_span_3_Template, 4, 1, "span", 4);
51
+ i0.ɵɵelement(4, "div", 5);
52
+ i0.ɵɵelementEnd();
53
+ i0.ɵɵtemplate(5, StaticMediaWidgetViewComponent_div_0_5_Template, 1, 0, undefined, 4);
54
+ i0.ɵɵelementEnd();
55
+ } if (rf & 2) {
56
+ const ctx_r0 = i0.ɵɵnextContext();
57
+ i0.ɵɵadvance(3);
58
+ i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
59
+ i0.ɵɵadvance(1);
60
+ i0.ɵɵproperty("innerHTML", ctx_r0.widget.staticMedia, i0.ɵɵsanitizeHtml);
61
+ i0.ɵɵadvance(1);
62
+ i0.ɵɵproperty("ngIf", !ctx_r0.widget.staticMedia);
63
+ } }
64
+ export class StaticMediaWidgetViewComponent {
65
+ constructor() { }
66
+ ngOnInit() {
67
+ if (this.widget.staticMedia) {
68
+ this.staticMedia = this.widget.staticMedia;
69
+ }
70
+ }
71
+ }
72
+ StaticMediaWidgetViewComponent.ɵfac = function StaticMediaWidgetViewComponent_Factory(t) { return new (t || StaticMediaWidgetViewComponent)(); };
73
+ StaticMediaWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StaticMediaWidgetViewComponent, selectors: [["lib-static-media-widget-view"]], inputs: { widget: "widget" }, decls: 1, vars: 1, consts: [["class", "data-detail-info", 4, "ngIf"], [1, "data-detail-info"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_static_media", 1, "add-text"], [4, "ngIf"], [1, "static-media-content", 3, "innerHTML"], [1, "colon"], [1, "flex", "justify-start"]], template: function StaticMediaWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
74
+ i0.ɵɵtemplate(0, StaticMediaWidgetViewComponent_div_0_Template, 6, 3, "div", 0);
75
+ } if (rf & 2) {
76
+ i0.ɵɵproperty("ngIf", ctx.widget.staticMedia);
77
+ } }, directives: [i1.NgIf, i2.MatIcon], styles: ["lib-static-media-widget-view .static-media-content{max-width:calc(100% - 34px)}lib-static-media-widget-view .static-media-content img{max-width:300px}lib-static-media-widget-view .static-media-content table,lib-static-media-widget-view .static-media-content tr,lib-static-media-widget-view .static-media-content td{border-radius:4px;border:1px solid #dddddd}lib-static-media-widget-view .static-media-content table{width:100%;margin-bottom:15px}lib-static-media-widget-view .static-media-content table tr td{padding:.5rem;text-align:justify;font-family:Open Sans,Arial,sans-serif;font-size:14px}lib-static-media-widget-view .static-media-content ol{list-style:auto}lib-static-media-widget-view .static-media-content ul{list-style:unset}lib-static-media-widget-view .static-media-content li,lib-static-media-widget-view .static-media-content p{margin-bottom:15px;text-align:justify;font-family:Open Sans,Arial,sans-serif;font-size:14px;line-height:25px}@media screen and (max-width: 600px){lib-static-media-widget-view .static-media-content li{margin-left:15px}lib-static-media-widget-view .static-media-content h1,lib-static-media-widget-view .static-media-content h3,lib-static-media-widget-view .static-media-content h2,lib-static-media-widget-view .static-media-content h5{font-size:16px!important}}lib-static-media-widget-view .static-media-content h1,lib-static-media-widget-view .static-media-content h3,lib-static-media-widget-view .static-media-content h2,lib-static-media-widget-view .static-media-content h4,lib-static-media-widget-view .static-media-content h5,lib-static-media-widget-view .static-media-content h6{color:#172b4d;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;font-size:1em!important}lib-static-media-widget-view .static-media-content td,lib-static-media-widget-view .static-media-content li,lib-static-media-widget-view .static-media-content span,lib-static-media-widget-view .static-media-content div,lib-static-media-widget-view .static-media-content p{color:#6c798f;font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:14px!important}lib-static-media-widget-view .data-detail-title{width:100%;align-items:start!important}lib-static-media-widget-view .mat-icon{margin-top:.5rem}\n"], encapsulation: 2 });
78
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StaticMediaWidgetViewComponent, [{
79
+ type: Component,
80
+ args: [{ selector: 'lib-static-media-widget-view', encapsulation: ViewEncapsulation.None, template: "<div class=\"data-detail-info\" *ngIf=\"widget.staticMedia\">\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_static_media\"></mat-icon> <span\n *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n <div [innerHTML]=\"widget.staticMedia\" class=\"static-media-content\"></div>\n </div>\n\n <ng-template *ngIf=\"!widget.staticMedia\">\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_static_media\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </ng-template>", styles: ["lib-static-media-widget-view .static-media-content{max-width:calc(100% - 34px)}lib-static-media-widget-view .static-media-content img{max-width:300px}lib-static-media-widget-view .static-media-content table,lib-static-media-widget-view .static-media-content tr,lib-static-media-widget-view .static-media-content td{border-radius:4px;border:1px solid #dddddd}lib-static-media-widget-view .static-media-content table{width:100%;margin-bottom:15px}lib-static-media-widget-view .static-media-content table tr td{padding:.5rem;text-align:justify;font-family:Open Sans,Arial,sans-serif;font-size:14px}lib-static-media-widget-view .static-media-content ol{list-style:auto}lib-static-media-widget-view .static-media-content ul{list-style:unset}lib-static-media-widget-view .static-media-content li,lib-static-media-widget-view .static-media-content p{margin-bottom:15px;text-align:justify;font-family:Open Sans,Arial,sans-serif;font-size:14px;line-height:25px}@media screen and (max-width: 600px){lib-static-media-widget-view .static-media-content li{margin-left:15px}lib-static-media-widget-view .static-media-content h1,lib-static-media-widget-view .static-media-content h3,lib-static-media-widget-view .static-media-content h2,lib-static-media-widget-view .static-media-content h5{font-size:16px!important}}lib-static-media-widget-view .static-media-content h1,lib-static-media-widget-view .static-media-content h3,lib-static-media-widget-view .static-media-content h2,lib-static-media-widget-view .static-media-content h4,lib-static-media-widget-view .static-media-content h5,lib-static-media-widget-view .static-media-content h6{color:#172b4d;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;font-size:1em!important}lib-static-media-widget-view .static-media-content td,lib-static-media-widget-view .static-media-content li,lib-static-media-widget-view .static-media-content span,lib-static-media-widget-view .static-media-content div,lib-static-media-widget-view .static-media-content p{color:#6c798f;font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:14px!important}lib-static-media-widget-view .data-detail-title{width:100%;align-items:start!important}lib-static-media-widget-view .mat-icon{margin-top:.5rem}\n"] }]
81
+ }], function () { return []; }, { widget: [{
82
+ type: Input
83
+ }] }); })();
84
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdGljLW1lZGlhLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1jb21tb24tdWktbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL3N0YXRpYy1tZWRpYS13aWRnZXQtdmlldy9zdGF0aWMtbWVkaWEtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvc3RhdGljLW1lZGlhLXdpZGdldC12aWV3L3N0YXRpYy1tZWRpYS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUU1RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNkNBQTZDLENBQUM7Ozs7O0lDQUEsNEJBQ25DO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQU81Qyw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBRnRELDhCQUE0QztJQUN4Qyw4QkFBaUU7SUFDakUsdUdBQXFGO0lBQ3pGLGlCQUFNO0lBQ04sK0JBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTzs7O0lBRjlCLGVBQXdCO0lBQXhCLGdEQUF3Qjs7O0lBSHZDLG9HQU1jOzs7SUFibEIsOEJBQXlEO0lBQ3JELDhCQUE0QztJQUN4Qyw4QkFBaUU7SUFBQyx1RkFDaUI7SUFDbkYseUJBQXlFO0lBQzdFLGlCQUFNO0lBRU4scUZBTWM7SUFibEIsaUJBQXlEOzs7SUFHNUMsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBQ3hCLGVBQWdDO0lBQWhDLHdFQUFnQztJQUczQixlQUF5QjtJQUF6QixpREFBeUI7O0FERzNDLE1BQU0sT0FBTyw4QkFBOEI7SUFTdEMsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtRQUNOLElBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxXQUFXLEVBQUM7WUFDMUIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLFdBQVcsQ0FBQztTQUMzQztJQUNILENBQUM7OzRHQWZPLDhCQUE4QjtpRkFBOUIsOEJBQThCO1FDVjNDLCtFQUF5RDs7UUFBMUIsNkNBQXdCOzt1RkRVMUMsOEJBQThCO2NBTjFDLFNBQVM7MkJBQ0UsOEJBQThCLGlCQUd6QixpQkFBaUIsQ0FBQyxJQUFJO3NDQU96QixNQUFNO2tCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTZWN0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS9kYXRhLWRldGFpbC12aWV3L3NlY3Rpb24nO1xuaW1wb3J0IHsgU3RhdGljTWVkaWEgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvc3RhdGljLW1lZGlhJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXN0YXRpYy1tZWRpYS13aWRnZXQtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdGF0aWMtbWVkaWEtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zdGF0aWMtbWVkaWEtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBTdGF0aWNNZWRpYVdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gICAgIC8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICAgICBASW5wdXQoKSB3aWRnZXQ6IFN0YXRpY01lZGlhO1xuICAgICBzZWN0aW9uOiBTZWN0aW9uO1xuICAgICBzdGF0aWNNZWRpYSA6IGFueTtcblxuICAgICBjb25zdHJ1Y3RvcigpIHsgfVxuICAgXG4gICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgIGlmKHRoaXMud2lkZ2V0LnN0YXRpY01lZGlhKXtcbiAgICAgICAgdGhpcy5zdGF0aWNNZWRpYSA9IHRoaXMud2lkZ2V0LnN0YXRpY01lZGlhO1xuICAgICAgIH1cbiAgICAgfVxuXG59XG4iLCI8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mb1wiICpuZ0lmPVwid2lkZ2V0LnN0YXRpY01lZGlhXCI+XG4gICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fc3RhdGljX21lZGlhXCI+PC9tYXQtaWNvbj4gPHNwYW5cbiAgICAgICAgICAgICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICAgIDxkaXYgW2lubmVySFRNTF09XCJ3aWRnZXQuc3RhdGljTWVkaWFcIiBjbGFzcz1cInN0YXRpYy1tZWRpYS1jb250ZW50XCI+PC9kaXY+XG4gICAgPC9kaXY+XG5cbiAgICA8bmctdGVtcGxhdGUgKm5nSWY9XCIhd2lkZ2V0LnN0YXRpY01lZGlhXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBmbGV4IHRleHQtc21cIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19zdGF0aWNfbWVkaWFcIj48L21hdC1pY29uPiBcbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gICAgPC9uZy10ZW1wbGF0ZT4iXX0=
@@ -0,0 +1,82 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { StopWatch } from '../../../../forms/page/widgets/stopwatch';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "@angular/material/icon";
6
+ function StopWatchWidgetViewComponent_ng_container_1_span_3_Template(rf, ctx) { if (rf & 1) {
7
+ i0.ɵɵelementStart(0, "span");
8
+ i0.ɵɵtext(1);
9
+ i0.ɵɵelementStart(2, "span", 7);
10
+ i0.ɵɵtext(3, ":");
11
+ i0.ɵɵelementEnd();
12
+ i0.ɵɵelementEnd();
13
+ } if (rf & 2) {
14
+ const ctx_r3 = i0.ɵɵnextContext(2);
15
+ i0.ɵɵadvance(1);
16
+ i0.ɵɵtextInterpolate(ctx_r3.widget.prompt);
17
+ } }
18
+ function StopWatchWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
19
+ i0.ɵɵelementContainerStart(0);
20
+ i0.ɵɵelementStart(1, "div", 3);
21
+ i0.ɵɵelement(2, "mat-icon", 4);
22
+ i0.ɵɵtemplate(3, StopWatchWidgetViewComponent_ng_container_1_span_3_Template, 4, 1, "span", 5);
23
+ i0.ɵɵelementEnd();
24
+ i0.ɵɵelementStart(4, "div", 6);
25
+ i0.ɵɵtext(5);
26
+ i0.ɵɵelementEnd();
27
+ i0.ɵɵelementContainerEnd();
28
+ } if (rf & 2) {
29
+ const ctx_r0 = i0.ɵɵnextContext();
30
+ i0.ɵɵadvance(3);
31
+ i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
32
+ i0.ɵɵadvance(2);
33
+ i0.ɵɵtextInterpolate1(" ", ctx_r0.widget.value, "");
34
+ } }
35
+ function StopWatchWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
36
+ i0.ɵɵelementStart(0, "span");
37
+ i0.ɵɵtext(1);
38
+ i0.ɵɵelementStart(2, "span", 7);
39
+ i0.ɵɵtext(3, ":");
40
+ i0.ɵɵelementEnd();
41
+ i0.ɵɵelementEnd();
42
+ } if (rf & 2) {
43
+ const ctx_r4 = i0.ɵɵnextContext(2);
44
+ i0.ɵɵadvance(1);
45
+ i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
46
+ } }
47
+ function StopWatchWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
48
+ i0.ɵɵelementStart(0, "div", 3);
49
+ i0.ɵɵelement(1, "mat-icon", 4);
50
+ i0.ɵɵtemplate(2, StopWatchWidgetViewComponent_ng_template_2_span_2_Template, 4, 1, "span", 5);
51
+ i0.ɵɵelementEnd();
52
+ i0.ɵɵelementStart(3, "span", 8);
53
+ i0.ɵɵtext(4, "-");
54
+ i0.ɵɵelementEnd();
55
+ } if (rf & 2) {
56
+ const ctx_r2 = i0.ɵɵnextContext();
57
+ i0.ɵɵadvance(2);
58
+ i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
59
+ } }
60
+ export class StopWatchWidgetViewComponent {
61
+ constructor() { }
62
+ ngOnInit() {
63
+ }
64
+ }
65
+ StopWatchWidgetViewComponent.ɵfac = function StopWatchWidgetViewComponent_Factory(t) { return new (t || StopWatchWidgetViewComponent)(); };
66
+ StopWatchWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StopWatchWidgetViewComponent, selectors: [["lib-stop-watch-widget-view"]], inputs: { widget: "widget" }, decls: 4, vars: 2, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_time", 1, "add-text"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], [1, "colon"], [1, "flex", "justify-start"]], template: function StopWatchWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
67
+ i0.ɵɵelementStart(0, "div", 0);
68
+ i0.ɵɵtemplate(1, StopWatchWidgetViewComponent_ng_container_1_Template, 6, 2, "ng-container", 1);
69
+ i0.ɵɵtemplate(2, StopWatchWidgetViewComponent_ng_template_2_Template, 5, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
70
+ i0.ɵɵelementEnd();
71
+ } if (rf & 2) {
72
+ const _r1 = i0.ɵɵreference(3);
73
+ i0.ɵɵadvance(1);
74
+ i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
75
+ } }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
76
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StopWatchWidgetViewComponent, [{
77
+ type: Component,
78
+ args: [{ selector: 'lib-stop-watch-widget-view', template: "\n <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_time\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\"> {{widget.value}}</div> \n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_time\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </ng-template>\n</div>\n\n\n", styles: [""] }]
79
+ }], function () { return []; }, { widget: [{
80
+ type: Input
81
+ }] }); })();
82
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcC13YXRjaC13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9zdG9wLXdhdGNoLXdpZGdldC12aWV3L3N0b3Atd2F0Y2gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvc3RvcC13YXRjaC13aWRnZXQtdmlldy9zdG9wLXdhdGNoLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ3pELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQzs7Ozs7SUNFeUMsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQUQ1Siw2QkFBNkQ7SUFDekQsOEJBQTRDO0lBQUEsOEJBQXlEO0lBQUMsOEZBQXFGO0lBQzNMLGlCQUFNO0lBQ04sOEJBQXNDO0lBQUMsWUFBZ0I7SUFBQSxpQkFBTTtJQUNqRSwwQkFBZTs7O0lBSGtHLGVBQXdCO0lBQXhCLGdEQUF3QjtJQUU5RixlQUFnQjtJQUFoQixtREFBZ0I7OztJQUtuRCw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBRnRELDhCQUE0QztJQUN4Qyw4QkFBeUQ7SUFDekQsNkZBQXFGO0lBQ3pGLGlCQUFNO0lBQ04sK0JBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTzs7O0lBRjlCLGVBQXdCO0lBQXhCLGdEQUF3Qjs7QURGM0MsTUFBTSxPQUFPLDRCQUE0QjtJQU12QyxnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7d0dBVFUsNEJBQTRCOytFQUE1Qiw0QkFBNEI7UUNQdkMsOEJBQThCO1FBQzVCLCtGQUllO1FBQ2YsOEhBTWM7UUFDbEIsaUJBQU07OztRQVphLGVBQW9CO1FBQXBCLHVDQUFvQixpQkFBQTs7dUZETTFCLDRCQUE0QjtjQUx4QyxTQUFTOzJCQUNFLDRCQUE0QjtzQ0FTekIsTUFBTTtrQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdG9wV2F0Y2ggfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvc3RvcHdhdGNoJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXN0b3Atd2F0Y2gtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vc3RvcC13YXRjaC13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3N0b3Atd2F0Y2gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBTdG9wV2F0Y2hXaWRnZXRWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAgICAgLypcbiAgKiB3aWRnZXQgb2JqZWN0XG4gICovXG4gICAgICBASW5wdXQoKSB3aWRnZXQ6IFN0b3BXYXRjaDtcbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG59XG4iLCJcbiAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIj5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlOyBlbHNlIGlzV2lkZ2V0VmFsdWVFbXB0eVwiID5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b190aW1lXCI+PC9tYXQtaWNvbj4gPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10ZXh0IHRleHQtc21cIj4ge3t3aWRnZXQudmFsdWV9fTwvZGl2PiBcbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX3RpbWVcIj48L21hdC1pY29uPiBcbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gICAgPC9uZy10ZW1wbGF0ZT5cbjwvZGl2PlxuXG5cbiJdfQ==
@@ -0,0 +1,93 @@
1
+ import { Component, Input, ViewEncapsulation } from '@angular/core';
2
+ import { SectionType } from '../../../../forms/page/common/widget-enums';
3
+ import { SubForm } from '../../../../forms/page/widgets/sub-form';
4
+ import { DetailViewType } from '../../../../forms/page/common/detail-view-enums';
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@angular/common";
7
+ import * as i2 from "@angular/material/icon";
8
+ import * as i3 from "../../section/section.component";
9
+ import * as i4 from "@angular/material/expansion";
10
+ function SubFormWidgetViewComponent_div_0_span_4_Template(rf, ctx) { if (rf & 1) {
11
+ i0.ɵɵelementStart(0, "span");
12
+ i0.ɵɵtext(1);
13
+ i0.ɵɵelementEnd();
14
+ } if (rf & 2) {
15
+ const ctx_r2 = i0.ɵɵnextContext(2);
16
+ i0.ɵɵadvance(1);
17
+ i0.ɵɵtextInterpolate(ctx_r2.widget.prompt);
18
+ } }
19
+ function SubFormWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
20
+ i0.ɵɵelementStart(0, "div");
21
+ i0.ɵɵelementStart(1, "div", 1);
22
+ i0.ɵɵelementStart(2, "div", 2);
23
+ i0.ɵɵelement(3, "mat-icon", 3);
24
+ i0.ɵɵtemplate(4, SubFormWidgetViewComponent_div_0_span_4_Template, 2, 1, "span", 0);
25
+ i0.ɵɵelementEnd();
26
+ i0.ɵɵelementEnd();
27
+ i0.ɵɵelement(5, "app-section", 4);
28
+ i0.ɵɵelementEnd();
29
+ } if (rf & 2) {
30
+ const ctx_r0 = i0.ɵɵnextContext();
31
+ i0.ɵɵadvance(4);
32
+ i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
33
+ i0.ɵɵadvance(1);
34
+ i0.ɵɵproperty("section", ctx_r0.section)("baseUrl", ctx_r0.baseUrl)("axonatorX1Url", ctx_r0.axonatorX1Url)("formObjectId", ctx_r0.formObjectId);
35
+ } }
36
+ function SubFormWidgetViewComponent_mat_accordion_1_Template(rf, ctx) { if (rf & 1) {
37
+ const _r4 = i0.ɵɵgetCurrentView();
38
+ i0.ɵɵelementStart(0, "mat-accordion");
39
+ i0.ɵɵelementStart(1, "mat-expansion-panel", 5);
40
+ i0.ɵɵelementStart(2, "mat-expansion-panel-header", 6);
41
+ i0.ɵɵlistener("click", function SubFormWidgetViewComponent_mat_accordion_1_Template_mat_expansion_panel_header_click_2_listener() { i0.ɵɵrestoreView(_r4); const ctx_r3 = i0.ɵɵnextContext(); return ctx_r3.panelOpenState = !ctx_r3.panelOpenState; });
42
+ i0.ɵɵelementStart(3, "mat-panel-title");
43
+ i0.ɵɵelementStart(4, "div", 1);
44
+ i0.ɵɵelementStart(5, "div", 7);
45
+ i0.ɵɵelement(6, "mat-icon", 3);
46
+ i0.ɵɵtext(7);
47
+ i0.ɵɵelementEnd();
48
+ i0.ɵɵelementEnd();
49
+ i0.ɵɵelementEnd();
50
+ i0.ɵɵelementEnd();
51
+ i0.ɵɵelement(8, "app-section", 4);
52
+ i0.ɵɵelementEnd();
53
+ i0.ɵɵelement(9, "mat-accordion");
54
+ i0.ɵɵelementEnd();
55
+ } if (rf & 2) {
56
+ const ctx_r1 = i0.ɵɵnextContext();
57
+ i0.ɵɵadvance(1);
58
+ i0.ɵɵproperty("expanded", ctx_r1.panelOpenState);
59
+ i0.ɵɵadvance(6);
60
+ i0.ɵɵtextInterpolate1(" ", ctx_r1.widget.prompt, "");
61
+ i0.ɵɵadvance(1);
62
+ i0.ɵɵproperty("section", ctx_r1.section)("baseUrl", ctx_r1.baseUrl)("axonatorX1Url", ctx_r1.axonatorX1Url)("formObjectId", ctx_r1.formObjectId);
63
+ } }
64
+ export class SubFormWidgetViewComponent {
65
+ constructor() {
66
+ this.sectionType = Object.assign({}, SectionType);
67
+ this.detailViewType = Object.assign({}, DetailViewType);
68
+ this.panelOpenState = false;
69
+ }
70
+ ngOnInit() {
71
+ this.section.isCollapsible = this.section.isCollapsible;
72
+ this.section.sections = this.section.sections;
73
+ }
74
+ toggleAccordion(accordionToggle) {
75
+ this.section.isCollapsible = accordionToggle.ariaExpanded === 'true';
76
+ }
77
+ }
78
+ SubFormWidgetViewComponent.ɵfac = function SubFormWidgetViewComponent_Factory(t) { return new (t || SubFormWidgetViewComponent)(); };
79
+ SubFormWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SubFormWidgetViewComponent, selectors: [["lib-sub-form-widget-view"]], inputs: { widget: "widget" }, decls: 2, vars: 2, consts: [[4, "ngIf"], [1, "data-detail-info"], [1, "sub-form-title", "flex", "items-center", "text-sm", "gap-4", "mb-4"], ["svgIcon", "axo_subform", 1, "add-text"], [3, "section", "baseUrl", "axonatorX1Url", "formObjectId"], ["id", "mat-expansion-panel", 1, "border-1", 3, "expanded"], [3, "click"], [1, "data-detail-title", "flex", "text-sm"]], template: function SubFormWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
80
+ i0.ɵɵtemplate(0, SubFormWidgetViewComponent_div_0_Template, 6, 5, "div", 0);
81
+ i0.ɵɵtemplate(1, SubFormWidgetViewComponent_mat_accordion_1_Template, 10, 6, "mat-accordion", 0);
82
+ } if (rf & 2) {
83
+ i0.ɵɵproperty("ngIf", !ctx.section.isCollapsible);
84
+ i0.ɵɵadvance(1);
85
+ i0.ɵɵproperty("ngIf", ctx.section.isCollapsible);
86
+ } }, directives: [i1.NgIf, i2.MatIcon, i3.SectionComponent, i4.MatAccordion, i4.MatExpansionPanel, i4.MatExpansionPanelHeader, i4.MatExpansionPanelTitle], styles: ["lib-sub-form-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-sub-form-widget-view .accordion .accordion-header{background:#FAFBFC}lib-sub-form-widget-view .accordion .accordion-header .child-expand-icon{width:1.2rem}lib-sub-form-widget-view .accordion .accordion-header .child-expanded-icon{width:1.2rem;position:relative;left:.15rem;bottom:-1.5rem}lib-sub-form-widget-view .accordion .expand-button{position:absolute;bottom:.45rem;left:3.5rem}lib-sub-form-widget-view .mat-expansion-panel-header-title{display:flex!important;height:3rem;align-items:center}lib-sub-form-widget-view #mat-expansion-panel{border:1px solid #dcdcdc75;box-shadow:none!important;transition:1s;transition-delay:1s;margin-bottom:0}lib-sub-form-widget-view .mat-expansion-panel{background-color:transparent!important;overflow:visible}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header{background:#ffffff;position:relative!important;height:auto!important}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header:hover{border-top-left-radius:10px;border-top-right-radius:10px;background:var(--page-bg-color)!important}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header.mat-expanded:hover{background:var(--page-bg-color)!important}@media screen and (max-width: 600px){lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-body{padding:0 .725rem}}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-body{display:none}lib-sub-form-widget-view .mat-expanded{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}lib-sub-form-widget-view .mat-expanded .mat-expansion-panel-body{display:block;margin-top:.5rem;border-bottom-left-radius:10px;border-bottom-right-radius:10px}lib-sub-form-widget-view .mat-card{margin-bottom:0}@media only screen and (max-width: 768px){lib-sub-form-widget-view .mat-expansion-panel-body{padding:8px}}lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,lib-sub-form-widget-view .mat-expansion-panel-header.mat-expanded:focus,lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--page-bg-color)!important;border-radius:10px}\n"], encapsulation: 2 });
87
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubFormWidgetViewComponent, [{
88
+ type: Component,
89
+ args: [{ selector: 'lib-sub-form-widget-view', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"!section.isCollapsible\" >\n <div class=\"data-detail-info\">\n <div class=\"sub-form-title flex items-center text-sm gap-4 mb-4\"><mat-icon class=\"add-text\" svgIcon=\"axo_subform\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}</span>\n </div>\n</div>\n<app-section [section]=\"section\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\" [formObjectId]=\"formObjectId\" ></app-section>\n</div>\n\n<mat-accordion *ngIf=\"section.isCollapsible\" >\n <mat-expansion-panel class=\"border-1\" id=\"mat-expansion-panel\" [expanded]=\"panelOpenState\">\n <mat-expansion-panel-header (click)=\"panelOpenState = !panelOpenState\" >\n <mat-panel-title>\n <div class=\"data-detail-info\">\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_subform\"></mat-icon> {{widget.prompt}}</div>\n </div>\n </mat-panel-title>\n </mat-expansion-panel-header>\n <app-section [section]=\"section\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\" [formObjectId]=\"formObjectId\"></app-section>\n </mat-expansion-panel>\n<mat-accordion>\n\n", styles: ["lib-sub-form-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-sub-form-widget-view .accordion .accordion-header{background:#FAFBFC}lib-sub-form-widget-view .accordion .accordion-header .child-expand-icon{width:1.2rem}lib-sub-form-widget-view .accordion .accordion-header .child-expanded-icon{width:1.2rem;position:relative;left:.15rem;bottom:-1.5rem}lib-sub-form-widget-view .accordion .expand-button{position:absolute;bottom:.45rem;left:3.5rem}lib-sub-form-widget-view .mat-expansion-panel-header-title{display:flex!important;height:3rem;align-items:center}lib-sub-form-widget-view #mat-expansion-panel{border:1px solid #dcdcdc75;box-shadow:none!important;transition:1s;transition-delay:1s;margin-bottom:0}lib-sub-form-widget-view .mat-expansion-panel{background-color:transparent!important;overflow:visible}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header{background:#ffffff;position:relative!important;height:auto!important}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header:hover{border-top-left-radius:10px;border-top-right-radius:10px;background:var(--page-bg-color)!important}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-header.mat-expanded:hover{background:var(--page-bg-color)!important}@media screen and (max-width: 600px){lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-body{padding:0 .725rem}}lib-sub-form-widget-view .mat-expansion-panel .mat-expansion-panel-body{display:none}lib-sub-form-widget-view .mat-expanded{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}lib-sub-form-widget-view .mat-expanded .mat-expansion-panel-body{display:block;margin-top:.5rem;border-bottom-left-radius:10px;border-bottom-right-radius:10px}lib-sub-form-widget-view .mat-card{margin-bottom:0}@media only screen and (max-width: 768px){lib-sub-form-widget-view .mat-expansion-panel-body{padding:8px}}lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,lib-sub-form-widget-view .mat-expansion-panel-header.mat-expanded:focus,lib-sub-form-widget-view .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--page-bg-color)!important;border-radius:10px}\n"] }]
90
+ }], function () { return []; }, { widget: [{
91
+ type: Input
92
+ }] }); })();
93
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ViLWZvcm0td2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvc3ViLWZvcm0td2lkZ2V0LXZpZXcvc3ViLWZvcm0td2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvc3ViLWZvcm0td2lkZ2V0LXZpZXcvc3ViLWZvcm0td2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFNUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQ3pFLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUNsRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0saURBQWlELENBQUM7Ozs7Ozs7SUNGcUQsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSxpQkFBTzs7O0lBQXhCLGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBRnhMLDJCQUFzQztJQUNsQyw4QkFBOEI7SUFDMUIsOEJBQWlFO0lBQUEsOEJBQTREO0lBQUMsbUZBQXlEO0lBQzNMLGlCQUFNO0lBQ1YsaUJBQU07SUFDTixpQ0FBc0k7SUFDdEksaUJBQU07OztJQUp1SSxlQUF3QjtJQUF4QixnREFBd0I7SUFHdEosZUFBbUI7SUFBbkIsd0NBQW1CLDJCQUFBLHVDQUFBLHFDQUFBOzs7O0lBR2xDLHFDQUE4QztJQUMxQyw4Q0FBNEY7SUFDNUYscURBQXdFO0lBQTVDLHVQQUEwQztJQUNsRSx1Q0FBaUI7SUFDYiw4QkFBOEI7SUFDMUIsOEJBQTRDO0lBQUEsOEJBQTREO0lBQUMsWUFBaUI7SUFBQSxpQkFBTTtJQUNwSSxpQkFBTTtJQUNWLGlCQUFrQjtJQUN0QixpQkFBNkI7SUFDN0IsaUNBQXFJO0lBQ3JJLGlCQUFzQjtJQUMxQixnQ0FBZTtJQVhmLGlCQUE4Qzs7O0lBQ3NCLGVBQTJCO0lBQTNCLGdEQUEyQjtJQUkwQixlQUFpQjtJQUFqQixvREFBaUI7SUFJeEgsZUFBbUI7SUFBbkIsd0NBQW1CLDJCQUFBLHVDQUFBLHFDQUFBOztBRE5yQyxNQUFNLE9BQU8sMEJBQTBCO0lBWXJDO1FBTEEsZ0JBQVcsR0FBTSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBQyxXQUFXLENBQUMsQ0FBQztRQUUvQyxtQkFBYyxHQUFNLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQ3JELG1CQUFjLEdBQVksS0FBSyxDQUFDO0lBRWhCLENBQUM7SUFFakIsUUFBUTtRQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDO1FBQ3hELElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDO0lBQ2hELENBQUM7SUFDRCxlQUFlLENBQUMsZUFBNEI7UUFDMUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEdBQUksZUFBZSxDQUFDLFlBQVksS0FBSyxNQUFNLENBQUM7SUFDeEUsQ0FBQzs7b0dBcEJVLDBCQUEwQjs2RUFBMUIsMEJBQTBCO1FDWHZDLDJFQU1NO1FBRU4sZ0dBQThDOztRQVJ4QyxpREFBNEI7UUFRbEIsZUFBMkI7UUFBM0IsZ0RBQTJCOzt1RkRHOUIsMEJBQTBCO2NBTnRDLFNBQVM7MkJBQ0UsMEJBQTBCLGlCQUdyQixpQkFBaUIsQ0FBQyxJQUFJO3NDQU81QixNQUFNO2tCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTZWN0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS9kYXRhLWRldGFpbC12aWV3L3NlY3Rpb24nO1xuaW1wb3J0IHsgU2VjdGlvblR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL2NvbW1vbi93aWRnZXQtZW51bXMnO1xuaW1wb3J0IHsgU3ViRm9ybSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9zdWItZm9ybSc7XG5pbXBvcnQgeyBEZXRhaWxWaWV3VHlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2UvY29tbW9uL2RldGFpbC12aWV3LWVudW1zJztcbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1zdWItZm9ybS13aWRnZXQtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdWItZm9ybS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3N1Yi1mb3JtLXdpZGdldC12aWV3LmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgU3ViRm9ybVdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gICAgICAvKlxuICAqIHdpZGdldCBvYmplY3RcbiAgKi9cbiAgQElucHV0KCkgd2lkZ2V0OiBTdWJGb3JtO1xuICBzZWN0aW9uOiBTZWN0aW9uO1xuICBzZWN0aW9uVHlwZTogYW55PU9iamVjdC5hc3NpZ24oe30sU2VjdGlvblR5cGUpO1xuXG4gIGRldGFpbFZpZXdUeXBlOiBhbnk9T2JqZWN0LmFzc2lnbih7fSxEZXRhaWxWaWV3VHlwZSk7XG4gIHBhbmVsT3BlblN0YXRlOiBib29sZWFuID0gZmFsc2U7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnNlY3Rpb24uaXNDb2xsYXBzaWJsZSA9IHRoaXMuc2VjdGlvbi5pc0NvbGxhcHNpYmxlO1xuICAgIHRoaXMuc2VjdGlvbi5zZWN0aW9ucyA9IHRoaXMuc2VjdGlvbi5zZWN0aW9ucztcbiAgfVxuICB0b2dnbGVBY2NvcmRpb24oYWNjb3JkaW9uVG9nZ2xlOiBIVE1MRWxlbWVudCk6IHZvaWR7XG4gICAgdGhpcy5zZWN0aW9uLmlzQ29sbGFwc2libGUgID0gYWNjb3JkaW9uVG9nZ2xlLmFyaWFFeHBhbmRlZCA9PT0gJ3RydWUnO1xuICB9XG59XG4iLCI8ZGl2ICpuZ0lmPVwiIXNlY3Rpb24uaXNDb2xsYXBzaWJsZVwiICA+XG4gICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInN1Yi1mb3JtLXRpdGxlIGZsZXggaXRlbXMtY2VudGVyIHRleHQtc20gZ2FwLTQgbWItNFwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19zdWJmb3JtXCI+PC9tYXQtaWNvbj4gPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTwvc3Bhbj5cbiAgICA8L2Rpdj5cbjwvZGl2PlxuPGFwcC1zZWN0aW9uICAgW3NlY3Rpb25dPVwic2VjdGlvblwiIFtiYXNlVXJsXSA9XCJiYXNlVXJsXCIgW2F4b25hdG9yWDFVcmxdID1cImF4b25hdG9yWDFVcmxcIiBbZm9ybU9iamVjdElkXT1cImZvcm1PYmplY3RJZFwiID48L2FwcC1zZWN0aW9uPlxuPC9kaXY+XG5cbjxtYXQtYWNjb3JkaW9uICpuZ0lmPVwic2VjdGlvbi5pc0NvbGxhcHNpYmxlXCIgPlxuICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsICBjbGFzcz1cImJvcmRlci0xXCIgaWQ9XCJtYXQtZXhwYW5zaW9uLXBhbmVsXCIgW2V4cGFuZGVkXT1cInBhbmVsT3BlblN0YXRlXCI+XG4gICAgPG1hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyIChjbGljayk9XCJwYW5lbE9wZW5TdGF0ZSA9ICFwYW5lbE9wZW5TdGF0ZVwiID5cbiAgICAgICAgPG1hdC1wYW5lbC10aXRsZT5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19zdWJmb3JtXCI+PC9tYXQtaWNvbj4ge3t3aWRnZXQucHJvbXB0fX08L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L21hdC1wYW5lbC10aXRsZT5cbiAgICA8L21hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxuICAgIDxhcHAtc2VjdGlvbiAgW3NlY3Rpb25dPVwic2VjdGlvblwiICBbYmFzZVVybF0gPVwiYmFzZVVybFwiIFtheG9uYXRvclgxVXJsXSA9XCJheG9uYXRvclgxVXJsXCIgW2Zvcm1PYmplY3RJZF09XCJmb3JtT2JqZWN0SWRcIj48L2FwcC1zZWN0aW9uPlxuICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbD5cbjxtYXQtYWNjb3JkaW9uPlxuXG4iXX0=
@@ -0,0 +1,144 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { TextBox } from '../../../../forms/page/widgets/textbox';
3
+ import { TextBoxInputType } from '../../../../forms/page/common/widget-enums';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@angular/material/icon";
7
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_3_Template(rf, ctx) { if (rf & 1) {
8
+ i0.ɵɵelement(0, "mat-icon", 15);
9
+ } }
10
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_4_Template(rf, ctx) { if (rf & 1) {
11
+ i0.ɵɵelement(0, "mat-icon", 16);
12
+ } }
13
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_5_Template(rf, ctx) { if (rf & 1) {
14
+ i0.ɵɵelement(0, "mat-icon", 17);
15
+ } }
16
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_6_Template(rf, ctx) { if (rf & 1) {
17
+ i0.ɵɵelement(0, "mat-icon", 18);
18
+ } }
19
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_7_Template(rf, ctx) { if (rf & 1) {
20
+ i0.ɵɵelement(0, "mat-icon", 19);
21
+ } }
22
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_8_Template(rf, ctx) { if (rf & 1) {
23
+ i0.ɵɵelement(0, "mat-icon", 20);
24
+ } }
25
+ function TextBoxWidgetViewComponent_ng_container_1_mat_icon_9_Template(rf, ctx) { if (rf & 1) {
26
+ i0.ɵɵelement(0, "mat-icon", 15);
27
+ } }
28
+ function TextBoxWidgetViewComponent_ng_container_1_span_10_Template(rf, ctx) { if (rf & 1) {
29
+ i0.ɵɵelementStart(0, "span");
30
+ i0.ɵɵtext(1);
31
+ i0.ɵɵelementStart(2, "span", 21);
32
+ i0.ɵɵtext(3, ":");
33
+ i0.ɵɵelementEnd();
34
+ i0.ɵɵelementEnd();
35
+ } if (rf & 2) {
36
+ const ctx_r10 = i0.ɵɵnextContext(2);
37
+ i0.ɵɵadvance(1);
38
+ i0.ɵɵtextInterpolate(ctx_r10.widget.prompt);
39
+ } }
40
+ function TextBoxWidgetViewComponent_ng_container_1_span_13_Template(rf, ctx) { if (rf & 1) {
41
+ i0.ɵɵelementStart(0, "span", 22);
42
+ i0.ɵɵtext(1);
43
+ i0.ɵɵelementEnd();
44
+ } if (rf & 2) {
45
+ const ctx_r11 = i0.ɵɵnextContext(2);
46
+ i0.ɵɵadvance(1);
47
+ i0.ɵɵtextInterpolate(ctx_r11.widget.unit);
48
+ } }
49
+ function TextBoxWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
50
+ i0.ɵɵelementContainerStart(0);
51
+ i0.ɵɵelementStart(1, "div", 3);
52
+ i0.ɵɵelementContainerStart(2, 4);
53
+ i0.ɵɵtemplate(3, TextBoxWidgetViewComponent_ng_container_1_mat_icon_3_Template, 1, 0, "mat-icon", 5);
54
+ i0.ɵɵtemplate(4, TextBoxWidgetViewComponent_ng_container_1_mat_icon_4_Template, 1, 0, "mat-icon", 6);
55
+ i0.ɵɵtemplate(5, TextBoxWidgetViewComponent_ng_container_1_mat_icon_5_Template, 1, 0, "mat-icon", 7);
56
+ i0.ɵɵtemplate(6, TextBoxWidgetViewComponent_ng_container_1_mat_icon_6_Template, 1, 0, "mat-icon", 8);
57
+ i0.ɵɵtemplate(7, TextBoxWidgetViewComponent_ng_container_1_mat_icon_7_Template, 1, 0, "mat-icon", 9);
58
+ i0.ɵɵtemplate(8, TextBoxWidgetViewComponent_ng_container_1_mat_icon_8_Template, 1, 0, "mat-icon", 10);
59
+ i0.ɵɵtemplate(9, TextBoxWidgetViewComponent_ng_container_1_mat_icon_9_Template, 1, 0, "mat-icon", 11);
60
+ i0.ɵɵelementContainerEnd();
61
+ i0.ɵɵtemplate(10, TextBoxWidgetViewComponent_ng_container_1_span_10_Template, 4, 1, "span", 12);
62
+ i0.ɵɵelementEnd();
63
+ i0.ɵɵelementStart(11, "div", 13);
64
+ i0.ɵɵtext(12);
65
+ i0.ɵɵtemplate(13, TextBoxWidgetViewComponent_ng_container_1_span_13_Template, 2, 1, "span", 14);
66
+ i0.ɵɵelementEnd();
67
+ i0.ɵɵelementContainerEnd();
68
+ } if (rf & 2) {
69
+ const ctx_r0 = i0.ɵɵnextContext();
70
+ i0.ɵɵadvance(2);
71
+ i0.ɵɵproperty("ngSwitch", ctx_r0.widget.inputType);
72
+ i0.ɵɵadvance(1);
73
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.text);
74
+ i0.ɵɵadvance(1);
75
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.number);
76
+ i0.ɵɵadvance(1);
77
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.decimal);
78
+ i0.ɵɵadvance(1);
79
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.email);
80
+ i0.ɵɵadvance(1);
81
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.address);
82
+ i0.ɵɵadvance(1);
83
+ i0.ɵɵproperty("ngSwitchCase", ctx_r0.inputType.phone);
84
+ i0.ɵɵadvance(2);
85
+ i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
86
+ i0.ɵɵadvance(2);
87
+ i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, " ");
88
+ i0.ɵɵadvance(1);
89
+ i0.ɵɵproperty("ngIf", (ctx_r0.widget.subType === "numeric" || ctx_r0.widget.subType === "decimal") && ctx_r0.widget.unit);
90
+ } }
91
+ function TextBoxWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
92
+ i0.ɵɵelementStart(0, "span");
93
+ i0.ɵɵtext(1);
94
+ i0.ɵɵelementStart(2, "span", 21);
95
+ i0.ɵɵtext(3, ":");
96
+ i0.ɵɵelementEnd();
97
+ i0.ɵɵelementEnd();
98
+ } if (rf & 2) {
99
+ const ctx_r12 = i0.ɵɵnextContext(2);
100
+ i0.ɵɵadvance(1);
101
+ i0.ɵɵtextInterpolate(ctx_r12.widget.prompt);
102
+ } }
103
+ function TextBoxWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
104
+ i0.ɵɵelementStart(0, "div", 3);
105
+ i0.ɵɵelement(1, "mat-icon", 15);
106
+ i0.ɵɵtemplate(2, TextBoxWidgetViewComponent_ng_template_2_span_2_Template, 4, 1, "span", 12);
107
+ i0.ɵɵelementEnd();
108
+ i0.ɵɵelementStart(3, "span", 23);
109
+ i0.ɵɵtext(4, "-");
110
+ i0.ɵɵelementEnd();
111
+ } if (rf & 2) {
112
+ const ctx_r2 = i0.ɵɵnextContext();
113
+ i0.ɵɵadvance(2);
114
+ i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
115
+ } }
116
+ export class TextBoxWidgetViewComponent {
117
+ constructor() {
118
+ this.inputType = Object.assign({}, TextBoxInputType);
119
+ }
120
+ ngOnInit() {
121
+ this.widgetValue = this.widget.value.toString();
122
+ if (this.widget.inputType == TextBoxInputType.email && this.widget.allowMultipleEmails) {
123
+ this.widgetValue = (this.widget.value.toString().split(',').join(', ')).trim();
124
+ }
125
+ }
126
+ }
127
+ TextBoxWidgetViewComponent.ɵfac = function TextBoxWidgetViewComponent_Factory(t) { return new (t || TextBoxWidgetViewComponent)(); };
128
+ TextBoxWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TextBoxWidgetViewComponent, selectors: [["lib-text-box-widget-view"]], inputs: { widget: "widget" }, decls: 4, vars: 2, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "data-detail-title", "flex", "text-sm"], [3, "ngSwitch"], ["class", "add-text", "svgIcon", "axo_text", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_number", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_decimal", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_email", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_address", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_phone", 4, "ngSwitchCase"], ["class", "add-text", "svgIcon", "axo_text", 4, "ngSwitchDefault"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], ["class", "pl-1", 4, "ngIf"], ["svgIcon", "axo_text", 1, "add-text"], ["svgIcon", "axo_number", 1, "add-text"], ["svgIcon", "axo_decimal", 1, "add-text"], ["svgIcon", "axo_email", 1, "add-text"], ["svgIcon", "axo_address", 1, "add-text"], ["svgIcon", "axo_phone", 1, "add-text"], [1, "colon"], [1, "pl-1"], [1, "flex", "justify-start"]], template: function TextBoxWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
129
+ i0.ɵɵelementStart(0, "div", 0);
130
+ i0.ɵɵtemplate(1, TextBoxWidgetViewComponent_ng_container_1_Template, 14, 10, "ng-container", 1);
131
+ i0.ɵɵtemplate(2, TextBoxWidgetViewComponent_ng_template_2_Template, 5, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
132
+ i0.ɵɵelementEnd();
133
+ } if (rf & 2) {
134
+ const _r1 = i0.ɵɵreference(3);
135
+ i0.ɵɵadvance(1);
136
+ i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
137
+ } }, directives: [i1.NgIf, i1.NgSwitch, i1.NgSwitchCase, i1.NgSwitchDefault, i2.MatIcon], styles: [""] });
138
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextBoxWidgetViewComponent, [{
139
+ type: Component,
140
+ args: [{ selector: 'lib-text-box-widget-view', template: "\n <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\">\n <ng-container [ngSwitch]=\"widget.inputType\">\n <mat-icon *ngSwitchCase=inputType.text class=\"add-text\" svgIcon=\"axo_text\"></mat-icon>\n <mat-icon *ngSwitchCase=inputType.number class=\"add-text\" svgIcon=\"axo_number\"></mat-icon> \n <mat-icon *ngSwitchCase=inputType.decimal class=\"add-text\" svgIcon=\"axo_decimal\"></mat-icon>\n <mat-icon *ngSwitchCase=inputType.email class=\"add-text\" svgIcon=\"axo_email\"></mat-icon> \n <mat-icon *ngSwitchCase=inputType.address class=\"add-text\" svgIcon=\"axo_address\"></mat-icon>\n <mat-icon *ngSwitchCase=inputType.phone class=\"add-text\" svgIcon=\"axo_phone\"></mat-icon> \n <mat-icon *ngSwitchDefault class=\"add-text\" svgIcon=\"axo_text\"></mat-icon> \n </ng-container><span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\"> {{widgetValue}}\n <span class=\"pl-1\" *ngIf=\" (widget.subType==='numeric' || widget.subType==='decimal') && widget.unit\">{{widget.unit}}</span>\n </div>\n \n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_text\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n\n </ng-template>\n </div>\n\n", styles: [""] }]
141
+ }], function () { return []; }, { widget: [{
142
+ type: Input
143
+ }] }); })();
144
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvdGV4dC1ib3gtd2lkZ2V0LXZpZXcvdGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvdGV4dC1ib3gtd2lkZ2V0LXZpZXcvdGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDekQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBRWpFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDRDQUE0QyxDQUFDOzs7OztJQ0UxRCwrQkFBdUY7OztJQUN2RiwrQkFBMkY7OztJQUMzRiwrQkFBNkY7OztJQUM3RiwrQkFBeUY7OztJQUN6RiwrQkFBNkY7OztJQUM3RiwrQkFBeUY7OztJQUN6RiwrQkFBMEU7OztJQUMvRCw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLGdDQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDJDQUFpQjs7O0lBR2pFLGdDQUFzRztJQUFBLFlBQWU7SUFBQSxpQkFBTzs7O0lBQXRCLGVBQWU7SUFBZix5Q0FBZTs7O0lBYjdILDZCQUE2RDtJQUN6RCw4QkFBNEM7SUFDeEMsZ0NBQTRDO0lBQ3hDLG9HQUF1RjtJQUN2RixvR0FBMkY7SUFDM0Ysb0dBQTZGO0lBQzdGLG9HQUF5RjtJQUN6RixvR0FBNkY7SUFDN0YscUdBQXlGO0lBQ3pGLHFHQUEwRTtJQUM5RSwwQkFBZTtJQUFBLCtGQUFxRjtJQUN4RyxpQkFBTTtJQUNOLGdDQUFzQztJQUFDLGFBQ25DO0lBQUEsK0ZBQTRIO0lBQ2hJLGlCQUFNO0lBRVYsMEJBQWU7OztJQWRPLGVBQTZCO0lBQTdCLGtEQUE2QjtJQUMzQixlQUEyQjtJQUEzQixvREFBMkI7SUFDM0IsZUFBNkI7SUFBN0Isc0RBQTZCO0lBQzdCLGVBQThCO0lBQTlCLHVEQUE4QjtJQUM5QixlQUE0QjtJQUE1QixxREFBNEI7SUFDNUIsZUFBOEI7SUFBOUIsdURBQThCO0lBQzlCLGVBQTRCO0lBQTVCLHFEQUE0QjtJQUV0QixlQUF3QjtJQUF4QixnREFBd0I7SUFFWCxlQUNuQztJQURtQyxtREFDbkM7SUFBb0IsZUFBaUY7SUFBakYseUhBQWlGOzs7SUFPckcsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSxnQ0FBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwyQ0FBaUI7OztJQUZ0RCw4QkFBNEM7SUFDeEMsK0JBQXlEO0lBQ3pELDRGQUFxRjtJQUN6RixpQkFBTTtJQUNOLGdDQUFpQztJQUFBLGlCQUFDO0lBQUEsaUJBQU87OztJQUY5QixlQUF3QjtJQUF4QixnREFBd0I7O0FEWi9DLE1BQU0sT0FBTywwQkFBMEI7SUFPckM7UUFEQSxjQUFTLEdBQVEsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsZ0JBQWdCLENBQUMsQ0FBQztJQUNyQyxDQUFDO0lBR2pCLFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQ2hELElBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLElBQUksZ0JBQWdCLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsbUJBQW1CLEVBQUM7WUFDcEYsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztTQUNoRjtJQUNILENBQUM7O29HQWZVLDBCQUEwQjs2RUFBMUIsMEJBQTBCO1FDVG5DLDhCQUE4QjtRQUMxQiwrRkFnQmU7UUFDZiw0SEFPYztRQUNsQixpQkFBTTs7O1FBekJhLGVBQW9CO1FBQXBCLHVDQUFvQixpQkFBQTs7dUZEUTlCLDBCQUEwQjtjQUx0QyxTQUFTOzJCQUNFLDBCQUEwQjtzQ0FRM0IsTUFBTTtrQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBUZXh0Qm94IH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL3RleHRib3gnO1xuaW1wb3J0IHsgU2VjdGlvbiB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uJztcbmltcG9ydCB7IFRleHRCb3hJbnB1dFR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL2NvbW1vbi93aWRnZXQtZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItdGV4dC1ib3gtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vdGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi90ZXh0LWJveC13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFRleHRCb3hXaWRnZXRWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgICAvKlxuICAqIHdpZGdldCBvYmplY3RcbiAgKi9cbiAgQElucHV0KCkgd2lkZ2V0OiBUZXh0Qm94O1xuICBzZWN0aW9uOiBTZWN0aW9uO1xuICBpbnB1dFR5cGU6IGFueSA9IE9iamVjdC5hc3NpZ24oe30sIFRleHRCb3hJbnB1dFR5cGUpO1xuICBjb25zdHJ1Y3RvcigpIHsgfVxuICB3aWRnZXRWYWx1ZSA6IHN0cmluZztcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLndpZGdldFZhbHVlID0gdGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKTtcbiAgICBpZih0aGlzLndpZGdldC5pbnB1dFR5cGUgPT0gVGV4dEJveElucHV0VHlwZS5lbWFpbCAmJiB0aGlzLndpZGdldC5hbGxvd011bHRpcGxlRW1haWxzKXtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSAodGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKS5zcGxpdCgnLCcpLmpvaW4oJywgJykpLnRyaW0oKTtcbiAgICB9XG4gIH1cblxuICBcbn1cbiIsIlxuICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXQudmFsdWU7IGVsc2UgaXNXaWRnZXRWYWx1ZUVtcHR5XCIgPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cIndpZGdldC5pbnB1dFR5cGVcIj5cbiAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICAqbmdTd2l0Y2hDYXNlPWlucHV0VHlwZS50ZXh0IGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX3RleHRcIj48L21hdC1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gICpuZ1N3aXRjaENhc2U9aW5wdXRUeXBlLm51bWJlciBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19udW1iZXJcIj48L21hdC1pY29uPiAgXG4gICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbiAgKm5nU3dpdGNoQ2FzZT1pbnB1dFR5cGUuZGVjaW1hbCBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19kZWNpbWFsXCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICAqbmdTd2l0Y2hDYXNlPWlucHV0VHlwZS5lbWFpbCBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19lbWFpbFwiPjwvbWF0LWljb24+ICBcbiAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICAqbmdTd2l0Y2hDYXNlPWlucHV0VHlwZS5hZGRyZXNzIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2FkZHJlc3NcIj48L21hdC1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gICpuZ1N3aXRjaENhc2U9aW5wdXRUeXBlLnBob25lIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX3Bob25lXCI+PC9tYXQtaWNvbj4gIFxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gKm5nU3dpdGNoRGVmYXVsdCBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b190ZXh0XCI+PC9tYXQtaWNvbj4gXG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+PHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRleHQgdGV4dC1zbVwiPiB7e3dpZGdldFZhbHVlfX1cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInBsLTFcIiAqbmdJZj1cIiAod2lkZ2V0LnN1YlR5cGU9PT0nbnVtZXJpYycgfHwgd2lkZ2V0LnN1YlR5cGU9PT0nZGVjaW1hbCcpICYmIHdpZGdldC51bml0XCI+e3t3aWRnZXQudW5pdH19PC9zcGFuPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICBcbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjaXNXaWRnZXRWYWx1ZUVtcHR5PlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b190ZXh0XCI+PC9tYXQtaWNvbj4gXG4gICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGp1c3RpZnktc3RhcnRcIj4tPC9zcGFuPlxuXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgPC9kaXY+XG5cbiJdfQ==
@@ -0,0 +1,95 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { TimeStamp } from '../../../../forms/page/widgets/timestamp';
3
+ import { AxoUtils } from '../../../../../lib/axo-utils/axo-utils';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@angular/material/icon";
7
+ function TimeStampWidgetViewComponent_ng_container_1_span_3_Template(rf, ctx) { if (rf & 1) {
8
+ i0.ɵɵelementStart(0, "span");
9
+ i0.ɵɵtext(1);
10
+ i0.ɵɵelementStart(2, "span", 7);
11
+ i0.ɵɵtext(3, ":");
12
+ i0.ɵɵelementEnd();
13
+ i0.ɵɵelementEnd();
14
+ } if (rf & 2) {
15
+ const ctx_r3 = i0.ɵɵnextContext(2);
16
+ i0.ɵɵadvance(1);
17
+ i0.ɵɵtextInterpolate(ctx_r3.widget.prompt);
18
+ } }
19
+ function TimeStampWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
20
+ i0.ɵɵelementContainerStart(0);
21
+ i0.ɵɵelementStart(1, "div", 3);
22
+ i0.ɵɵelement(2, "mat-icon", 4);
23
+ i0.ɵɵtemplate(3, TimeStampWidgetViewComponent_ng_container_1_span_3_Template, 4, 1, "span", 5);
24
+ i0.ɵɵelementEnd();
25
+ i0.ɵɵelementStart(4, "div", 6);
26
+ i0.ɵɵtext(5);
27
+ i0.ɵɵelementEnd();
28
+ i0.ɵɵelementContainerEnd();
29
+ } if (rf & 2) {
30
+ const ctx_r0 = i0.ɵɵnextContext();
31
+ i0.ɵɵadvance(3);
32
+ i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
33
+ i0.ɵɵadvance(2);
34
+ i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, "");
35
+ } }
36
+ function TimeStampWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
37
+ i0.ɵɵelementStart(0, "span");
38
+ i0.ɵɵtext(1);
39
+ i0.ɵɵelementStart(2, "span", 7);
40
+ i0.ɵɵtext(3, ":");
41
+ i0.ɵɵelementEnd();
42
+ i0.ɵɵelementEnd();
43
+ } if (rf & 2) {
44
+ const ctx_r4 = i0.ɵɵnextContext(2);
45
+ i0.ɵɵadvance(1);
46
+ i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
47
+ } }
48
+ function TimeStampWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
49
+ i0.ɵɵelementStart(0, "div", 3);
50
+ i0.ɵɵelement(1, "mat-icon", 4);
51
+ i0.ɵɵtemplate(2, TimeStampWidgetViewComponent_ng_template_2_span_2_Template, 4, 1, "span", 5);
52
+ i0.ɵɵelementEnd();
53
+ i0.ɵɵelementStart(3, "span", 8);
54
+ i0.ɵɵtext(4, "-");
55
+ i0.ɵɵelementEnd();
56
+ } if (rf & 2) {
57
+ const ctx_r2 = i0.ɵɵnextContext();
58
+ i0.ɵɵadvance(2);
59
+ i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
60
+ } }
61
+ export class TimeStampWidgetViewComponent {
62
+ constructor() { }
63
+ ngOnInit() {
64
+ this.widgetValue = this.widget.value;
65
+ this.CheckFormatAndChangeValue();
66
+ }
67
+ CheckFormatAndChangeValue() {
68
+ if (this.widget.displayDateFormat != "") {
69
+ this.widgetValue = AxoUtils.formatDateToCustomDateFormat(this.widget.value, this.widgetProperties.displayDateFormat);
70
+ }
71
+ else {
72
+ this.widgetValue = this.widget.value;
73
+ }
74
+ }
75
+ }
76
+ TimeStampWidgetViewComponent.ɵfac = function TimeStampWidgetViewComponent_Factory(t) { return new (t || TimeStampWidgetViewComponent)(); };
77
+ TimeStampWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TimeStampWidgetViewComponent, selectors: [["lib-time-stamp-widget-view"]], inputs: { widget: "widget", widgetProperties: "widgetProperties" }, decls: 4, vars: 2, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_datetime", 1, "add-text"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], [1, "colon"], [1, "flex", "justify-start"]], template: function TimeStampWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
78
+ i0.ɵɵelementStart(0, "div", 0);
79
+ i0.ɵɵtemplate(1, TimeStampWidgetViewComponent_ng_container_1_Template, 6, 2, "ng-container", 1);
80
+ i0.ɵɵtemplate(2, TimeStampWidgetViewComponent_ng_template_2_Template, 5, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
81
+ i0.ɵɵelementEnd();
82
+ } if (rf & 2) {
83
+ const _r1 = i0.ɵɵreference(3);
84
+ i0.ɵɵadvance(1);
85
+ i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
86
+ } }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
87
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimeStampWidgetViewComponent, [{
88
+ type: Component,
89
+ args: [{ selector: 'lib-time-stamp-widget-view', template: "\n <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\" > {{widgetValue}}</div>\n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n\n </ng-template>\n</div>\n\n", styles: [""] }]
90
+ }], function () { return []; }, { widget: [{
91
+ type: Input
92
+ }], widgetProperties: [{
93
+ type: Input
94
+ }] }); })();
95
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGltZS1zdGFtcC13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy90aW1lLXN0YW1wLXdpZGdldC12aWV3L3RpbWUtc3RhbXAtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvdGltZS1zdGFtcC13aWRnZXQtdmlldy90aW1lLXN0YW1wLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ3pELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUVyRSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sd0NBQXdDLENBQUM7Ozs7O0lDQThDLDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFEOUosNkJBQTZEO0lBQzNELDhCQUE0QztJQUFBLDhCQUE2RDtJQUFDLDhGQUFxRjtJQUMvTCxpQkFBTTtJQUNOLDhCQUF1QztJQUFDLFlBQWU7SUFBQSxpQkFBTTtJQUMvRCwwQkFBZTs7O0lBSG9HLGVBQXdCO0lBQXhCLGdEQUF3QjtJQUVqRyxlQUFlO0lBQWYsa0RBQWU7OztJQUtqRCw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBRnRELDhCQUE0QztJQUN4Qyw4QkFBNkQ7SUFDN0QsNkZBQXFGO0lBQ3pGLGlCQUFNO0lBQ04sK0JBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTzs7O0lBRjlCLGVBQXdCO0lBQXhCLGdEQUF3Qjs7QURBM0MsTUFBTSxPQUFPLDRCQUE0QjtJQVd2QyxnQkFBZSxDQUFDO0lBRWhCLFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDO1FBQ3JDLElBQUksQ0FBQyx5QkFBeUIsRUFBRSxDQUFDO0lBQ25DLENBQUM7SUFDRCx5QkFBeUI7UUFFdkIsSUFBRyxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixJQUFJLEVBQUUsRUFBQztZQUNyQyxJQUFJLENBQUMsV0FBVyxHQUFHLFFBQVEsQ0FBQyw0QkFBNEIsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsaUJBQWlCLENBQUMsQ0FBQztTQUNySDthQUNHO1lBQ0YsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQztTQUN0QztJQUNILENBQUM7O3dHQXpCVSw0QkFBNEI7K0VBQTVCLDRCQUE0QjtRQ1R2Qyw4QkFBOEI7UUFDNUIsK0ZBSWU7UUFDZiw4SEFPYztRQUNsQixpQkFBTTs7O1FBYmEsZUFBb0I7UUFBcEIsdUNBQW9CLGlCQUFBOzt1RkRRMUIsNEJBQTRCO2NBTHhDLFNBQVM7MkJBQ0UsNEJBQTRCO3NDQVU3QixNQUFNO2tCQUFkLEtBQUs7WUFDRyxnQkFBZ0I7a0JBQXhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFRpbWVTdGFtcCB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy90aW1lc3RhbXAnO1xuaW1wb3J0IHsgU2VjdGlvbiB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uJztcbmltcG9ydCB7IEF4b1V0aWxzIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vbGliL2F4by11dGlscy9heG8tdXRpbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItdGltZS1zdGFtcC13aWRnZXQtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi90aW1lLXN0YW1wLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdGltZS1zdGFtcC13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFRpbWVTdGFtcFdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG5cbiAgICAgICAvKlxuICAqIHdpZGdldCBvYmplY3RcbiAgKi9cbiAgQElucHV0KCkgd2lkZ2V0OiBUaW1lU3RhbXA7XG4gIEBJbnB1dCgpIHdpZGdldFByb3BlcnRpZXM6IFRpbWVTdGFtcDtcbiAgc2VjdGlvbjogU2VjdGlvbjtcbiAgd2lkZ2V0VmFsdWU6IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcigpIHt9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy53aWRnZXRWYWx1ZSA9IHRoaXMud2lkZ2V0LnZhbHVlO1xuICAgIHRoaXMuQ2hlY2tGb3JtYXRBbmRDaGFuZ2VWYWx1ZSgpO1xuICB9XG4gIENoZWNrRm9ybWF0QW5kQ2hhbmdlVmFsdWUoKVxuICB7XG4gICAgaWYodGhpcy53aWRnZXQuZGlzcGxheURhdGVGb3JtYXQgIT0gXCJcIil7XG4gICAgICB0aGlzLndpZGdldFZhbHVlID0gQXhvVXRpbHMuZm9ybWF0RGF0ZVRvQ3VzdG9tRGF0ZUZvcm1hdCh0aGlzLndpZGdldC52YWx1ZSx0aGlzLndpZGdldFByb3BlcnRpZXMuZGlzcGxheURhdGVGb3JtYXQpO1xuICAgIH1cbiAgICBlbHNle1xuICAgICAgdGhpcy53aWRnZXRWYWx1ZSA9IHRoaXMud2lkZ2V0LnZhbHVlO1xuICAgIH1cbiAgfVxuXG59XG4iLCJcbiAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIj5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlOyBlbHNlIGlzV2lkZ2V0VmFsdWVFbXB0eVwiID5cbiAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBmbGV4IHRleHQtc21cIj48bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fZGF0ZXRpbWVcIj48L21hdC1pY29uPiA8c3BhbiAqbmdJZj1cInNlY3Rpb24uc2hvd1Byb21wdFwiPnt7d2lkZ2V0LnByb21wdH19PHNwYW4gY2xhc3M9XCJjb2xvblwiPjo8L3NwYW4+PC9zcGFuPlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGV4dCB0ZXh0LXNtXCIgPiB7e3dpZGdldFZhbHVlfX08L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGV0aW1lXCI+PC9tYXQtaWNvbj4gXG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cInNlY3Rpb24uc2hvd1Byb21wdFwiPnt7d2lkZ2V0LnByb21wdH19PHNwYW4gY2xhc3M9XCJjb2xvblwiPjo8L3NwYW4+PC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGp1c3RpZnktc3RhcnRcIj4tPC9zcGFuPlxuXG4gICAgPC9uZy10ZW1wbGF0ZT5cbjwvZGl2PlxuXG4iXX0=