@acorex/platform 18.0.15 → 18.1.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 (256) hide show
  1. package/common/lib/schema/entity/entity.class.d.ts +2 -1
  2. package/core/index.d.ts +1 -0
  3. package/core/utils/data-conditioner.d.ts +6 -0
  4. package/esm2022/common/lib/schema/entity/entity.class.mjs +1 -1
  5. package/esm2022/common/lib/schema/widget/widget-renderer.mjs +3 -3
  6. package/esm2022/common/lib/workflows/common.workflow.mjs +1 -1
  7. package/esm2022/core/index.mjs +2 -1
  8. package/esm2022/core/utils/data-conditioner.mjs +138 -0
  9. package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +2 -2
  10. package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +3 -3
  11. package/esm2022/layout/builder/lib/builder/widget.types.mjs +10 -8
  12. package/esm2022/layout/designer/index.mjs +2 -7
  13. package/esm2022/layout/designer/lib/{helpers → designer/components}/add-widget-button/add-widget-button.component.mjs +2 -2
  14. package/esm2022/layout/designer/lib/designer/components/board/board.component.mjs +112 -0
  15. package/esm2022/layout/designer/lib/designer/components/breadcrumbs/breadcrumbs.component.mjs +64 -0
  16. package/esm2022/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.mjs +32 -0
  17. package/esm2022/layout/designer/lib/designer/components/drawers/history/history.component.mjs +30 -0
  18. package/esm2022/layout/designer/lib/designer/components/drawers/outline/outline.component.mjs +61 -0
  19. package/esm2022/layout/designer/lib/designer/components/drawers/pages/pages.component.mjs +28 -0
  20. package/esm2022/layout/designer/lib/designer/components/grid-drawer/grid-drawer.component.mjs +82 -0
  21. package/esm2022/layout/designer/lib/designer/components/header-menu/header-menu.component.mjs +24 -0
  22. package/esm2022/layout/designer/lib/{widget-picker → designer/components/widget-picker}/widget-picker.component.mjs +1 -1
  23. package/esm2022/layout/designer/lib/designer/designer.component.mjs +28 -17
  24. package/esm2022/layout/designer/lib/designer/index.mjs +8 -0
  25. package/esm2022/layout/designer/lib/designer/shared/command.mjs +185 -0
  26. package/esm2022/layout/designer/lib/designer/shared/designer-connector.service.mjs +10 -0
  27. package/esm2022/layout/designer/lib/designer/shared/designer.service.mjs +488 -0
  28. package/esm2022/layout/designer/lib/designer/shared/designer.typs.mjs +2 -0
  29. package/esm2022/layout/designer/lib/designer/shared/drawer-content/drawer-content.component.mjs +16 -0
  30. package/esm2022/layout/designer/lib/designer/shared/widget-designer-renderer.directive.mjs +224 -0
  31. package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +17 -5
  32. package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +2 -5
  33. package/esm2022/layout/entity/lib/entity-registery.service.mjs +3 -3
  34. package/esm2022/layout/entity/lib/entity.module.mjs +4 -2
  35. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +7 -4
  36. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +2 -1
  37. package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +4 -3
  38. package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +10 -11
  39. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +3 -2
  40. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +2 -3
  41. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +3 -3
  42. package/esm2022/layouts/lib/admin/entity-layout/index.mjs +2 -2
  43. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +2 -2
  44. package/esm2022/themes/default/index.mjs +3 -2
  45. package/esm2022/themes/default/lib/entity-reuse.strategy.mjs +2 -4
  46. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +41 -18
  47. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +4 -4
  48. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comment-list-view.component.mjs +123 -0
  49. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comments.service.mjs +3 -0
  50. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +22 -23
  51. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.mjs +68 -0
  52. package/esm2022/themes/default/lib/layouts/entity-layouts/index.mjs +2 -0
  53. package/esm2022/widgets/lib/properties/data-source.props.mjs +21 -0
  54. package/esm2022/widgets/lib/properties/editors.props.mjs +76 -3
  55. package/esm2022/widgets/lib/properties/general.props.mjs +31 -3
  56. package/esm2022/widgets/lib/properties/index.mjs +2 -1
  57. package/esm2022/widgets/lib/properties/table-column.props.mjs +18 -3
  58. package/esm2022/widgets/lib/widgets/actions/button/button-widget-designer.component.mjs +23 -7
  59. package/esm2022/widgets/lib/widgets/actions/button/button-widget-view.component.mjs +24 -8
  60. package/esm2022/widgets/lib/widgets/actions/button/button-widget.config.mjs +5 -2
  61. package/esm2022/widgets/lib/widgets/advance/file/file-box-widget-column.component.mjs +3 -3
  62. package/esm2022/widgets/lib/widgets/advance/file/file-box-widget.config.mjs +2 -1
  63. package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-column.component.mjs +3 -3
  64. package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget.config.mjs +2 -1
  65. package/esm2022/widgets/lib/widgets/advance/map/index.mjs +1 -4
  66. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-edit.component.mjs +50 -158
  67. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-view.component.mjs +40 -53
  68. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget.config.mjs +95 -11
  69. package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.mjs +11 -11
  70. package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget.config.mjs +8 -7
  71. package/esm2022/widgets/lib/widgets/advance/signature/signature-pad-widget-column.component.mjs +3 -3
  72. package/esm2022/widgets/lib/widgets/advance/signature/signature-pad-widget.config.mjs +4 -6
  73. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.mjs +6 -6
  74. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +2 -2
  75. package/esm2022/widgets/lib/widgets/editors/color/color-box-widget.config.mjs +2 -1
  76. package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-edit.component.mjs +23 -14
  77. package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-view.component.mjs +58 -58
  78. package/esm2022/widgets/lib/widgets/editors/contact/contact-widget.config.mjs +4 -3
  79. package/esm2022/widgets/lib/widgets/editors/contact/index.mjs +3 -4
  80. package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.mjs +1 -1
  81. package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-edit.component.mjs +63 -41
  82. package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-view.component.mjs +14 -20
  83. package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget.config.mjs +2 -1
  84. package/esm2022/widgets/lib/widgets/editors/email/email-box-widget.config.mjs +2 -1
  85. package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-column.component.mjs +1 -1
  86. package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.mjs +1 -1
  87. package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-view.component.mjs +1 -1
  88. package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget.config.mjs +6 -4
  89. package/esm2022/widgets/lib/widgets/editors/link/link-widget.config.mjs +2 -1
  90. package/esm2022/widgets/lib/widgets/editors/number/number-box-widget-edit.component.mjs +49 -57
  91. package/esm2022/widgets/lib/widgets/editors/number/number-box-widget-view.component.mjs +11 -17
  92. package/esm2022/widgets/lib/widgets/editors/number/number-box-widget.config.mjs +4 -2
  93. package/esm2022/widgets/lib/widgets/editors/password/password-box-widget-column.component.mjs +44 -7
  94. package/esm2022/widgets/lib/widgets/editors/password/password-box-widget-edit.component.mjs +1 -1
  95. package/esm2022/widgets/lib/widgets/editors/password/password-box-widget-view.component.mjs +11 -5
  96. package/esm2022/widgets/lib/widgets/editors/password/password-box-widget.config.mjs +2 -1
  97. package/esm2022/widgets/lib/widgets/editors/phone/phone-box-widget.config.mjs +2 -1
  98. package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.mjs +33 -15
  99. package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget.config.mjs +5 -4
  100. package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-edit.component.mjs +14 -2
  101. package/esm2022/widgets/lib/widgets/editors/select/select-box-widget.config.mjs +2 -1
  102. package/esm2022/widgets/lib/widgets/editors/selection-list/index.mjs +2 -1
  103. package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-column.component.mjs +20 -6
  104. package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.mjs +75 -0
  105. package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.mjs +13 -10
  106. package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.mjs +2 -3
  107. package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget.config.mjs +15 -2
  108. package/esm2022/widgets/lib/widgets/editors/text/text-box-widget.config.mjs +5 -4
  109. package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget.config.mjs +2 -1
  110. package/esm2022/widgets/lib/widgets/layout/block/block-widget.config.mjs +2 -2
  111. package/esm2022/widgets/lib/widgets/layout/document/document-widget.config.mjs +2 -2
  112. package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget.config.mjs +2 -2
  113. package/esm2022/widgets/lib/widgets/layout/grid/grid-widget.config.mjs +2 -2
  114. package/esm2022/widgets/lib/widgets/layout/grid-item/grid-item-widget.config.mjs +2 -2
  115. package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget.config.mjs +2 -2
  116. package/esm2022/widgets/lib/widgets/layout/page/page-widget.config.mjs +7 -3
  117. package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget.config.mjs +2 -2
  118. package/esm2022/widgets/lib/widgets/layout/text-block/text-block-widget.config.mjs +2 -1
  119. package/esm2022/widgets/lib/widgets.module.mjs +16 -10
  120. package/fesm2022/acorex-platform-common.mjs +1 -1
  121. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  122. package/fesm2022/acorex-platform-core.mjs +139 -1
  123. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  124. package/fesm2022/acorex-platform-layout-builder.mjs +12 -10
  125. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  126. package/fesm2022/{acorex-platform-layout-designer-preview.component-9dJh_ulU.mjs → acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs} +3 -3
  127. package/fesm2022/{acorex-platform-layout-designer-preview.component-9dJh_ulU.mjs.map → acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs.map} +1 -1
  128. package/fesm2022/{acorex-platform-layout-designer-widget-picker.component-DXgcm-fP.mjs → acorex-platform-layout-designer-widget-picker.component-BZryrCyh.mjs} +4 -4
  129. package/fesm2022/acorex-platform-layout-designer-widget-picker.component-BZryrCyh.mjs.map +1 -0
  130. package/fesm2022/acorex-platform-layout-designer.mjs +438 -282
  131. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
  132. package/fesm2022/acorex-platform-layout-entity.mjs +20 -17
  133. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  134. package/fesm2022/{acorex-platform-layouts-entity-create-view.component-C2pYReAo.mjs → acorex-platform-layouts-entity-create-view.component-CPGbLM4C.mjs} +3 -2
  135. package/fesm2022/acorex-platform-layouts-entity-create-view.component-CPGbLM4C.mjs.map +1 -0
  136. package/fesm2022/acorex-platform-layouts.mjs +1633 -1633
  137. package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
  138. package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BGT0puX_.mjs → acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs} +7 -7
  139. package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BGT0puX_.mjs.map → acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs.map} +1 -1
  140. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CWXJxLS0.mjs +281 -0
  141. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CWXJxLS0.mjs.map +1 -0
  142. package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-BHo31YVi.mjs → acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs} +7 -7
  143. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs.map +1 -0
  144. package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-CGhOE3jO.mjs +357 -0
  145. package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-CGhOE3jO.mjs.map +1 -0
  146. package/fesm2022/{acorex-platform-themes-default-error-401.component-zyAGwz2j.mjs → acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs} +3 -3
  147. package/fesm2022/{acorex-platform-themes-default-error-401.component-zyAGwz2j.mjs.map → acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs.map} +1 -1
  148. package/fesm2022/{acorex-platform-themes-default-error-404.component-DcxQ89LL.mjs → acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs} +3 -3
  149. package/fesm2022/{acorex-platform-themes-default-error-404.component-DcxQ89LL.mjs.map → acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs.map} +1 -1
  150. package/fesm2022/{acorex-platform-themes-default-error-offline.component-BMB6D5Cx.mjs → acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs} +3 -3
  151. package/fesm2022/{acorex-platform-themes-default-error-offline.component-BMB6D5Cx.mjs.map → acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs.map} +1 -1
  152. package/fesm2022/acorex-platform-themes-default.mjs +37 -434
  153. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  154. package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs → acorex-platform-widgets-button-widget-designer.component-COvuxaTt.mjs} +23 -7
  155. package/fesm2022/acorex-platform-widgets-button-widget-designer.component-COvuxaTt.mjs.map +1 -0
  156. package/fesm2022/{acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs → acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs} +6 -6
  157. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs.map +1 -0
  158. package/fesm2022/{acorex-platform-widgets-checkbox-widget-designer.component-DfUr_DMU.mjs → acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs} +4 -4
  159. package/fesm2022/{acorex-platform-widgets-checkbox-widget-designer.component-DfUr_DMU.mjs.map → acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs.map} +1 -1
  160. package/fesm2022/{acorex-platform-widgets-color-box-widget-designer.component-BF24k3Y-.mjs → acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs} +4 -4
  161. package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs.map +1 -0
  162. package/fesm2022/acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs +23 -0
  163. package/fesm2022/acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs.map +1 -0
  164. package/fesm2022/acorex-platform-widgets.mjs +1139 -907
  165. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  166. package/layout/builder/lib/builder/widget.types.d.ts +13 -4
  167. package/layout/designer/index.d.ts +1 -6
  168. package/layout/designer/lib/{board → designer/components/board}/board.component.d.ts +1 -1
  169. package/layout/designer/lib/{breadcrumbs → designer/components/breadcrumbs}/breadcrumbs.component.d.ts +1 -1
  170. package/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.d.ts +12 -0
  171. package/layout/designer/lib/{history → designer/components/drawers/history}/history.component.d.ts +1 -1
  172. package/layout/designer/lib/{outline → designer/components/drawers/outline}/outline.component.d.ts +1 -1
  173. package/layout/designer/lib/{pages → designer/components/drawers/pages}/pages.component.d.ts +1 -1
  174. package/layout/designer/lib/{header-menu → designer/components/header-menu}/header-menu.component.d.ts +1 -1
  175. package/layout/designer/lib/designer/designer.component.d.ts +1 -1
  176. package/layout/designer/lib/designer/index.d.ts +7 -0
  177. package/layout/designer/lib/designer/shared/designer-connector.service.d.ts +11 -0
  178. package/layout/designer/lib/{designer.service.d.ts → designer/shared/designer.service.d.ts} +9 -12
  179. package/layout/designer/lib/designer/shared/designer.typs.d.ts +4 -0
  180. package/layout/designer/lib/designer/shared/drawer-content/drawer-content.component.d.ts +8 -0
  181. package/layout/designer/lib/property-viewer/widget-property-viewer.component.d.ts +8 -0
  182. package/layout/entity/lib/entity-registery.service.d.ts +1 -1
  183. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +1 -1
  184. package/layout/entity/lib/workflows/create-entity.workflow.d.ts +2 -0
  185. package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +2 -0
  186. package/layouts/lib/admin/entity-layout/index.d.ts +1 -1
  187. package/package.json +18 -18
  188. package/themes/default/index.d.ts +2 -1
  189. package/themes/default/lib/entity-reuse.strategy.d.ts +1 -1
  190. package/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.d.ts +10 -3
  191. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comment-list-view.component.d.ts +33 -0
  192. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comments.service.d.ts +11 -0
  193. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +3 -2
  194. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.d.ts +11 -0
  195. package/themes/default/lib/layouts/entity-layouts/index.d.ts +1 -0
  196. package/widgets/lib/properties/data-source.props.d.ts +2 -0
  197. package/widgets/lib/properties/editors.props.d.ts +5 -0
  198. package/widgets/lib/properties/general.props.d.ts +2 -1
  199. package/widgets/lib/properties/index.d.ts +1 -0
  200. package/widgets/lib/properties/table-column.props.d.ts +1 -0
  201. package/widgets/lib/widgets/actions/button/button-widget-designer.component.d.ts +2 -1
  202. package/widgets/lib/widgets/actions/button/button-widget-view.component.d.ts +2 -1
  203. package/widgets/lib/widgets/advance/file/file-box-widget-column.component.d.ts +1 -1
  204. package/widgets/lib/widgets/advance/gallery/gallery-widget-column.component.d.ts +1 -1
  205. package/widgets/lib/widgets/advance/map/index.d.ts +0 -3
  206. package/widgets/lib/widgets/advance/map/map-box-widget-edit.component.d.ts +11 -32
  207. package/widgets/lib/widgets/advance/map/map-box-widget-view.component.d.ts +6 -11
  208. package/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.d.ts +4 -4
  209. package/widgets/lib/widgets/advance/signature/signature-pad-widget-column.component.d.ts +1 -1
  210. package/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.d.ts +1 -1
  211. package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -0
  212. package/widgets/lib/widgets/editors/contact/contact-widget-view.component.d.ts +2 -2
  213. package/widgets/lib/widgets/editors/contact/index.d.ts +2 -3
  214. package/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.d.ts +1 -1
  215. package/widgets/lib/widgets/editors/date-time/date-time-box-widget-edit.component.d.ts +2 -1
  216. package/widgets/lib/widgets/editors/date-time/date-time-box-widget-view.component.d.ts +2 -2
  217. package/widgets/lib/widgets/editors/large-text/large-text-widget-column.component.d.ts +1 -1
  218. package/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.d.ts +1 -1
  219. package/widgets/lib/widgets/editors/large-text/large-text-widget-view.component.d.ts +1 -1
  220. package/widgets/lib/widgets/editors/number/number-box-widget-edit.component.d.ts +1 -1
  221. package/widgets/lib/widgets/editors/password/password-box-widget-column.component.d.ts +7 -3
  222. package/widgets/lib/widgets/editors/password/password-box-widget-edit.component.d.ts +1 -1
  223. package/widgets/lib/widgets/editors/password/password-box-widget-view.component.d.ts +1 -1
  224. package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +2 -0
  225. package/widgets/lib/widgets/editors/selection-list/index.d.ts +1 -0
  226. package/widgets/lib/widgets/editors/selection-list/selection-list-widget-column.component.d.ts +1 -1
  227. package/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.d.ts +16 -0
  228. package/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.d.ts +3 -2
  229. package/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.d.ts +1 -1
  230. package/esm2022/layout/designer/lib/board/board.component.mjs +0 -112
  231. package/esm2022/layout/designer/lib/breadcrumbs/breadcrumbs.component.mjs +0 -64
  232. package/esm2022/layout/designer/lib/command.mjs +0 -185
  233. package/esm2022/layout/designer/lib/designer.service.mjs +0 -399
  234. package/esm2022/layout/designer/lib/header-menu/header-menu.component.mjs +0 -24
  235. package/esm2022/layout/designer/lib/helpers/grid-drawer/grid-drawer.component.mjs +0 -82
  236. package/esm2022/layout/designer/lib/history/history.component.mjs +0 -28
  237. package/esm2022/layout/designer/lib/outline/outline.component.mjs +0 -56
  238. package/esm2022/layout/designer/lib/pages/pages.component.mjs +0 -28
  239. package/esm2022/layout/designer/lib/widget-designer-renderer.directive.mjs +0 -224
  240. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-column.component.mjs +0 -19
  241. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-filter.component.mjs +0 -20
  242. package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-print.component.mjs +0 -19
  243. package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DXgcm-fP.mjs.map +0 -1
  244. package/fesm2022/acorex-platform-layouts-entity-create-view.component-C2pYReAo.mjs.map +0 -1
  245. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BHo31YVi.mjs.map +0 -1
  246. package/fesm2022/acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs.map +0 -1
  247. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs.map +0 -1
  248. package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-BF24k3Y-.mjs.map +0 -1
  249. package/widgets/lib/widgets/advance/map/map-box-widget-column.component.d.ts +0 -6
  250. package/widgets/lib/widgets/advance/map/map-box-widget-filter.component.d.ts +0 -6
  251. package/widgets/lib/widgets/advance/map/map-box-widget-print.component.d.ts +0 -6
  252. /package/layout/designer/lib/{helpers → designer/components}/add-widget-button/add-widget-button.component.d.ts +0 -0
  253. /package/layout/designer/lib/{helpers → designer/components}/grid-drawer/grid-drawer.component.d.ts +0 -0
  254. /package/layout/designer/lib/{widget-picker → designer/components/widget-picker}/widget-picker.component.d.ts +0 -0
  255. /package/layout/designer/lib/{command.d.ts → designer/shared/command.d.ts} +0 -0
  256. /package/layout/designer/lib/{widget-designer-renderer.directive.d.ts → designer/shared/widget-designer-renderer.directive.d.ts} +0 -0
@@ -1,25 +1,24 @@
1
+ import * as i2$1 from '@acorex/components/badge';
2
+ import { AXBadgeModule } from '@acorex/components/badge';
1
3
  import * as i5 from '@acorex/components/button';
2
4
  import { AXButtonModule } from '@acorex/components/button';
5
+ import * as i3 from '@acorex/components/decorators';
6
+ import { AXDecoratorModule } from '@acorex/components/decorators';
3
7
  import * as i4 from '@acorex/components/loading';
4
8
  import { AXLoadingModule } from '@acorex/components/loading';
5
- import * as i1$5 from '@acorex/platform/layout/builder';
9
+ import * as i1$7 from '@acorex/platform/layout/builder';
6
10
  import { AXPWidgetComponent, AXPWidgetsCatalog, cloneProperty, AXP_WIDGETS_ACTION_GROUP, AXP_WIDGETS_EDITOR_GROUP, AXPColumnWidgetComponent, AXP_WIDGETS_ADVANCE_GROUP, AXPContainerWidgetComponent, AXPLayoutBuilderModule, AXP_WIDGETS_LAYOUT_GROUP } from '@acorex/platform/layout/builder';
7
- import * as i1$2 from '@angular/common';
11
+ import * as i1$3 from '@angular/common';
8
12
  import { CommonModule } from '@angular/common';
9
13
  import * as i0 from '@angular/core';
10
- import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, HostBinding, signal, ViewEncapsulation, ViewChild, effect, HostListener, NgModule } from '@angular/core';
11
- import { AX_STYLE_COLOR_TYPES, AXDataSource } from '@acorex/components/common';
14
+ import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, effect, HostBinding, signal, ViewEncapsulation, ViewChild, ChangeDetectorRef, HostListener, NgModule } from '@angular/core';
15
+ import { AX_STYLE_COLOR_TYPES, AXDataSource, convertArrayToDataSource } from '@acorex/components/common';
12
16
  import * as i1 from '@acorex/components/check-box';
13
17
  import { AXCheckBoxModule } from '@acorex/components/check-box';
14
- import * as i2 from '@angular/forms';
18
+ import * as i1$1 from '@angular/forms';
15
19
  import { FormsModule } from '@angular/forms';
16
- import * as i2$1 from '@acorex/components/label';
20
+ import * as i2 from '@acorex/components/label';
17
21
  import { AXLabelModule } from '@acorex/components/label';
18
- import * as i2$2 from '@acorex/components/badge';
19
- import { AXBadgeModule } from '@acorex/components/badge';
20
- import * as i3 from '@acorex/components/decorators';
21
- import { AXDecoratorModule } from '@acorex/components/decorators';
22
- import { AXPClipBoardService } from '@acorex/platform/common';
23
22
  import * as i4$1 from '@acorex/components/form';
24
23
  import { AXFormModule } from '@acorex/components/form';
25
24
  import { AXPopupService } from '@acorex/components/popup';
@@ -27,10 +26,11 @@ import * as i3$1 from '@acorex/components/select-box';
27
26
  import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
28
27
  import * as i7 from '@acorex/components/text-box';
29
28
  import { AXTextBoxModule } from '@acorex/components/text-box';
30
- import * as i1$1 from '@acorex/core/translation';
29
+ import * as i1$2 from '@acorex/core/translation';
31
30
  import { AXTranslationModule, AXTranslationService } from '@acorex/core/translation';
32
31
  import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
33
32
  import { AXBasePageComponent } from '@acorex/components/page';
33
+ import { AXPClipBoardService } from '@acorex/platform/common';
34
34
  import { AXDateTimeFormatter } from '@acorex/core/date-time';
35
35
  import * as i3$2 from '@acorex/components/datetime-box';
36
36
  import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
@@ -38,34 +38,33 @@ import * as i4$2 from '@acorex/components/text-area';
38
38
  import { AXTextAreaModule } from '@acorex/components/text-area';
39
39
  import { AXFormatService } from '@acorex/core/format';
40
40
  import { isNumber, sum, get } from 'lodash-es';
41
- import * as i1$3 from '@acorex/components/number-box';
41
+ import * as i1$4 from '@acorex/components/number-box';
42
42
  import { AXNumberBoxModule } from '@acorex/components/number-box';
43
43
  import * as i3$3 from '@acorex/components/password-box';
44
44
  import { AXPasswordBoxModule } from '@acorex/components/password-box';
45
45
  import { AXPlatform } from '@acorex/core/platform';
46
46
  import { AXPHtmlUtils } from '@acorex/platform/core';
47
- import * as i1$4 from '@acorex/components/wysiwyg';
47
+ import * as i1$5 from '@acorex/components/wysiwyg';
48
48
  import { AXWysiwygModule } from '@acorex/components/wysiwyg';
49
- import * as i2$3 from '@acorex/components/selection-list';
49
+ import * as i2$2 from '@acorex/components/selection-list';
50
50
  import { AXSelectionListModule } from '@acorex/components/selection-list';
51
- import * as i2$4 from '@acorex/components/switch';
51
+ import * as i2$3 from '@acorex/components/switch';
52
52
  import { AXSwitchModule } from '@acorex/components/switch';
53
53
  import * as i5$1 from '@acorex/components/uploader';
54
54
  import { AXUploaderModule } from '@acorex/components/uploader';
55
55
  import { AXLoadingDialogService } from '@acorex/components/loading-dialog';
56
56
  import { Subscription } from 'rxjs';
57
- import * as i2$5 from '@acorex/components/image';
57
+ import * as i2$4 from '@acorex/components/image';
58
58
  import { AXImageModule } from '@acorex/components/image';
59
- import * as L from 'leaflet';
60
- import 'leaflet-draw';
61
- import 'leaflet.locatecontrol';
59
+ import * as i1$6 from '@acorex/components/map';
60
+ import { AXMapModule } from '@acorex/components/map';
62
61
  import { AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent, AXPDesignerService, AXPDesignerGridDrawerComponent } from '@acorex/platform/layout/designer';
63
- import * as i2$6 from '@acorex/components/color-box';
64
- import { AXColorBoxModule } from '@acorex/components/color-box';
65
- import { DomSanitizer } from '@angular/platform-browser';
66
- import * as i1$6 from '@acorex/components/qrcode';
62
+ import * as i1$8 from '@acorex/components/qrcode';
67
63
  import { AXQrcodeModule } from '@acorex/components/qrcode';
68
64
  import { AXColorUtil } from '@acorex/core/utils';
65
+ import * as i2$5 from '@acorex/components/color-box';
66
+ import { AXColorBoxModule } from '@acorex/components/color-box';
67
+ import { DomSanitizer } from '@angular/platform-browser';
69
68
 
70
69
  class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
71
70
  constructor() {
@@ -74,7 +73,8 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
74
73
  this.color = computed(() => this.options()['color']?.id ?? 'primary');
75
74
  this.look = computed(() => this.options()['look']?.id ?? 'solid');
76
75
  this.text = computed(() => this.options()['text']);
77
- this.loading = computed(() => this.options()['loading']);
76
+ this.loading = computed(() => this.options()['loading'] ?? false);
77
+ this.icon = computed(() => this.options()['icon']);
78
78
  this.onClick = new EventEmitter();
79
79
  }
80
80
  handleClick(e) {
@@ -87,27 +87,39 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
87
87
  }
88
88
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
89
89
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "axp_button_widget", usesInheritance: true, ngImport: i0, template: `
90
- <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
91
- @if(loading()){
90
+ <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
91
+ @if(icon() && text()){
92
+ <ax-prefix
93
+ ><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
94
+ ></ax-prefix>
95
+ } @else if(icon() && !text()) {
96
+ <ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
97
+ } @if(loading()){
92
98
  <ax-loading> </ax-loading>
93
99
  }
94
100
  </ax-button>
95
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
101
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXBadgeModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
96
102
  }
97
103
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
98
104
  type: Component,
99
105
  args: [{
100
106
  selector: 'axp_button_widget',
101
107
  template: `
102
- <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
103
- @if(loading()){
108
+ <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
109
+ @if(icon() && text()){
110
+ <ax-prefix
111
+ ><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
112
+ ></ax-prefix>
113
+ } @else if(icon() && !text()) {
114
+ <ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
115
+ } @if(loading()){
104
116
  <ax-loading> </ax-loading>
105
117
  }
106
118
  </ax-button>
107
119
  `,
108
120
  standalone: true,
109
121
  changeDetection: ChangeDetectionStrategy.OnPush,
110
- imports: [CommonModule, AXButtonModule, AXLoadingModule],
122
+ imports: [CommonModule, AXButtonModule, AXLoadingModule, AXDecoratorModule, AXBadgeModule],
111
123
  inputs: [],
112
124
  }]
113
125
  }] });
@@ -138,6 +150,25 @@ const AXP_WIDGET_PROPERTY_GROUP = {
138
150
  title: "Widget"
139
151
  };
140
152
 
153
+ const AXP_DATA_SOURCE_PROPERTY = {
154
+ name: 'dataSource',
155
+ title: 'Data Source',
156
+ group: AXP_DATA_PROPERTY_GROUP,
157
+ schema: {
158
+ dataType: 'object',
159
+ interface: {
160
+ name: 'dataSource',
161
+ path: 'options.dataSource',
162
+ type: AXPWidgetsCatalog.select,
163
+ options: {
164
+ dataSource: "{{ methods.getDataSourceNames() }}",
165
+ hasClearButton: true,
166
+ },
167
+ },
168
+ },
169
+ visible: true,
170
+ };
171
+
141
172
  const AXP_NAME_PROPERTY = {
142
173
  name: 'name',
143
174
  title: 'Name',
@@ -184,6 +215,34 @@ const AXP_THEME_PROPERTY = {
184
215
  },
185
216
  visible: true,
186
217
  };
218
+ const AXP_DIRECTION_PROPERTY = {
219
+ name: 'direction',
220
+ title: 'Direction',
221
+ group: AXP_STYLING_PROPERTY_GROUP,
222
+ schema: {
223
+ dataType: 'string',
224
+ defaultValue: { id: 'horizontal' },
225
+ interface: {
226
+ name: 'direction',
227
+ path: 'options.direction',
228
+ type: AXPWidgetsCatalog.select,
229
+ options: {
230
+ hasClearButton: false,
231
+ dataSource: [
232
+ {
233
+ id: 'horizontal',
234
+ title: 'Horizontal',
235
+ },
236
+ {
237
+ id: 'vertical',
238
+ title: 'Vertical',
239
+ },
240
+ ],
241
+ },
242
+ },
243
+ },
244
+ visible: true,
245
+ };
187
246
  const AXP_COLOR_PROPERTY = {
188
247
  name: 'color',
189
248
  title: 'Color',
@@ -246,6 +305,20 @@ const AXP_VALIDATION_PROPERTY = {
246
305
  },
247
306
  visible: true,
248
307
  };
308
+ const AXP_CONTENT_PROPERTY = {
309
+ name: 'content',
310
+ title: 'Content',
311
+ group: AXP_DATA_PROPERTY_GROUP,
312
+ schema: {
313
+ dataType: 'string',
314
+ interface: {
315
+ name: 'content',
316
+ path: 'options.content',
317
+ type: AXPWidgetsCatalog.text,
318
+ },
319
+ },
320
+ visible: true,
321
+ };
249
322
  const AXP_DISABLED_PROPERTY = {
250
323
  name: 'disabled',
251
324
  title: 'Disabled',
@@ -349,6 +422,34 @@ const AXP_HAS_ICON_PROPERTY = {
349
422
  },
350
423
  visible: true,
351
424
  };
425
+ const AXP_ICON_PROPERTY = {
426
+ name: 'icon',
427
+ title: 'Icon Name',
428
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
429
+ schema: {
430
+ dataType: 'string',
431
+ interface: {
432
+ name: 'icon',
433
+ path: 'options.icon',
434
+ type: AXPWidgetsCatalog.text,
435
+ },
436
+ },
437
+ visible: true,
438
+ };
439
+ const AXP_IS_LOADING_PROPERTY = {
440
+ name: 'loading',
441
+ title: 'Is Loading',
442
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
443
+ schema: {
444
+ dataType: 'boolean',
445
+ interface: {
446
+ name: 'loading',
447
+ path: 'options.loading',
448
+ type: AXPWidgetsCatalog.toggle,
449
+ },
450
+ },
451
+ visible: true,
452
+ };
352
453
  const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
353
454
  name: 'hasClearButton',
354
455
  title: 'Clear Button',
@@ -601,7 +702,6 @@ function plainTextDefaultProperty() {
601
702
  group: AXP_DATA_PROPERTY_GROUP,
602
703
  schema: {
603
704
  dataType: 'string',
604
- defaultValue: "Sample Text",
605
705
  interface: {
606
706
  name: 'defaultValue',
607
707
  path: 'defaultValue',
@@ -611,6 +711,38 @@ function plainTextDefaultProperty() {
611
711
  visible: true,
612
712
  };
613
713
  }
714
+ function largeTextDefaultProperty() {
715
+ return {
716
+ name: 'defaultValue',
717
+ title: 'Default Value',
718
+ group: AXP_DATA_PROPERTY_GROUP,
719
+ schema: {
720
+ dataType: 'string',
721
+ interface: {
722
+ name: 'defaultValue',
723
+ path: 'defaultValue',
724
+ type: AXPWidgetsCatalog.largeText,
725
+ },
726
+ },
727
+ visible: true,
728
+ };
729
+ }
730
+ function numberDefaultProperty() {
731
+ return {
732
+ name: 'defaultValue',
733
+ title: 'Default Value',
734
+ group: AXP_DATA_PROPERTY_GROUP,
735
+ schema: {
736
+ dataType: 'number',
737
+ interface: {
738
+ name: 'defaultValue',
739
+ path: 'defaultValue',
740
+ type: AXPWidgetsCatalog.number,
741
+ },
742
+ },
743
+ visible: true,
744
+ };
745
+ }
614
746
 
615
747
  const AXP_LAYOUT_GRID_PROPERTY_GROUP = {
616
748
  name: "grid",
@@ -887,14 +1019,29 @@ const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
887
1019
  group: AXP_STYLING_PROPERTY_GROUP,
888
1020
  schema: {
889
1021
  dataType: 'string',
890
- defaultValue: '200px',
1022
+ defaultValue: '300px',
891
1023
  interface: {
892
1024
  name: 'width',
893
1025
  path: 'options.width',
894
1026
  type: AXPWidgetsCatalog.text,
895
1027
  },
896
1028
  },
897
- visible: true,
1029
+ visible: false,
1030
+ };
1031
+ const AXP_TABLE_COLUMN_HEIGHT_PROPERTY = {
1032
+ name: 'height',
1033
+ title: 'Height',
1034
+ group: AXP_STYLING_PROPERTY_GROUP,
1035
+ schema: {
1036
+ dataType: 'string',
1037
+ defaultValue: '300px',
1038
+ interface: {
1039
+ name: 'height',
1040
+ path: 'options.height',
1041
+ type: AXPWidgetsCatalog.text,
1042
+ },
1043
+ },
1044
+ visible: false,
898
1045
  };
899
1046
 
900
1047
  const AXPButtonWidget = {
@@ -903,15 +1050,18 @@ const AXPButtonWidget = {
903
1050
  description: 'Triggers customizable actions',
904
1051
  icon: 'fa-solid fa-play',
905
1052
  group: AXP_WIDGETS_ACTION_GROUP,
1053
+ type: 'action',
906
1054
  properties: [
907
1055
  AXP_DISABLED_PROPERTY,
908
1056
  cloneProperty(AXP_TEXT_PROPERTY, { schema: { defaultValue: 'Click Here' } }),
909
1057
  AXP_STYLE_COLOR_PROPERTY,
910
1058
  AXP_STYLE_LOOK_PROPERTY,
1059
+ AXP_ICON_PROPERTY,
1060
+ AXP_IS_LOADING_PROPERTY
911
1061
  ],
912
1062
  components: {
913
1063
  designer: {
914
- component: () => import('./acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs').then((c) => c.AXPButtonWidgetDesignerComponent),
1064
+ component: () => import('./acorex-platform-widgets-button-widget-designer.component-COvuxaTt.mjs').then((c) => c.AXPButtonWidgetDesignerComponent),
915
1065
  },
916
1066
  view: {
917
1067
  component: () => Promise.resolve().then(function () { return buttonWidgetView_component; }).then((c) => c.AXPButtonWidgetViewComponent),
@@ -940,7 +1090,7 @@ class AXPCheckBoxWidgetEditComponent extends AXPWidgetComponent {
940
1090
  <ax-label >{{label()}}</ax-label>
941
1091
  }
942
1092
  </ax-check-box>
943
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$1.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1093
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
944
1094
  }
945
1095
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
946
1096
  type: Component,
@@ -968,10 +1118,10 @@ var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
968
1118
  const AXPCheckBoxWidget = {
969
1119
  name: 'checkbox-editor',
970
1120
  title: 'Check Box',
971
- container: false,
972
1121
  group: AXP_WIDGETS_EDITOR_GROUP,
973
1122
  description: 'Selects multiple options via checkboxes',
974
1123
  icon: 'fa-solid fa-square-check',
1124
+ type: 'editor',
975
1125
  properties: [
976
1126
  AXP_NAME_PROPERTY,
977
1127
  AXP_DATA_PATH_PROPERTY,
@@ -983,7 +1133,7 @@ const AXPCheckBoxWidget = {
983
1133
  ],
984
1134
  components: {
985
1135
  designer: {
986
- component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-DfUr_DMU.mjs').then((c) => c.AXPCheckBoxWidgetDesignerComponent),
1136
+ component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs').then((c) => c.AXPCheckBoxWidgetDesignerComponent),
987
1137
  },
988
1138
  view: {
989
1139
  component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs').then((c) => c.AXPCheckBoxWidgetViewComponent),
@@ -995,7 +1145,7 @@ const AXPCheckBoxWidget = {
995
1145
  component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
996
1146
  },
997
1147
  column: {
998
- component: () => import('./acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs').then((c) => c.AXPCheckBoxWidgetColumnComponent),
1148
+ component: () => import('./acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs').then((c) => c.AXPCheckBoxWidgetColumnComponent),
999
1149
  },
1000
1150
  filter: {
1001
1151
  component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
@@ -1003,121 +1153,41 @@ const AXPCheckBoxWidget = {
1003
1153
  },
1004
1154
  };
1005
1155
 
1006
- class AXPContactWidgetViewComponent extends AXPWidgetComponent {
1156
+ class AXPContactWidgetColumnComponent extends AXPColumnWidgetComponent {
1007
1157
  constructor() {
1008
1158
  super(...arguments);
1009
- this.type = computed(() => this.options()['type']);
1010
- this.labelList = computed(() => this.options()['labelList'] || ['primary', 'secondary', 'Add New']);
1011
- this.hasLabel = computed(() => this.options()['hasLabel']);
1012
- this.multiple = computed(() => this.options()['multiple']);
1013
- this.hasIcon = computed(() => this.options()['hasIcon']);
1014
- this.internalValue = computed(() => this.valueToArray());
1015
- this.clipboard = inject(AXPClipBoardService);
1016
- this.chooseIcon = () => {
1017
- switch (this.type()) {
1018
- case 'email':
1019
- return 'fa-envelope';
1020
- case 'link':
1021
- return 'fa-link';
1022
- case 'phone':
1023
- return 'fa-phone';
1024
- default:
1025
- return 'fa-info';
1026
- }
1027
- };
1028
- this.itemToArray = (item) => {
1159
+ this.itemToValue = (item) => {
1029
1160
  if (typeof item === 'object')
1030
- return {
1031
- value: item?.value ?? '',
1032
- label: this.hasLabel() ? item?.label || this.labelList()[0] : undefined,
1033
- icon: this.hasIcon() ? item?.icon || this.chooseIcon() : undefined,
1034
- };
1161
+ return item?.value ?? '';
1035
1162
  else
1036
- return {
1037
- value: item,
1038
- label: this.hasLabel() ? this.labelList()[0] : undefined,
1039
- icon: this.hasIcon() ? this.chooseIcon() : undefined,
1040
- };
1163
+ return item;
1041
1164
  };
1042
1165
  }
1043
- valueToArray() {
1044
- const value = this.getValue();
1045
- if (Array.isArray(value)) {
1046
- return value.map((item) => this.itemToArray(item));
1047
- }
1166
+ getText(seperator) {
1167
+ const sep = seperator === 'comma' ? ',' : '\\n';
1168
+ if (typeof this.rawValue === 'string')
1169
+ return this.rawValue;
1048
1170
  else {
1049
- return [this.itemToArray(value)];
1171
+ return this.rawValue?.map((item) => this.itemToValue(item)).join(sep);
1050
1172
  }
1051
1173
  }
1052
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1053
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-1 ax-justify-center ax-items-center ax-group">
1054
- @for(item of internalValue();track $index){ @if(item){ @if(hasIcon()){
1055
- <ax-icon class="ax-col-start-1 ax-col-end-2 fa-solid ax-text-neutral-400" [class]="chooseIcon()"> </ax-icon>
1056
- } @let href = type() === 'link' ? item.value : type()==='phone'? 'tel:'+item.value : 'mailto:'+ item.value ;
1057
- <div class="ax-col-start-2 ax-col-end-9">
1058
- <a
1059
- [href]="href"
1060
- [target]="'_blank'"
1061
- class="ax-text-blue-700 group-hover:!ax-text-primary-500 group-hover:ax-underline group-hover:ax-decoration-blue-700"
1062
- >{{ item.value }}</a
1063
- >
1064
- <span
1065
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
1066
- (click)="clipboard.copy('Email', item.value)"
1067
- >
1068
- <i class="fa-solid fa-copy "></i>
1069
- </span>
1070
- </div>
1071
- @if(hasLabel()){
1072
- <ax-badge
1073
- class="ax-col-start-10 ax-col-end-12 ax-flex ax-justify-center ax-items-center"
1074
- color="primary"
1075
- [look]="'twotone'"
1076
- [text]="item.label ?? ''"
1077
- ></ax-badge>
1078
- } }}
1079
- </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1174
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1175
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPContactWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<span class="ax-truncate" [title]="getText('line')">{{ getText('comma') }}</span>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1080
1176
  }
1081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetViewComponent, decorators: [{
1177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetColumnComponent, decorators: [{
1082
1178
  type: Component,
1083
1179
  args: [{
1084
- template: `<div class="ax-grid ax-grid-cols-12 ax-gap-1 ax-justify-center ax-items-center ax-group">
1085
- @for(item of internalValue();track $index){ @if(item){ @if(hasIcon()){
1086
- <ax-icon class="ax-col-start-1 ax-col-end-2 fa-solid ax-text-neutral-400" [class]="chooseIcon()"> </ax-icon>
1087
- } @let href = type() === 'link' ? item.value : type()==='phone'? 'tel:'+item.value : 'mailto:'+ item.value ;
1088
- <div class="ax-col-start-2 ax-col-end-9">
1089
- <a
1090
- [href]="href"
1091
- [target]="'_blank'"
1092
- class="ax-text-blue-700 group-hover:!ax-text-primary-500 group-hover:ax-underline group-hover:ax-decoration-blue-700"
1093
- >{{ item.value }}</a
1094
- >
1095
- <span
1096
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
1097
- (click)="clipboard.copy('Email', item.value)"
1098
- >
1099
- <i class="fa-solid fa-copy "></i>
1100
- </span>
1101
- </div>
1102
- @if(hasLabel()){
1103
- <ax-badge
1104
- class="ax-col-start-10 ax-col-end-12 ax-flex ax-justify-center ax-items-center"
1105
- color="primary"
1106
- [look]="'twotone'"
1107
- [text]="item.label ?? ''"
1108
- ></ax-badge>
1109
- } }}
1110
- </div> `,
1180
+ template: `<span class="ax-truncate" [title]="getText('line')">{{ getText('comma') }}</span>`,
1111
1181
  standalone: true,
1112
1182
  changeDetection: ChangeDetectionStrategy.OnPush,
1113
- imports: [CommonModule, FormsModule, AXBadgeModule, AXDecoratorModule],
1114
- inputs: [],
1183
+ imports: [CommonModule],
1184
+ inputs: ['rawValue'],
1115
1185
  }]
1116
1186
  }] });
1117
1187
 
1118
- var contactWidgetView_component = /*#__PURE__*/Object.freeze({
1188
+ var contactWidgetColumn_component = /*#__PURE__*/Object.freeze({
1119
1189
  __proto__: null,
1120
- AXPContactWidgetViewComponent: AXPContactWidgetViewComponent
1190
+ AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent
1121
1191
  });
1122
1192
 
1123
1193
  class popupComponent extends AXBasePageComponent {
@@ -1150,7 +1220,7 @@ class popupComponent extends AXBasePageComponent {
1150
1220
  <ax-button [text]="'apply' | translate | async" color="primary" (onClick)="handleClose(form)"></ax-button>
1151
1221
  </ax-suffix>
1152
1222
  </ax-footer>
1153
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$1.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i4$1.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
1223
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$2.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$3.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i4$1.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
1154
1224
  }
1155
1225
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: popupComponent, decorators: [{
1156
1226
  type: Component,
@@ -1182,10 +1252,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1182
1252
 
1183
1253
  class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1184
1254
  constructor() {
1185
- super(...arguments);
1255
+ super();
1186
1256
  //properties
1187
- this.type = computed(() => this.options()['type']);
1188
- this.labelList = computed(() => this.options()['labelList'] || ['primary', 'secondary', 'new']);
1257
+ this.type = computed(() => this.options()['type']?.id ?? 'email');
1258
+ this.labelList = computed(() => this.options()['labelList'] || ['primary', 'secondary', 'Add New']);
1189
1259
  this.hasLabel = computed(() => this.options()['hasLabel']);
1190
1260
  this.multiple = computed(() => this.options()['multiple']);
1191
1261
  this.hasIcon = computed(() => this.options()['hasIcon']);
@@ -1232,6 +1302,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1232
1302
  return 'fa-info';
1233
1303
  }
1234
1304
  };
1305
+ effect(() => console.log(this.type()));
1235
1306
  }
1236
1307
  addItem() {
1237
1308
  const newValues = [...this.internalValue(), this.emptyValue()];
@@ -1264,7 +1335,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1264
1335
  }
1265
1336
  }
1266
1337
  }
1267
- const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, [name]: value } : item));
1338
+ const newValues = this.internalValue().map((item, index) => selectedIndex === index ? { ...item, [name]: value } : item);
1268
1339
  if (this.multiple())
1269
1340
  this.setValue(newValues);
1270
1341
  else
@@ -1277,12 +1348,12 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1277
1348
  return 'ax-col-start-1 ax-col-end-13 lg:ax-col-end-7';
1278
1349
  }
1279
1350
  else {
1280
- return 'ax-col-start-1 ax-col-end-12 lg:ax-col-start-7 lg:ax-col-end-12';
1351
+ return 'ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12 ';
1281
1352
  }
1282
1353
  }
1283
1354
  else {
1284
1355
  if (element === 'value') {
1285
- return 'ax-col-start-1 ax-col-end-12';
1356
+ return 'ax-col-start-1 ax-col-end-11';
1286
1357
  }
1287
1358
  }
1288
1359
  }
@@ -1328,7 +1399,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1328
1399
  cls[`ax-flex-1`] = true;
1329
1400
  return cls;
1330
1401
  }
1331
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1402
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1332
1403
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<div class="lg:ax-grid lg:ax-grid-cols-12 lg:ax-gap-4">
1333
1404
  @for(item of internalValue();track $index) {
1334
1405
  <ax-text-box
@@ -1341,7 +1412,11 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1341
1412
  [disabled]="disabled()"
1342
1413
  >
1343
1414
  @for (validation of validationRules; track $index) {
1344
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
1415
+ <ax-validation-rule
1416
+ [rule]="validation.rule"
1417
+ [message]="validation.options?.message"
1418
+ [options]="validation.options"
1419
+ ></ax-validation-rule>
1345
1420
  }
1346
1421
  <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
1347
1422
  </ax-text-box>
@@ -1376,14 +1451,14 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
1376
1451
  [disabled]="disabled()"
1377
1452
  look="twotone"
1378
1453
  (onClick)="addItem()"
1379
- class="sm:ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 sm:ax-col-end-13"
1454
+ class="ax-col-start-7 ax-col-end-13 lg:ax-col-start-10 xl:ax-col-start-11 "
1380
1455
  >
1381
1456
  <ax-prefix>
1382
1457
  <ax-icon class="fa-solid fa-add"></ax-icon>
1383
1458
  </ax-prefix>
1384
1459
  </ax-button>
1385
1460
  }
1386
- </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1461
+ </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1387
1462
  }
1388
1463
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, decorators: [{
1389
1464
  type: Component,
@@ -1400,7 +1475,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1400
1475
  [disabled]="disabled()"
1401
1476
  >
1402
1477
  @for (validation of validationRules; track $index) {
1403
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
1478
+ <ax-validation-rule
1479
+ [rule]="validation.rule"
1480
+ [message]="validation.options?.message"
1481
+ [options]="validation.options"
1482
+ ></ax-validation-rule>
1404
1483
  }
1405
1484
  <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
1406
1485
  </ax-text-box>
@@ -1435,7 +1514,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1435
1514
  [disabled]="disabled()"
1436
1515
  look="twotone"
1437
1516
  (onClick)="addItem()"
1438
- class="sm:ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 sm:ax-col-end-13"
1517
+ class="ax-col-start-7 ax-col-end-13 lg:ax-col-start-10 xl:ax-col-start-11 "
1439
1518
  >
1440
1519
  <ax-prefix>
1441
1520
  <ax-icon class="fa-solid fa-add"></ax-icon>
@@ -1459,7 +1538,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1459
1538
  ],
1460
1539
  inputs: [],
1461
1540
  }]
1462
- }], propDecorators: { __class: [{
1541
+ }], ctorParameters: () => [], propDecorators: { __class: [{
1463
1542
  type: HostBinding,
1464
1543
  args: ['class']
1465
1544
  }] } });
@@ -1469,81 +1548,141 @@ var contactWidgetEdit_component = /*#__PURE__*/Object.freeze({
1469
1548
  AXPContactWidgetEditComponent: AXPContactWidgetEditComponent
1470
1549
  });
1471
1550
 
1472
- class AXPContactWidgetFilterComponent extends AXPWidgetComponent {
1473
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1474
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPContactWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1551
+ class AXPContactWidgetPrintComponent extends AXPWidgetComponent {
1552
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1553
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPContactWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1475
1554
  }
1476
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetFilterComponent, decorators: [{
1555
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetPrintComponent, decorators: [{
1477
1556
  type: Component,
1478
1557
  args: [{
1479
1558
  template: ``,
1480
1559
  standalone: true,
1481
1560
  changeDetection: ChangeDetectionStrategy.OnPush,
1482
- imports: [CommonModule, FormsModule],
1561
+ imports: [CommonModule],
1483
1562
  inputs: []
1484
1563
  }]
1485
1564
  }] });
1486
1565
 
1487
- var contactWidgetFilter_component = /*#__PURE__*/Object.freeze({
1566
+ var contactWidgetPrint_component = /*#__PURE__*/Object.freeze({
1488
1567
  __proto__: null,
1489
- AXPContactWidgetFilterComponent: AXPContactWidgetFilterComponent
1568
+ AXPContactWidgetPrintComponent: AXPContactWidgetPrintComponent
1490
1569
  });
1491
1570
 
1492
- class AXPContactWidgetColumnComponent extends AXPColumnWidgetComponent {
1571
+ class AXPContactWidgetViewComponent extends AXPWidgetComponent {
1493
1572
  constructor() {
1494
1573
  super(...arguments);
1495
- this.itemToValue = (item) => {
1574
+ this.type = computed(() => this.options()['type']);
1575
+ this.labelList = computed(() => this.options()['labelList'] || ['primary', 'secondary', 'Add New']);
1576
+ this.hasLabel = computed(() => this.options()['hasLabel']);
1577
+ this.multiple = computed(() => this.options()['multiple']);
1578
+ this.hasIcon = computed(() => this.options()['hasIcon']);
1579
+ this.internalValue = computed(() => this.itemToArray());
1580
+ this.clipboard = inject(AXPClipBoardService);
1581
+ this.chooseIcon = () => {
1582
+ switch (this.type()) {
1583
+ case 'email':
1584
+ return 'fa-envelope';
1585
+ case 'link':
1586
+ return 'fa-link';
1587
+ case 'phone':
1588
+ return 'fa-phone';
1589
+ default:
1590
+ return 'fa-info';
1591
+ }
1592
+ };
1593
+ this.correctItems = (item) => {
1496
1594
  if (typeof item === 'object')
1497
- return item?.value ?? '';
1595
+ return {
1596
+ value: item?.value ?? '',
1597
+ label: this.hasLabel() ? item?.label || this.labelList()[0] : undefined,
1598
+ icon: this.hasIcon() ? item?.icon || this.chooseIcon() : undefined,
1599
+ };
1498
1600
  else
1499
- return item;
1601
+ return {
1602
+ value: item,
1603
+ label: this.hasLabel() ? this.labelList()[0] : undefined,
1604
+ icon: this.hasIcon() ? this.chooseIcon() : undefined,
1605
+ };
1500
1606
  };
1501
1607
  }
1502
- getText(seperator) {
1503
- const sep = seperator === 'comma' ? ',' : '\\n';
1504
- if (typeof this.rawValue === 'string')
1505
- return this.rawValue;
1608
+ itemToArray() {
1609
+ const value = this.getValue();
1610
+ if (Array.isArray(value)) {
1611
+ return value.map((item) => this.correctItems(item));
1612
+ }
1506
1613
  else {
1507
- return this.rawValue?.map((item) => this.itemToValue(item)).join(sep);
1614
+ return [this.correctItems(value)];
1508
1615
  }
1509
1616
  }
1510
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1511
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPContactWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<span class="ax-truncate" [title]="getText('line')">{{ getText('comma') }}</span>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1617
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1618
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1619
+ @for(item of internalValue();track $index){ @let href = type() === 'link' ? item.value :
1620
+ type()==='phone'?'tel:'+item.value : 'mailto:'+ item.value ;
1621
+ <div class="ax-flex ax-gap-4 ax-items-center ax-justify-between ax-py-1">
1622
+ <div class="ax-flex ax-gap-4 ax-group ax-items-center ax-justify-center ax-truncate">
1623
+ @if(hasIcon()){
1624
+ <ax-icon class="fa-solid ax-text-neutral-400" [class]="chooseIcon()"> </ax-icon>
1625
+ }
1626
+ <a
1627
+ [href]="href"
1628
+ [target]="'_blank'"
1629
+ class="ax-truncate ax-text-blue-700 group-hover:!ax-text-primary-500 group-hover:ax-underline group-hover:ax-decoration-blue-700"
1630
+ >{{ item.value }}</a
1631
+ >
1632
+ <span
1633
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
1634
+ (click)="clipboard.copy(type(), item.value)"
1635
+ >
1636
+ <i class="fa-solid fa-copy"></i>
1637
+ </span>
1638
+ </div>
1639
+ @if(hasLabel()){
1640
+ <div><ax-badge color="primary" [look]="'twotone'" [text]="item.label ?? ''"></ax-badge></div>
1641
+ }
1642
+ </div>
1643
+ }
1644
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1512
1645
  }
1513
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetColumnComponent, decorators: [{
1646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetViewComponent, decorators: [{
1514
1647
  type: Component,
1515
1648
  args: [{
1516
- template: `<span class="ax-truncate" [title]="getText('line')">{{ getText('comma') }}</span>`,
1517
- standalone: true,
1518
- changeDetection: ChangeDetectionStrategy.OnPush,
1519
- imports: [CommonModule],
1520
- inputs: ['rawValue'],
1521
- }]
1522
- }] });
1523
-
1524
- var contactWidgetColumn_component = /*#__PURE__*/Object.freeze({
1525
- __proto__: null,
1526
- AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent
1527
- });
1528
-
1529
- class AXPContactWidgetPrintComponent extends AXPWidgetComponent {
1530
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1531
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPContactWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1532
- }
1533
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetPrintComponent, decorators: [{
1534
- type: Component,
1535
- args: [{
1536
- template: ``,
1649
+ template: `
1650
+ @for(item of internalValue();track $index){ @let href = type() === 'link' ? item.value :
1651
+ type()==='phone'?'tel:'+item.value : 'mailto:'+ item.value ;
1652
+ <div class="ax-flex ax-gap-4 ax-items-center ax-justify-between ax-py-1">
1653
+ <div class="ax-flex ax-gap-4 ax-group ax-items-center ax-justify-center ax-truncate">
1654
+ @if(hasIcon()){
1655
+ <ax-icon class="fa-solid ax-text-neutral-400" [class]="chooseIcon()"> </ax-icon>
1656
+ }
1657
+ <a
1658
+ [href]="href"
1659
+ [target]="'_blank'"
1660
+ class="ax-truncate ax-text-blue-700 group-hover:!ax-text-primary-500 group-hover:ax-underline group-hover:ax-decoration-blue-700"
1661
+ >{{ item.value }}</a
1662
+ >
1663
+ <span
1664
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
1665
+ (click)="clipboard.copy(type(), item.value)"
1666
+ >
1667
+ <i class="fa-solid fa-copy"></i>
1668
+ </span>
1669
+ </div>
1670
+ @if(hasLabel()){
1671
+ <div><ax-badge color="primary" [look]="'twotone'" [text]="item.label ?? ''"></ax-badge></div>
1672
+ }
1673
+ </div>
1674
+ }
1675
+ `,
1537
1676
  standalone: true,
1538
1677
  changeDetection: ChangeDetectionStrategy.OnPush,
1539
- imports: [CommonModule],
1540
- inputs: []
1678
+ imports: [CommonModule, FormsModule, AXBadgeModule, AXDecoratorModule],
1679
+ inputs: [],
1541
1680
  }]
1542
1681
  }] });
1543
1682
 
1544
- var contactWidgetPrint_component = /*#__PURE__*/Object.freeze({
1683
+ var contactWidgetView_component = /*#__PURE__*/Object.freeze({
1545
1684
  __proto__: null,
1546
- AXPContactWidgetPrintComponent: AXPContactWidgetPrintComponent
1685
+ AXPContactWidgetViewComponent: AXPContactWidgetViewComponent
1547
1686
  });
1548
1687
 
1549
1688
  const AXPContactWidget = {
@@ -1552,15 +1691,17 @@ const AXPContactWidget = {
1552
1691
  description: 'Inputs contact information',
1553
1692
  group: AXP_WIDGETS_EDITOR_GROUP,
1554
1693
  icon: 'fa-solid fa-address-book',
1694
+ type: 'editor',
1555
1695
  properties: [
1556
1696
  {
1557
1697
  name: 'type',
1558
- title: 'Type',
1698
+ title: 'Contact Type',
1559
1699
  group: AXP_BEHAVIOR_PROPERTY_GROUP,
1560
1700
  schema: {
1561
1701
  dataType: 'string',
1562
1702
  nullable: false,
1563
1703
  interface: {
1704
+ defaultValue: { id: 'link', title: 'Link' },
1564
1705
  name: 'type',
1565
1706
  path: 'options.type',
1566
1707
  type: AXPWidgetsCatalog.select,
@@ -1590,7 +1731,6 @@ const AXPContactWidget = {
1590
1731
  dataSource: [
1591
1732
  { id: 'primary', title: 'Primary' },
1592
1733
  { id: 'secondary', title: 'Secondary' },
1593
- { id: 'new', title: 'New' },
1594
1734
  ],
1595
1735
  },
1596
1736
  },
@@ -1611,7 +1751,7 @@ const AXPContactWidget = {
1611
1751
  component: () => Promise.resolve().then(function () { return contactWidgetEdit_component; }).then((c) => c.AXPContactWidgetEditComponent),
1612
1752
  },
1613
1753
  filter: {
1614
- component: () => Promise.resolve().then(function () { return contactWidgetFilter_component; }).then((c) => c.AXPContactWidgetFilterComponent),
1754
+ component: () => import('./acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs').then((c) => c.AXPContactWidgetFilterComponent),
1615
1755
  },
1616
1756
  column: {
1617
1757
  component: () => Promise.resolve().then(function () { return contactWidgetColumn_component; }).then((c) => c.AXPContactWidgetColumnComponent),
@@ -1629,9 +1769,11 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetComponent {
1629
1769
  constructor() {
1630
1770
  super(...arguments);
1631
1771
  this.formatter = inject(AXDateTimeFormatter);
1632
- this.multiple = computed(() => this.options()["multiple"]);
1633
- this.format = computed(() => this.options()["format"]['id']);
1634
- this.internalValue = computed(() => Array.isArray(this.getValue()) ? this.getValue().map((v) => this.handleFormat(v)) : [this.handleFormat(this.getValue())]);
1772
+ this.multiple = computed(() => this.options()['multiple']);
1773
+ this.format = computed(() => this.options()['format']['id']);
1774
+ this.internalValue = computed(() => Array.isArray(this.getValue())
1775
+ ? this.getValue().map((v) => this.handleFormat(v))
1776
+ : [this.handleFormat(this.getValue())]);
1635
1777
  }
1636
1778
  handleFormat(value) {
1637
1779
  return value ? this.formatter.format(new Date(value), { format: this.format() }) : '---';
@@ -1639,14 +1781,10 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetComponent {
1639
1781
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1640
1782
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1641
1783
  <div>
1642
- @if(multiple()){
1643
- @for (item of internalValue(); track $index) {
1644
- <p>{{ item }}</p>
1645
- }
1646
- }
1647
- @else
1648
- {
1649
- <p>{{ internalValue()[0] }}</p>
1784
+ @if(multiple()){ @for (item of internalValue(); track $index) {
1785
+ <p>{{ item }}</p>
1786
+ } } @else {
1787
+ <p>{{ internalValue()[0] }}</p>
1650
1788
  }
1651
1789
  </div>
1652
1790
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
@@ -1656,14 +1794,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1656
1794
  args: [{
1657
1795
  template: `
1658
1796
  <div>
1659
- @if(multiple()){
1660
- @for (item of internalValue(); track $index) {
1661
- <p>{{ item }}</p>
1662
- }
1663
- }
1664
- @else
1665
- {
1666
- <p>{{ internalValue()[0] }}</p>
1797
+ @if(multiple()){ @for (item of internalValue(); track $index) {
1798
+ <p>{{ item }}</p>
1799
+ } } @else {
1800
+ <p>{{ internalValue()[0] }}</p>
1667
1801
  }
1668
1802
  </div>
1669
1803
  `,
@@ -1683,11 +1817,12 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
1683
1817
  constructor() {
1684
1818
  super(...arguments);
1685
1819
  this.validationService = inject(AXValidationService);
1686
- this.multiple = computed(() => this.options()["multiple"]);
1687
- this.clearButton = computed(() => this.options()["clearButton"]);
1688
- this.format = computed(() => this.options()["format"]?.['id']);
1689
- this.disabled = computed(() => this.options()["disabled"]);
1690
- this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
1820
+ this.multiple = computed(() => this.options()['multiple']);
1821
+ this.clearButton = computed(() => this.options()['clearButton']);
1822
+ this.format = computed(() => this.options()['format']?.['id']);
1823
+ this.disabled = computed(() => this.options()['disabled']);
1824
+ this.placeholder = computed(() => this.options()['placeholder']);
1825
+ this.internalValue = computed(() => Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]);
1691
1826
  this._validationRules = [];
1692
1827
  this.calendarFormat = computed(() => {
1693
1828
  if (this.format() === 'date')
@@ -1737,29 +1872,35 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
1737
1872
  (onValueChanged)="handleValueChange($event, $index)"
1738
1873
  [disabled]="disabled()"
1739
1874
  [format]="calendarFormat()"
1875
+ [placeholder]="placeholder()"
1740
1876
  >
1741
- @for (validation of validationRules; track $index)
1742
- {
1743
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
1744
- }
1745
- @if(clearButton()){
1746
- <ax-clear-button></ax-clear-button>
1747
- }
1748
- @if(multiple())
1749
- {
1750
- <ax-suffix>
1751
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1752
- <ax-icon class="far fa-trash"> </ax-icon>
1753
- </ax-button>
1754
- </ax-suffix>
1877
+ @for (validation of validationRules; track $index) {
1878
+ <ax-validation-rule
1879
+ [rule]="validation.rule"
1880
+ [message]="validation.options?.message"
1881
+ [options]="validation.options"
1882
+ ></ax-validation-rule>
1883
+ } @if(clearButton()){
1884
+ <ax-clear-button></ax-clear-button>
1885
+ } @if(multiple()) {
1886
+ <ax-suffix>
1887
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1888
+ <ax-icon class="far fa-trash"> </ax-icon>
1889
+ </ax-button>
1890
+ </ax-suffix>
1755
1891
  }
1756
1892
  </ax-datetime-box>
1757
- }
1758
- @if(multiple()){
1759
- <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()" [disabled]="disabled()"></ax-button>
1893
+ } @if(multiple()){
1894
+ <ax-button
1895
+ class="ax-col-start-9 lg:ax-col-start-10 xl:ax-col-start-11 ax-col-end-13"
1896
+ [text]="!internalValue().length ? 'Add New' : 'Add Another'"
1897
+ look="twotone"
1898
+ (onClick)="addItem()"
1899
+ [disabled]="disabled()"
1900
+ ></ax-button>
1760
1901
  }
1761
1902
  </div>
1762
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$2.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1903
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$2.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1763
1904
  }
1764
1905
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
1765
1906
  type: Component,
@@ -1773,32 +1914,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1773
1914
  (onValueChanged)="handleValueChange($event, $index)"
1774
1915
  [disabled]="disabled()"
1775
1916
  [format]="calendarFormat()"
1917
+ [placeholder]="placeholder()"
1776
1918
  >
1777
- @for (validation of validationRules; track $index)
1778
- {
1779
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
1780
- }
1781
- @if(clearButton()){
1782
- <ax-clear-button></ax-clear-button>
1783
- }
1784
- @if(multiple())
1785
- {
1786
- <ax-suffix>
1787
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1788
- <ax-icon class="far fa-trash"> </ax-icon>
1789
- </ax-button>
1790
- </ax-suffix>
1919
+ @for (validation of validationRules; track $index) {
1920
+ <ax-validation-rule
1921
+ [rule]="validation.rule"
1922
+ [message]="validation.options?.message"
1923
+ [options]="validation.options"
1924
+ ></ax-validation-rule>
1925
+ } @if(clearButton()){
1926
+ <ax-clear-button></ax-clear-button>
1927
+ } @if(multiple()) {
1928
+ <ax-suffix>
1929
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1930
+ <ax-icon class="far fa-trash"> </ax-icon>
1931
+ </ax-button>
1932
+ </ax-suffix>
1791
1933
  }
1792
1934
  </ax-datetime-box>
1793
- }
1794
- @if(multiple()){
1795
- <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()" [disabled]="disabled()"></ax-button>
1935
+ } @if(multiple()){
1936
+ <ax-button
1937
+ class="ax-col-start-9 lg:ax-col-start-10 xl:ax-col-start-11 ax-col-end-13"
1938
+ [text]="!internalValue().length ? 'Add New' : 'Add Another'"
1939
+ look="twotone"
1940
+ (onClick)="addItem()"
1941
+ [disabled]="disabled()"
1942
+ ></ax-button>
1796
1943
  }
1797
1944
  </div>
1798
1945
  `,
1799
1946
  standalone: true,
1800
1947
  changeDetection: ChangeDetectionStrategy.OnPush,
1801
- imports: [CommonModule, FormsModule, AXFormModule, AXValidationModule, AXDateTimeBoxModule, AXButtonModule, AXDecoratorModule, AXValidationModule],
1948
+ imports: [
1949
+ CommonModule,
1950
+ FormsModule,
1951
+ AXFormModule,
1952
+ AXValidationModule,
1953
+ AXDateTimeBoxModule,
1954
+ AXButtonModule,
1955
+ AXDecoratorModule,
1956
+ AXValidationModule,
1957
+ ],
1802
1958
  inputs: [],
1803
1959
  }]
1804
1960
  }], propDecorators: { __class: [{
@@ -1901,6 +2057,7 @@ const AXPDateTimeBoxWidget = {
1901
2057
  description: 'Selects date and time',
1902
2058
  icon: 'fa-solid fa-calendar',
1903
2059
  group: AXP_WIDGETS_EDITOR_GROUP,
2060
+ type: 'editor',
1904
2061
  properties: [
1905
2062
  AXP_NAME_PROPERTY,
1906
2063
  AXP_DATA_PATH_PROPERTY,
@@ -1993,7 +2150,7 @@ class AXPEmailBoxWidgetViewComponent extends AXPWidgetComponent {
1993
2150
  }
1994
2151
  </ng-template>
1995
2152
  </div>
1996
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2153
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1997
2154
  }
1998
2155
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
1999
2156
  type: Component,
@@ -2194,7 +2351,7 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
2194
2351
  }
2195
2352
  }
2196
2353
  </div>
2197
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2354
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2198
2355
  }
2199
2356
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
2200
2357
  type: Component,
@@ -2405,6 +2562,7 @@ const AXPEmailBoxWidget = {
2405
2562
  description: 'Inputs and validates email addresses',
2406
2563
  icon: 'fa-solid fa-envelope',
2407
2564
  group: AXP_WIDGETS_EDITOR_GROUP,
2565
+ type: 'editor',
2408
2566
  properties: [
2409
2567
  AXP_NAME_PROPERTY,
2410
2568
  AXP_DATA_PATH_PROPERTY,
@@ -2499,7 +2657,7 @@ class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
2499
2657
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2500
2658
  }
2501
2659
  </ax-text-area>
2502
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXTextAreaModule }, { kind: "component", type: i4$2.AXTextAreaComponent, selector: "ax-text-area", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "placeholder", "maxLength", "look", "rows", "allowResize", "showCounter"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2660
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXTextAreaModule }, { kind: "component", type: i4$2.AXTextAreaComponent, selector: "ax-text-area", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "placeholder", "maxLength", "look", "rows", "allowResize", "showCounter"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2503
2661
  }
2504
2662
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetEditComponent, decorators: [{
2505
2663
  type: Component,
@@ -2600,13 +2758,15 @@ const AXPLargeTextWidget = {
2600
2758
  description: 'Inputs long text entries',
2601
2759
  icon: 'fa-solid fa-input-text',
2602
2760
  group: AXP_WIDGETS_EDITOR_GROUP,
2761
+ type: 'editor',
2603
2762
  properties: [
2604
2763
  AXP_NAME_PROPERTY,
2605
2764
  AXP_DATA_PATH_PROPERTY,
2606
2765
  AXP_DISABLED_PROPERTY,
2607
2766
  AXP_VALIDATION_PROPERTY,
2608
2767
  AXP_PLACEHOLDER_PROPERTY,
2609
- cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '300px' } }),
2768
+ largeTextDefaultProperty(),
2769
+ //cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '300px' } }),
2610
2770
  ],
2611
2771
  components: {
2612
2772
  view: {
@@ -2693,7 +2853,7 @@ class AXPLinkWidgetViewComponent extends AXPWidgetComponent {
2693
2853
  </div>
2694
2854
  }
2695
2855
  </ng-template>
2696
- </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2856
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2697
2857
  }
2698
2858
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetViewComponent, decorators: [{
2699
2859
  type: Component,
@@ -3009,7 +3169,7 @@ class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
3009
3169
  >
3010
3170
  </ax-select-box>
3011
3171
  } }
3012
- </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3172
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3013
3173
  }
3014
3174
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
3015
3175
  type: Component,
@@ -3197,6 +3357,7 @@ const AXPLinkWidget = {
3197
3357
  description: 'Inputs and edits URLs',
3198
3358
  icon: 'fa-solid fa-link',
3199
3359
  group: AXP_WIDGETS_EDITOR_GROUP,
3360
+ type: 'editor',
3200
3361
  components: {
3201
3362
  view: {
3202
3363
  component: () => Promise.resolve().then(function () { return linkWidgetView_component; }).then((c) => c.AXPLinkWidgetViewComponent),
@@ -3223,8 +3384,8 @@ class AXPNumberBoxWidgetViewComponent extends AXPWidgetComponent {
3223
3384
  constructor() {
3224
3385
  super(...arguments);
3225
3386
  this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
3226
- this.multiple = computed(() => this.options()["multiple"]);
3227
- this.format = computed(() => this.options()["format"]);
3387
+ this.multiple = computed(() => this.options()['multiple']);
3388
+ this.format = computed(() => this.options()['format']);
3228
3389
  this.formatService = inject(AXFormatService);
3229
3390
  }
3230
3391
  getValue() {
@@ -3236,13 +3397,10 @@ class AXPNumberBoxWidgetViewComponent extends AXPWidgetComponent {
3236
3397
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3237
3398
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPNumberBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3238
3399
  <div>
3239
- @if(multiple()){
3240
- @for (item of internalValue(); track $index) {
3241
- <p>{{ item }}</p>
3242
- }
3243
- }@else
3244
- {
3245
- <p>{{ internalValue()[0] }}</p>
3400
+ @if(multiple()){ @for (item of internalValue(); track $index) {
3401
+ <p>{{ item }}</p>
3402
+ } }@else {
3403
+ <p>{{ internalValue()[0] }}</p>
3246
3404
  }
3247
3405
  </div>
3248
3406
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
@@ -3252,13 +3410,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3252
3410
  args: [{
3253
3411
  template: `
3254
3412
  <div>
3255
- @if(multiple()){
3256
- @for (item of internalValue(); track $index) {
3257
- <p>{{ item }}</p>
3258
- }
3259
- }@else
3260
- {
3261
- <p>{{ internalValue()[0] }}</p>
3413
+ @if(multiple()){ @for (item of internalValue(); track $index) {
3414
+ <p>{{ item }}</p>
3415
+ } }@else {
3416
+ <p>{{ internalValue()[0] }}</p>
3262
3417
  }
3263
3418
  </div>
3264
3419
  `,
@@ -3277,16 +3432,16 @@ var numberBoxWidgetView_component = /*#__PURE__*/Object.freeze({
3277
3432
  class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
3278
3433
  constructor() {
3279
3434
  super(...arguments);
3280
- this.disabled = computed(() => this.options()["disabled"]);
3281
- this.multiple = computed(() => this.options()["multiple"]);
3282
- this.clearButton = computed(() => this.options()["clearButton"] ?? true);
3283
- this.decimals = computed(() => this.options()["decimals"] ?? 0);
3284
- this.minValue = computed(() => this.options()["minValue"]);
3285
- this.maxValue = computed(() => this.options()["maxValue"]);
3286
- this.placeholder = computed(() => this.options()["placeholder"]);
3435
+ this.disabled = computed(() => this.options()['disabled']);
3436
+ this.multiple = computed(() => this.options()['multiple']);
3437
+ this.clearButton = computed(() => this.options()['hasClearButton'] ?? true);
3438
+ this.decimals = computed(() => this.options()['decimals'] ?? 0);
3439
+ this.minValue = computed(() => this.options()['minValue']);
3440
+ this.maxValue = computed(() => this.options()['maxValue']);
3441
+ this.placeholder = computed(() => this.options()['placeholder']);
3287
3442
  this.validationService = inject(AXValidationService);
3288
3443
  this.validationRules = [];
3289
- this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
3444
+ this.internalValue = computed(() => Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]);
3290
3445
  this.validateFn = async (value, options) => {
3291
3446
  const vn = this.validationService.ruleFor(value);
3292
3447
  this.validationRules.forEach((v) => {
@@ -3339,35 +3494,31 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
3339
3494
  [disabled]="disabled()"
3340
3495
  >
3341
3496
  <ax-validation-rule rule="callback" [options]="{ validate: validateFn }"></ax-validation-rule>
3342
- @if(clearButton())
3343
- {
3344
- <ax-clear-button></ax-clear-button>
3345
- }
3346
- @if(multiple()){
3347
- <ax-suffix>
3348
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3349
- <ax-icon class="far fa-trash"> </ax-icon>
3350
- </ax-button>
3351
- </ax-suffix>
3497
+ @if(clearButton()) {
3498
+ <ax-clear-button></ax-clear-button>
3499
+ } @if(multiple()){
3500
+ <ax-suffix>
3501
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3502
+ <ax-icon class="far fa-trash"> </ax-icon>
3503
+ </ax-button>
3504
+ </ax-suffix>
3352
3505
  }
3353
3506
  </ax-number-box>
3354
- }
3355
- @if(multiple())
3356
- {
3357
- <ax-button
3358
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3359
- [disabled]="disabled()"
3360
- look="twotone"
3361
- (onClick)="addItem()"
3362
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3363
- >
3364
- <ax-prefix>
3365
- <ax-icon class="fa-solid fa-add"></ax-icon>
3366
- </ax-prefix>
3367
- </ax-button>
3507
+ } @if(multiple()) {
3508
+ <ax-button
3509
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3510
+ [disabled]="disabled()"
3511
+ look="twotone"
3512
+ (onClick)="addItem()"
3513
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3514
+ >
3515
+ <ax-prefix>
3516
+ <ax-icon class="fa-solid fa-add"></ax-icon>
3517
+ </ax-prefix>
3518
+ </ax-button>
3368
3519
  }
3369
3520
  </div>
3370
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$3.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "hasWheel", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3521
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$4.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "hasWheel", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3371
3522
  }
3372
3523
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, decorators: [{
3373
3524
  type: Component,
@@ -3387,32 +3538,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3387
3538
  [disabled]="disabled()"
3388
3539
  >
3389
3540
  <ax-validation-rule rule="callback" [options]="{ validate: validateFn }"></ax-validation-rule>
3390
- @if(clearButton())
3391
- {
3392
- <ax-clear-button></ax-clear-button>
3393
- }
3394
- @if(multiple()){
3395
- <ax-suffix>
3396
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3397
- <ax-icon class="far fa-trash"> </ax-icon>
3398
- </ax-button>
3399
- </ax-suffix>
3541
+ @if(clearButton()) {
3542
+ <ax-clear-button></ax-clear-button>
3543
+ } @if(multiple()){
3544
+ <ax-suffix>
3545
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3546
+ <ax-icon class="far fa-trash"> </ax-icon>
3547
+ </ax-button>
3548
+ </ax-suffix>
3400
3549
  }
3401
3550
  </ax-number-box>
3402
- }
3403
- @if(multiple())
3404
- {
3405
- <ax-button
3406
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3407
- [disabled]="disabled()"
3408
- look="twotone"
3409
- (onClick)="addItem()"
3410
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3411
- >
3412
- <ax-prefix>
3413
- <ax-icon class="fa-solid fa-add"></ax-icon>
3414
- </ax-prefix>
3415
- </ax-button>
3551
+ } @if(multiple()) {
3552
+ <ax-button
3553
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3554
+ [disabled]="disabled()"
3555
+ look="twotone"
3556
+ (onClick)="addItem()"
3557
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3558
+ >
3559
+ <ax-prefix>
3560
+ <ax-icon class="fa-solid fa-add"></ax-icon>
3561
+ </ax-prefix>
3562
+ </ax-button>
3416
3563
  }
3417
3564
  </div>
3418
3565
  `,
@@ -3513,6 +3660,7 @@ const AXPNumberBoxWidget = {
3513
3660
  description: 'Inputs numeric values',
3514
3661
  icon: 'fa-solid fa-input-numeric',
3515
3662
  group: AXP_WIDGETS_EDITOR_GROUP,
3663
+ type: 'editor',
3516
3664
  properties: [
3517
3665
  AXP_NAME_PROPERTY,
3518
3666
  AXP_DATA_PATH_PROPERTY,
@@ -3520,6 +3668,7 @@ const AXPNumberBoxWidget = {
3520
3668
  AXP_DISABLED_PROPERTY,
3521
3669
  AXP_VALIDATION_PROPERTY,
3522
3670
  AXP_PLACEHOLDER_PROPERTY,
3671
+ numberDefaultProperty(),
3523
3672
  cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '200px' } }),
3524
3673
  ],
3525
3674
  components: {
@@ -3561,9 +3710,12 @@ class AXPPasswordBoxWidgetViewComponent extends AXPWidgetComponent {
3561
3710
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPasswordBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3562
3711
  <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
3563
3712
  <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
3564
- <span>{{ showPassword() ? internalValue() : '*******' }}</span>
3713
+ <span>{{ show() ? internalValue() : '*******' }}</span>
3565
3714
  @if(hasEyeIcon()){
3566
- <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
3715
+ <span
3716
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
3717
+ (click)="toggleEye()"
3718
+ >
3567
3719
  @if(!showPassword()){
3568
3720
  <i class="fa-solid fa-eye"></i>
3569
3721
  }@else {
@@ -3588,9 +3740,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3588
3740
  template: `
3589
3741
  <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
3590
3742
  <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
3591
- <span>{{ showPassword() ? internalValue() : '*******' }}</span>
3743
+ <span>{{ show() ? internalValue() : '*******' }}</span>
3592
3744
  @if(hasEyeIcon()){
3593
- <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
3745
+ <span
3746
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
3747
+ (click)="toggleEye()"
3748
+ >
3594
3749
  @if(!showPassword()){
3595
3750
  <i class="fa-solid fa-eye"></i>
3596
3751
  }@else {
@@ -3640,7 +3795,7 @@ class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
3640
3795
  <ax-clear-button></ax-clear-button>
3641
3796
  }
3642
3797
  </ax-password-box>
3643
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$3.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3798
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$3.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3644
3799
  }
3645
3800
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
3646
3801
  type: Component,
@@ -3688,18 +3843,55 @@ var passwordBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
3688
3843
  AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent
3689
3844
  });
3690
3845
 
3691
- class AXPPasswordBoxWidgetColumnComponent extends AXPWidgetComponent {
3846
+ class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
3847
+ constructor() {
3848
+ super(...arguments);
3849
+ this.hasEyeIcon = this.options['hasEyeIcon'];
3850
+ this.showPassword = this.options['showPassword'];
3851
+ this.show = signal(!!this.rawValue);
3852
+ }
3853
+ toggleEye() {
3854
+ this.show.update((prev) => !prev);
3855
+ }
3692
3856
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3693
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPPasswordBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3857
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPasswordBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
3858
+ <span>{{ show() ? rawValue : '*******' }}</span>
3859
+ @if(hasEyeIcon){
3860
+ <span
3861
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
3862
+ (click)="toggleEye()"
3863
+ >
3864
+ @if(!showPassword){
3865
+ <i class="fa-solid fa-eye"></i>
3866
+ }@else {
3867
+ <i class="fa-solid fa-eye-slash"></i>
3868
+ }
3869
+ </span>
3870
+ }
3871
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3694
3872
  }
3695
3873
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetColumnComponent, decorators: [{
3696
3874
  type: Component,
3697
3875
  args: [{
3698
- template: ``,
3876
+ template: `<div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
3877
+ <span>{{ show() ? rawValue : '*******' }}</span>
3878
+ @if(hasEyeIcon){
3879
+ <span
3880
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
3881
+ (click)="toggleEye()"
3882
+ >
3883
+ @if(!showPassword){
3884
+ <i class="fa-solid fa-eye"></i>
3885
+ }@else {
3886
+ <i class="fa-solid fa-eye-slash"></i>
3887
+ }
3888
+ </span>
3889
+ }
3890
+ </div>`,
3699
3891
  standalone: true,
3700
3892
  changeDetection: ChangeDetectionStrategy.OnPush,
3701
3893
  imports: [CommonModule],
3702
- inputs: []
3894
+ inputs: ['rawValue'],
3703
3895
  }]
3704
3896
  }] });
3705
3897
 
@@ -3734,6 +3926,7 @@ const AXPPasswordBoxWidget = {
3734
3926
  description: 'Secures password input',
3735
3927
  icon: 'fa-solid fa-lock',
3736
3928
  group: AXP_WIDGETS_EDITOR_GROUP,
3929
+ type: 'editor',
3737
3930
  properties: [
3738
3931
  AXP_NAME_PROPERTY,
3739
3932
  AXP_VALIDATION_PROPERTY,
@@ -3824,7 +4017,7 @@ class AXPPhoneBoxWidgetViewComponent extends AXPWidgetComponent {
3824
4017
  </ng-container>
3825
4018
  </ng-template>
3826
4019
  </div>
3827
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4020
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3828
4021
  }
3829
4022
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
3830
4023
  type: Component,
@@ -4004,7 +4197,7 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
4004
4197
  </ax-prefix>
4005
4198
  </ax-button>
4006
4199
  </div>
4007
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4200
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4008
4201
  }
4009
4202
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
4010
4203
  type: Component,
@@ -4206,6 +4399,7 @@ const AXPPhoneBoxWidget = {
4206
4399
  description: 'Inputs and validates phone numbers',
4207
4400
  icon: 'fa-solid fa-input-numeric',
4208
4401
  group: AXP_WIDGETS_EDITOR_GROUP,
4402
+ type: 'editor',
4209
4403
  properties: [AXP_HAS_LABEL_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY],
4210
4404
  components: {
4211
4405
  view: {
@@ -4274,13 +4468,15 @@ var richTextWidgetView_component = /*#__PURE__*/Object.freeze({
4274
4468
  });
4275
4469
 
4276
4470
  class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
4277
- constructor() {
4278
- super(...arguments);
4279
- this._validationRules = [];
4280
- }
4281
4471
  setNgModel(event) {
4282
4472
  this.setValue(event);
4283
4473
  }
4474
+ constructor() {
4475
+ super();
4476
+ this.placeholder = computed(() => this.options()['placeholder'] ?? 'default');
4477
+ this._validationRules = [];
4478
+ effect(() => console.log(this.placeholder()));
4479
+ }
4284
4480
  get validationRules() {
4285
4481
  return this._validationRules;
4286
4482
  }
@@ -4293,8 +4489,13 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
4293
4489
  cls[`ax-flex-1`] = true;
4294
4490
  return cls;
4295
4491
  }
4296
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4297
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "axp-rich-text-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-wysiwyg-container [look]="'solid'" [ngModel]="getValue()" (ngModelChange)="setNgModel($event)" >
4492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
4493
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "axp-rich-text-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-wysiwyg-container
4494
+ [placeHolder]="placeholder()"
4495
+ [look]="'solid'"
4496
+ [ngModel]="getValue()"
4497
+ (ngModelChange)="setNgModel($event)"
4498
+ >
4298
4499
  <ax-wysiwyg-view class="ax-min-h-28"></ax-wysiwyg-view>
4299
4500
  <ax-wysiwyg-toolbar>
4300
4501
  <ax-wysiwyg-history></ax-wysiwyg-history>
@@ -4302,18 +4503,26 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
4302
4503
  <ax-wysiwyg-colors></ax-wysiwyg-colors>
4303
4504
  <ax-wysiwyg-list></ax-wysiwyg-list>
4304
4505
  <ax-wysiwyg-alignment></ax-wysiwyg-alignment>
4305
- <ax-wysiwyg-insert></ax-wysiwyg-insert>
4306
4506
  </ax-wysiwyg-toolbar>
4307
4507
  @for (validation of validationRules; track $index) {
4308
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
4508
+ <ax-validation-rule
4509
+ [rule]="validation.rule"
4510
+ [message]="validation.options?.message"
4511
+ [options]="validation.options"
4512
+ ></ax-validation-rule>
4309
4513
  }
4310
- </ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$4.AXWysiwygContainerComponent, selector: "ax-wysiwyg-container", inputs: ["look"], outputs: ["onValueChanged"] }, { kind: "component", type: i1$4.AXWysiwygViewComponent, selector: "ax-wysiwyg-view", inputs: ["class"] }, { kind: "component", type: i1$4.AXWysiwygToolbarComponent, selector: "ax-wysiwyg-toolbar" }, { kind: "component", type: i1$4.AXWysiwygAlignmentComponent, selector: "ax-wysiwyg-alignment" }, { kind: "component", type: i1$4.AXWysiwygColorsComponent, selector: "ax-wysiwyg-colors" }, { kind: "component", type: i1$4.AXWysiwygFontStyleComponent, selector: "ax-wysiwyg-font-style" }, { kind: "component", type: i1$4.AXWysiwygHistoryComponent, selector: "ax-wysiwyg-history" }, { kind: "component", type: i1$4.AXWysiwygInsertComponent, selector: "ax-wysiwyg-insert" }, { kind: "component", type: i1$4.AXWysiwygListComponent, selector: "ax-wysiwyg-list" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
4514
+ </ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$5.AXWysiwygContainerComponent, selector: "ax-wysiwyg-container", inputs: ["look", "placeHolder"], outputs: ["onValueChanged"] }, { kind: "component", type: i1$5.AXWysiwygViewComponent, selector: "ax-wysiwyg-view", inputs: ["class"] }, { kind: "component", type: i1$5.AXWysiwygToolbarComponent, selector: "ax-wysiwyg-toolbar" }, { kind: "component", type: i1$5.AXWysiwygAlignmentComponent, selector: "ax-wysiwyg-alignment" }, { kind: "component", type: i1$5.AXWysiwygColorsComponent, selector: "ax-wysiwyg-colors" }, { kind: "component", type: i1$5.AXWysiwygFontStyleComponent, selector: "ax-wysiwyg-font-style" }, { kind: "component", type: i1$5.AXWysiwygHistoryComponent, selector: "ax-wysiwyg-history" }, { kind: "component", type: i1$5.AXWysiwygListComponent, selector: "ax-wysiwyg-list" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
4311
4515
  }
4312
4516
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, decorators: [{
4313
4517
  type: Component,
4314
4518
  args: [{
4315
4519
  selector: 'axp-rich-text-widget',
4316
- template: `<ax-wysiwyg-container [look]="'solid'" [ngModel]="getValue()" (ngModelChange)="setNgModel($event)" >
4520
+ template: `<ax-wysiwyg-container
4521
+ [placeHolder]="placeholder()"
4522
+ [look]="'solid'"
4523
+ [ngModel]="getValue()"
4524
+ (ngModelChange)="setNgModel($event)"
4525
+ >
4317
4526
  <ax-wysiwyg-view class="ax-min-h-28"></ax-wysiwyg-view>
4318
4527
  <ax-wysiwyg-toolbar>
4319
4528
  <ax-wysiwyg-history></ax-wysiwyg-history>
@@ -4321,10 +4530,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4321
4530
  <ax-wysiwyg-colors></ax-wysiwyg-colors>
4322
4531
  <ax-wysiwyg-list></ax-wysiwyg-list>
4323
4532
  <ax-wysiwyg-alignment></ax-wysiwyg-alignment>
4324
- <ax-wysiwyg-insert></ax-wysiwyg-insert>
4325
4533
  </ax-wysiwyg-toolbar>
4326
4534
  @for (validation of validationRules; track $index) {
4327
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
4535
+ <ax-validation-rule
4536
+ [rule]="validation.rule"
4537
+ [message]="validation.options?.message"
4538
+ [options]="validation.options"
4539
+ ></ax-validation-rule>
4328
4540
  }
4329
4541
  </ax-wysiwyg-container>`,
4330
4542
  standalone: true,
@@ -4333,7 +4545,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4333
4545
  imports: [CommonModule, AXWysiwygModule, AXValidationModule, AXFormModule, FormsModule],
4334
4546
  inputs: [],
4335
4547
  }]
4336
- }], propDecorators: { __class: [{
4548
+ }], ctorParameters: () => [], propDecorators: { __class: [{
4337
4549
  type: HostBinding,
4338
4550
  args: ['class']
4339
4551
  }] } });
@@ -4431,6 +4643,7 @@ const AXPRichTextWidget = {
4431
4643
  description: 'Formats and edits rich text',
4432
4644
  icon: 'fa-solid fa-input-text',
4433
4645
  group: AXP_WIDGETS_EDITOR_GROUP,
4646
+ type: 'editor',
4434
4647
  properties: [
4435
4648
  AXP_NAME_PROPERTY,
4436
4649
  AXP_DATA_PATH_PROPERTY,
@@ -4438,7 +4651,7 @@ const AXPRichTextWidget = {
4438
4651
  AXP_DISABLED_PROPERTY,
4439
4652
  AXP_VALIDATION_PROPERTY,
4440
4653
  AXP_PLACEHOLDER_PROPERTY,
4441
- cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '300px' } }),
4654
+ //cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '300px' } }),
4442
4655
  ],
4443
4656
  components: {
4444
4657
  view: {
@@ -4536,7 +4749,18 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
4536
4749
  constructor() {
4537
4750
  super(...arguments);
4538
4751
  this.multiple = computed(() => this.options()['multiple']);
4539
- this.dataSource = computed(() => this.options()['dataSource'] ?? []);
4752
+ this.dataSource = computed(() => {
4753
+ const rawValue = this.options()['dataSource'];
4754
+ if (rawValue instanceof AXDataSource) {
4755
+ return rawValue;
4756
+ }
4757
+ else if (Array.isArray(rawValue)) {
4758
+ return convertArrayToDataSource(rawValue);
4759
+ }
4760
+ else {
4761
+ return convertArrayToDataSource([]);
4762
+ }
4763
+ });
4540
4764
  this.valueField = computed(() => this.options()['valueField'] ?? 'id');
4541
4765
  this.textField = computed(() => this.options()['textField'] ?? 'title');
4542
4766
  this.disabled = computed(() => this.options()['disabled']);
@@ -4579,7 +4803,7 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
4579
4803
  <ax-clear-button></ax-clear-button>
4580
4804
  }
4581
4805
  </ax-select-box>
4582
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4806
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4583
4807
  }
4584
4808
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
4585
4809
  type: Component,
@@ -4687,6 +4911,7 @@ const AXPSelectBoxWidget = {
4687
4911
  description: 'Chooses from dropdown options',
4688
4912
  icon: 'fa-solid fa-list-dropdown',
4689
4913
  group: AXP_WIDGETS_EDITOR_GROUP,
4914
+ type: 'editor',
4690
4915
  properties: [
4691
4916
  AXP_ALLOW_MULTIPLE_PROPERTY,
4692
4917
  AXP_DISABLED_PROPERTY,
@@ -4735,11 +4960,11 @@ class AXPSelectionListWidgetViewComponent extends AXPWidgetComponent {
4735
4960
  });
4736
4961
  }
4737
4962
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4738
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", inputs: { items: "items", valueField: "valueField", textField: "textField", direction: "direction" }, usesInheritance: true, ngImport: i0, template: `
4963
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
4739
4964
  @for (item of internalValue(); track $index) {
4740
4965
  <ax-badge [class]="'ax-ms-1'" [look]="'twotone'" [text]="item[this.textField()]" color="primary"></ax-badge>
4741
4966
  }
4742
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4967
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4743
4968
  }
4744
4969
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetViewComponent, decorators: [{
4745
4970
  type: Component,
@@ -4752,7 +4977,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4752
4977
  standalone: true,
4753
4978
  changeDetection: ChangeDetectionStrategy.OnPush,
4754
4979
  imports: [AXBadgeModule],
4755
- inputs: ['items', 'valueField', 'textField', 'direction'],
4756
4980
  }]
4757
4981
  }] });
4758
4982
 
@@ -4761,23 +4985,22 @@ var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
4761
4985
  AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
4762
4986
  });
4763
4987
 
4764
- class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
4988
+ class AXPSelectionListWidgetDesignerComponent extends AXPWidgetComponent {
4765
4989
  constructor() {
4766
4990
  super(...arguments);
4991
+ this.samples = computed(() => Array.from({ length: 5 }).map((c, i) => {
4992
+ const item = {};
4993
+ item[this.valueField()] = i + 1;
4994
+ item[this.textField()] = `Item ${i + 1}`;
4995
+ return item;
4996
+ }));
4767
4997
  this.multiple = computed(() => this.options()['multiple']);
4768
- this.items = computed(() => this.options()['items']);
4769
- this.valueField = computed(() => this.options()['valueField']);
4770
- this.textField = computed(() => this.options()['textField']);
4771
- this.direction = computed(() => this.options()['direction']);
4772
- this._validationRules = [];
4773
- }
4774
- get validationRules() {
4775
- return this._validationRules;
4776
- }
4777
- handleValueChange(e) {
4778
- if (e.isUserInteraction) {
4779
- this.setValue(e.value);
4780
- }
4998
+ this.items = computed(() => this.options()['items'] ?? this.samples());
4999
+ this.valueField = computed(() => this.options()['valueField'] ?? 'id');
5000
+ this.textField = computed(() => this.options()['textField'] ?? 'text');
5001
+ this.direction = computed(() => this.options()['direction']?.id ?? 'horizontal');
5002
+ this.disabled = computed(() => this.options()["disabled"]);
5003
+ this.readonly = computed(() => this.options()["readonly"]);
4781
5004
  }
4782
5005
  get __class() {
4783
5006
  const cls = {};
@@ -4785,25 +5008,23 @@ class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
4785
5008
  cls[`ax-flex-1`] = true;
4786
5009
  return cls;
4787
5010
  }
4788
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4789
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
5011
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5012
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSelectionListWidgetDesignerComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
4790
5013
  <ax-selection-list
4791
5014
  class="ax-w-max"
4792
5015
  [valueField]="valueField()"
4793
5016
  [textField]="textField()"
4794
5017
  [ngModel]="this.getValue()"
4795
- (onValueChanged)="handleValueChange($event)"
4796
5018
  [items]="items()"
4797
5019
  [multiple]="multiple()"
4798
5020
  [direction]="direction()"
5021
+ [disabled]="disabled()"
5022
+ [readonly]="readonly()"
4799
5023
  >
4800
- @for (validation of validationRules; track $index) {
4801
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
4802
- }
4803
5024
  </ax-selection-list>
4804
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$3.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5025
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$2.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4805
5026
  }
4806
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
5027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, decorators: [{
4807
5028
  type: Component,
4808
5029
  args: [{
4809
5030
  template: `
@@ -4812,12 +5033,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4812
5033
  [valueField]="valueField()"
4813
5034
  [textField]="textField()"
4814
5035
  [ngModel]="this.getValue()"
4815
- (onValueChanged)="handleValueChange($event)"
4816
5036
  [items]="items()"
4817
5037
  [multiple]="multiple()"
4818
5038
  [direction]="direction()"
5039
+ [disabled]="disabled()"
5040
+ [readonly]="readonly()"
4819
5041
  >
4820
- @for (validation of validationRules; track $index) {
5042
+ </ax-selection-list>
5043
+ `,
5044
+ standalone: true,
5045
+ changeDetection: ChangeDetectionStrategy.OnPush,
5046
+ imports: [CommonModule, FormsModule, AXSelectionListModule, AXFormModule],
5047
+ inputs: [],
5048
+ }]
5049
+ }], propDecorators: { __class: [{
5050
+ type: HostBinding,
5051
+ args: ['class']
5052
+ }] } });
5053
+
5054
+ var selectionListWidgetDesigner_component = /*#__PURE__*/Object.freeze({
5055
+ __proto__: null,
5056
+ AXPSelectionListWidgetDesignerComponent: AXPSelectionListWidgetDesignerComponent
5057
+ });
5058
+
5059
+ class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
5060
+ constructor() {
5061
+ super(...arguments);
5062
+ this.multiple = computed(() => this.options()['multiple']);
5063
+ this.items = computed(() => this.options()['items']);
5064
+ this.valueField = computed(() => this.options()['valueField'] ?? 'id');
5065
+ this.textField = computed(() => this.options()['textField'] ?? 'text');
5066
+ this.direction = computed(() => this.options()['direction']?.id ?? 'horizontal');
5067
+ this.disabled = computed(() => this.options()["disabled"]);
5068
+ this.readonly = computed(() => this.options()["readonly"]);
5069
+ this.validationRules = computed(() => this.options()["validationRules"] ?? []);
5070
+ }
5071
+ handleValueChange(e) {
5072
+ if (e.isUserInteraction) {
5073
+ this.setValue(e.value);
5074
+ }
5075
+ }
5076
+ get __class() {
5077
+ const cls = {};
5078
+ cls[`ax-block`] = true;
5079
+ cls[`ax-flex-1`] = true;
5080
+ return cls;
5081
+ }
5082
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5083
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
5084
+ <ax-selection-list
5085
+ class="ax-w-max"
5086
+ [valueField]="valueField()"
5087
+ [textField]="textField()"
5088
+ [ngModel]="this.getValue()"
5089
+ (onValueChanged)="handleValueChange($event)"
5090
+ [items]="items()"
5091
+ [multiple]="multiple()"
5092
+ [disabled]="disabled()"
5093
+ [readonly]="readonly()"
5094
+ [direction]="direction()"
5095
+ >
5096
+ @for (validation of validationRules(); track $index) {
5097
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
5098
+ }
5099
+ </ax-selection-list>
5100
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$2.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5101
+ }
5102
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
5103
+ type: Component,
5104
+ args: [{
5105
+ template: `
5106
+ <ax-selection-list
5107
+ class="ax-w-max"
5108
+ [valueField]="valueField()"
5109
+ [textField]="textField()"
5110
+ [ngModel]="this.getValue()"
5111
+ (onValueChanged)="handleValueChange($event)"
5112
+ [items]="items()"
5113
+ [multiple]="multiple()"
5114
+ [disabled]="disabled()"
5115
+ [readonly]="readonly()"
5116
+ [direction]="direction()"
5117
+ >
5118
+ @for (validation of validationRules(); track $index) {
4821
5119
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
4822
5120
  }
4823
5121
  </ax-selection-list>
@@ -4860,11 +5158,25 @@ var selectionListWidgetFilter_component = /*#__PURE__*/Object.freeze({
4860
5158
  class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
4861
5159
  constructor() {
4862
5160
  super(...arguments);
4863
- this.selectedItemIds = computed(() => this.rawValue);
4864
- this.selectedItems = computed(() => this.items.filter((i) => {
4865
- return this.selectedItemIds().includes(i[this.valueField]);
4866
- }));
4867
- this.firstItem = computed(() => this.selectedItems()[0]);
5161
+ this.valueField = this.options['valueField'];
5162
+ this.textField = this.options['textField'];
5163
+ this.items = this.options['items'];
5164
+ this.selectedItemIds = computed(() => {
5165
+ return this.rawValue || [];
5166
+ });
5167
+ this.selectedItems = computed(() => {
5168
+ const selectedIds = this.selectedItemIds();
5169
+ const filteredItems = this.items.filter((item) => {
5170
+ const itemValue = item[this.valueField];
5171
+ const isSelected = selectedIds.includes(itemValue);
5172
+ return isSelected;
5173
+ });
5174
+ return filteredItems;
5175
+ });
5176
+ this.firstItem = computed(() => {
5177
+ const first = this.selectedItems()[0];
5178
+ return first;
5179
+ });
4868
5180
  }
4869
5181
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4870
5182
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ` <div class="ax-flex ax-gap-2">
@@ -4873,7 +5185,7 @@ class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
4873
5185
  } }@else {
4874
5186
  <ax-badge [look]="'twotone'" [text]="firstItem()[this.textField]" color="primary"></ax-badge>
4875
5187
  }
4876
- </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5188
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4877
5189
  }
4878
5190
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, decorators: [{
4879
5191
  type: Component,
@@ -4923,6 +5235,18 @@ const AXPSelectionListWidget = {
4923
5235
  description: 'Selects from a list',
4924
5236
  icon: 'fa-solid fa-list-radio',
4925
5237
  group: AXP_WIDGETS_EDITOR_GROUP,
5238
+ properties: [
5239
+ AXP_DATA_SOURCE_PROPERTY,
5240
+ AXP_NAME_PROPERTY,
5241
+ AXP_DATA_PATH_PROPERTY,
5242
+ AXP_ALLOW_MULTIPLE_PROPERTY,
5243
+ AXP_DIRECTION_PROPERTY,
5244
+ AXP_DISABLED_PROPERTY,
5245
+ AXP_READONLY_PROPERTY,
5246
+ AXP_VALIDATION_PROPERTY,
5247
+ //cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '200px' } }),
5248
+ ],
5249
+ type: 'editor',
4926
5250
  components: {
4927
5251
  view: {
4928
5252
  component: () => Promise.resolve().then(function () { return selectionListWidgetView_component; }).then((c) => c.AXPSelectionListWidgetViewComponent),
@@ -4940,7 +5264,7 @@ const AXPSelectionListWidget = {
4940
5264
  component: () => Promise.resolve().then(function () { return selectionListWidgetPrint_component; }).then((c) => c.AXPSelectionListWidgetPrintComponent),
4941
5265
  },
4942
5266
  designer: {
4943
- component: () => Promise.resolve().then(function () { return selectionListWidgetEdit_component; }).then((c) => c.AXPSelectionListWidgetEditComponent),
5267
+ component: () => Promise.resolve().then(function () { return selectionListWidgetDesigner_component; }).then((c) => c.AXPSelectionListWidgetDesignerComponent),
4944
5268
  },
4945
5269
  },
4946
5270
  };
@@ -5060,7 +5384,7 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
5060
5384
  </ax-button>
5061
5385
  }
5062
5386
  </div>
5063
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5387
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5064
5388
  }
5065
5389
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
5066
5390
  type: Component,
@@ -5180,6 +5504,7 @@ const AXPTextBoxWidget = {
5180
5504
  icon: 'fa-solid fa-input-text',
5181
5505
  description: 'Inputs single-line text',
5182
5506
  group: AXP_WIDGETS_EDITOR_GROUP,
5507
+ type: 'editor',
5183
5508
  properties: [
5184
5509
  AXP_NAME_PROPERTY,
5185
5510
  AXP_DATA_PATH_PROPERTY,
@@ -5189,7 +5514,7 @@ const AXPTextBoxWidget = {
5189
5514
  AXP_PLACEHOLDER_PROPERTY,
5190
5515
  AXP_HAS_CLEAR_BUTTON_PROPERTY,
5191
5516
  plainTextDefaultProperty(),
5192
- cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '200px' } }),
5517
+ //cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '200px' } }),
5193
5518
  ],
5194
5519
  components: {
5195
5520
  view: {
@@ -5233,7 +5558,7 @@ class AXPToggleWidgetViewComponent extends AXPWidgetComponent {
5233
5558
  <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
5234
5559
  }@else {
5235
5560
  <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
5236
- } } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5561
+ } } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5237
5562
  }
5238
5563
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetViewComponent, decorators: [{
5239
5564
  type: Component,
@@ -5279,7 +5604,7 @@ class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
5279
5604
  return cls;
5280
5605
  }
5281
5606
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5282
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "axp-swith-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSwitchModule }, { kind: "component", type: i2$4.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5607
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "axp-swith-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSwitchModule }, { kind: "component", type: i2$3.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5283
5608
  }
5284
5609
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, decorators: [{
5285
5610
  type: Component,
@@ -5341,7 +5666,7 @@ class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
5341
5666
  <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
5342
5667
  }@else {
5343
5668
  <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
5344
- } } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5669
+ } } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5345
5670
  }
5346
5671
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetColumnComponent, decorators: [{
5347
5672
  type: Component,
@@ -5397,6 +5722,7 @@ const AXPToggleWidget = {
5397
5722
  description: 'Switches between on/off states',
5398
5723
  icon: 'fa-solid fa-toggle-on',
5399
5724
  group: AXP_WIDGETS_EDITOR_GROUP,
5725
+ type: 'editor',
5400
5726
  properties: [
5401
5727
  AXP_NAME_PROPERTY,
5402
5728
  AXP_DATA_PATH_PROPERTY,
@@ -5431,7 +5757,7 @@ const AXPToggleWidget = {
5431
5757
 
5432
5758
  class AXPFileBoxWidgetColumnComponent extends AXPWidgetComponent {
5433
5759
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5434
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPFileBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5760
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPFileBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5435
5761
  }
5436
5762
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetColumnComponent, decorators: [{
5437
5763
  type: Component,
@@ -5440,7 +5766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5440
5766
  standalone: true,
5441
5767
  changeDetection: ChangeDetectionStrategy.OnPush,
5442
5768
  imports: [CommonModule],
5443
- inputs: []
5769
+ inputs: ['rawValue']
5444
5770
  }]
5445
5771
  }] });
5446
5772
 
@@ -5774,7 +6100,7 @@ class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent {
5774
6100
  </div>
5775
6101
  </ng-template>
5776
6102
  </div>
5777
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6103
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5778
6104
  }
5779
6105
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetViewComponent, decorators: [{
5780
6106
  type: Component,
@@ -5831,6 +6157,7 @@ const AXPFileBoxWidget = {
5831
6157
  description: 'Uploads and manages files',
5832
6158
  icon: 'fa-solid fa-files',
5833
6159
  group: AXP_WIDGETS_ADVANCE_GROUP,
6160
+ type: 'editor',
5834
6161
  properties: [
5835
6162
  AXP_NAME_PROPERTY,
5836
6163
  AXP_VALIDATION_PROPERTY,
@@ -5962,7 +6289,7 @@ class AXPGalleryWidgetViewComponent extends AXPWidgetComponent {
5962
6289
  <small>No Media!</small>
5963
6290
  }
5964
6291
  </div>
5965
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$5.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6292
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5966
6293
  }
5967
6294
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
5968
6295
  type: Component,
@@ -6127,7 +6454,7 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
6127
6454
 
6128
6455
  }
6129
6456
  </div>
6130
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$5.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6457
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6131
6458
  }
6132
6459
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
6133
6460
  type: Component,
@@ -6223,7 +6550,7 @@ var galleryWidgetFilter_component = /*#__PURE__*/Object.freeze({
6223
6550
 
6224
6551
  class AXPGalleryWidgetColumnComponent extends AXPWidgetComponent {
6225
6552
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6226
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPGalleryWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6553
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPGalleryWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6227
6554
  }
6228
6555
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetColumnComponent, decorators: [{
6229
6556
  type: Component,
@@ -6232,7 +6559,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6232
6559
  standalone: true,
6233
6560
  changeDetection: ChangeDetectionStrategy.OnPush,
6234
6561
  imports: [CommonModule],
6235
- inputs: []
6562
+ inputs: ['rawValue']
6236
6563
  }]
6237
6564
  }] });
6238
6565
 
@@ -6267,6 +6594,7 @@ const AXPGalleryWidget = {
6267
6594
  description: 'Shows and edits image galleries',
6268
6595
  icon: 'fa-solid fa-images',
6269
6596
  group: AXP_WIDGETS_ADVANCE_GROUP,
6597
+ type: 'editor',
6270
6598
  components: {
6271
6599
  view: {
6272
6600
  component: () => Promise.resolve().then(function () { return galleryWidgetView_component; }).then((c) => c.AXPGalleryWidgetViewComponent),
@@ -6292,63 +6620,48 @@ const AXPGalleryWidget = {
6292
6620
  class AXPMapBoxWidgetViewComponent extends AXPWidgetComponent {
6293
6621
  constructor() {
6294
6622
  super(...arguments);
6295
- this.valueChangeEffect = effect(() => {
6296
- this.updateMarkers();
6297
- });
6298
- }
6299
- async ngAfterViewInit() {
6300
- await this.initMap();
6301
- }
6302
- addMarker(location, leaflet) {
6303
- const marker = leaflet.marker(location);
6304
- if (location.title) {
6305
- marker.bindPopup(location.title);
6306
- }
6307
- this.featuresGroup.addLayer(marker);
6308
- }
6309
- updateMarkers() {
6310
- if (this.getValue()) {
6311
- this.featuresGroup.clearLayers();
6312
- this.getValue().forEach((location) => {
6313
- this.addMarker(location, this.leaflet);
6314
- });
6315
- this.map.fitBounds(this.featuresGroup.getBounds(), { padding: [50, 50] });
6316
- }
6317
- }
6318
- async initMap() {
6319
- const leaflet = await import('leaflet');
6320
- this.leaflet = leaflet;
6321
- this.featuresGroup = new leaflet.FeatureGroup();
6322
- this.map = leaflet.map(this.mapEl.nativeElement, {
6323
- center: [20, 0],
6324
- zoom: 2,
6325
- minZoom: 1,
6326
- maxZoom: 10,
6327
- worldCopyJump: true,
6623
+ this.markers = computed(() => this.getValue());
6624
+ this.height = computed(() => this.options()['height'] ?? 300);
6625
+ this.zoomLevel = computed(() => this.options()['zoomLevel'] ?? 13);
6626
+ this.initialLocation = computed(() => this.options()['initialLocation'] ?? { latitude: 51.505, longitude: -0.09 }, {
6627
+ equal: (a, b) => {
6628
+ if (a.latitude === b.latitude && a.longitude === b.longitude)
6629
+ return true;
6630
+ else
6631
+ return false;
6632
+ },
6328
6633
  });
6329
- leaflet
6330
- .tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
6331
- maxZoom: 10,
6332
- attribution: '© acorex platform',
6333
- })
6334
- .addTo(this.map);
6335
- this.updateMarkers();
6336
- this.map.addLayer(this.featuresGroup);
6337
6634
  }
6338
6635
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6339
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "mapEl", first: true, predicate: ["mapEl"], descendants: true }], usesInheritance: true, ngImport: i0, template: `<div class="ax-w-full ax-h-72">
6340
- <div class="ax-h-full" #mapEl></div>
6341
- </div>`, isInline: true, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6636
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div [class.height.px]="height()" class="ax-w-full">
6637
+ <ax-map
6638
+ [hasMarker]="false"
6639
+ [markers]="markers()"
6640
+ [zoomLevel]="zoomLevel()"
6641
+ [latitude]="initialLocation().latitude"
6642
+ [longitude]="initialLocation().longitude"
6643
+ ></ax-map>
6644
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$6.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "hasMarker", "hasLocator", "markerPlace", "locatePlace", "markers"], outputs: ["onMarkerAdded", "onMarkerChanged", "onLocationFound"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6342
6645
  }
6343
6646
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetViewComponent, decorators: [{
6344
6647
  type: Component,
6345
- args: [{ template: `<div class="ax-w-full ax-h-72">
6346
- <div class="ax-h-full" #mapEl></div>
6347
- </div>`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule], inputs: [], encapsulation: ViewEncapsulation.None, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"] }]
6348
- }], propDecorators: { mapEl: [{
6349
- type: ViewChild,
6350
- args: ['mapEl']
6351
- }] } });
6648
+ args: [{
6649
+ template: `<div [class.height.px]="height()" class="ax-w-full">
6650
+ <ax-map
6651
+ [hasMarker]="false"
6652
+ [markers]="markers()"
6653
+ [zoomLevel]="zoomLevel()"
6654
+ [latitude]="initialLocation().latitude"
6655
+ [longitude]="initialLocation().longitude"
6656
+ ></ax-map>
6657
+ </div>`,
6658
+ standalone: true,
6659
+ changeDetection: ChangeDetectionStrategy.OnPush,
6660
+ imports: [CommonModule, AXMapModule],
6661
+ inputs: [],
6662
+ encapsulation: ViewEncapsulation.None,
6663
+ }]
6664
+ }] });
6352
6665
 
6353
6666
  var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
6354
6667
  __proto__: null,
@@ -6358,128 +6671,24 @@ var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
6358
6671
  class AXPMapBoxWidgetEditComponent extends AXPWidgetComponent {
6359
6672
  constructor() {
6360
6673
  super(...arguments);
6361
- this.markersList = signal([]);
6362
- this.multiple = computed(() => this.options()['multiple']);
6363
- this.zoomLevel = computed(() => this.options()['zoomLevel']);
6364
- this.markers = computed(() => this.options()['markers']);
6365
- }
6366
- async ngAfterViewInit() {
6367
- await this.initMap();
6368
- }
6369
- async initMap() {
6370
- const center = this.initializingCenter();
6371
- this.map = L.map(this.mapEl.nativeElement, {
6372
- center,
6373
- zoom: this.zoomLevel() ?? 2,
6374
- minZoom: 1,
6375
- maxZoom: 18,
6376
- worldCopyJump: true,
6674
+ this.cdr = inject(ChangeDetectorRef);
6675
+ this.markers = computed(() => this.getValue() ?? []);
6676
+ this.hasDraw = computed(() => this.options()['hasDraw'] ?? false);
6677
+ this.hasLocate = computed(() => this.options()['hasLocate'] ?? false);
6678
+ this.maxMarker = computed(() => this.options()['maxMarker'] ?? 1);
6679
+ this.zoomLevel = computed(() => this.options()['zoomLevel'] ?? 13);
6680
+ this.height = computed(() => {
6681
+ this.cdr.markForCheck();
6682
+ return this.options()['height'] ?? 300;
6377
6683
  });
6378
- L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
6379
- maxZoom: 18,
6380
- attribution: acorex platform',
6381
- }).addTo(this.map);
6382
- this.drawnItems = new L.FeatureGroup();
6383
- this.markerLayer = new L.LayerGroup();
6384
- this.map.addLayer(this.drawnItems);
6385
- this.map.addLayer(this.markerLayer);
6386
- L.control
6387
- .locate({
6388
- position: 'bottomright', // Place the button in the bottom-right corner
6389
- setView: false,
6390
- drawCircle: false,
6391
- drawMarker: false,
6392
- keepCurrentZoomLevel: false,
6393
- onLocationError: (e) => alert(e.message), // Handle location errors
6394
- onLocationOutsideMapBounds: (control) => control.stop(), // Stop locate if outside bounds
6395
- locateOptions: {
6396
- enableHighAccuracy: true, // Use GPS for better accuracy
6397
- },
6398
- })
6399
- .addTo(this.map);
6400
- const drawControl = new L.Control.Draw({
6401
- draw: {
6402
- polygon: false,
6403
- polyline: false,
6404
- rectangle: false,
6405
- circle: false,
6406
- circlemarker: false,
6407
- },
6408
- position: 'topleft',
6409
- edit: {
6410
- featureGroup: this.drawnItems,
6411
- remove: true,
6412
- edit: false,
6684
+ this.initialLocation = computed(() => this.options()['initialLocation'] ?? { latitude: 51.505, longitude: -0.09 }, {
6685
+ equal: (a, b) => {
6686
+ if (a.latitude === b.latitude && a.longitude === b.longitude)
6687
+ return true;
6688
+ else
6689
+ return false;
6413
6690
  },
6414
6691
  });
6415
- this.map.addControl(drawControl);
6416
- this.map.on(L.Draw.Event.CREATED, (event) => this.onMarkerCreated({ latitude: event.layer._latlng.lat, longitude: event.layer._latlng.lng }));
6417
- this.map.on('locationfound', (event) => {
6418
- this.onMarkerCreated({ latitude: event.latitude, longitude: event.longitude, tooltip: 'You Are Here!' });
6419
- this.map?.flyTo(event.latlng, 15, { animate: true });
6420
- // this.map!.on('moveend', () => {
6421
- // console.log(event);
6422
- // this.onMarkerCreated({ latitude: event.latitude, longitude: event.longitude, tooltip: 'You Are Here!' });
6423
- // this.map?.off('moveend');
6424
- // });
6425
- });
6426
- this.initializeExistingMarkers();
6427
- }
6428
- ngOnDestroy() {
6429
- this.map?.remove();
6430
- }
6431
- initializingCenter() {
6432
- const markers = this.markers();
6433
- if (markers === undefined)
6434
- return [20, 0];
6435
- if (Array.isArray(markers)) {
6436
- return [markers[0].latitude, markers[0].longitude];
6437
- }
6438
- else {
6439
- return [markers.latitude, markers.longitude];
6440
- }
6441
- }
6442
- onMarkerCreated(event) {
6443
- if (this.multiple()) {
6444
- this.addMarker(event);
6445
- }
6446
- else {
6447
- this.replaceMarker(event);
6448
- }
6449
- }
6450
- addMarker(location) {
6451
- let marker = L.marker([location.latitude, location.longitude]);
6452
- if (location.tooltip) {
6453
- marker.bindPopup(location.tooltip);
6454
- }
6455
- else {
6456
- marker.bindPopup(`You Are at ${location.latitude} latitude & ${location.longitude} longitude`);
6457
- }
6458
- this.markerLayer.addLayer(marker);
6459
- //this.markersList.push(location);
6460
- this.markersList.update((prev) => [...prev, location]);
6461
- }
6462
- replaceMarker(location) {
6463
- this.markerLayer.clearLayers();
6464
- this.markersList.set([]);
6465
- this.addMarker(location);
6466
- }
6467
- initializeExistingMarkers() {
6468
- const markers = this.markers();
6469
- if (markers) {
6470
- if (Array.isArray(markers)) {
6471
- markers.forEach((marker) => this.addMarker(marker));
6472
- }
6473
- else {
6474
- this.addMarker(markers);
6475
- }
6476
- }
6477
- }
6478
- flyToMarker(marker) {
6479
- this.map?.flyTo([marker.latitude, marker.longitude], this.zoomLevel() || 15, {
6480
- animate: true,
6481
- duration: 1.5,
6482
- });
6483
6692
  }
6484
6693
  get __class() {
6485
6694
  const cls = {};
@@ -6488,41 +6697,40 @@ class AXPMapBoxWidgetEditComponent extends AXPWidgetComponent {
6488
6697
  return cls;
6489
6698
  }
6490
6699
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6491
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPMapBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, viewQueries: [{ propertyName: "mapEl", first: true, predicate: ["mapEl"], descendants: true }], usesInheritance: true, ngImport: i0, template: `<div class="ax-w-full ax-h-72 ax-relative">
6492
- <div class="ax-h-full" #mapEl></div>
6493
- @if(multiple()){
6494
- <div class="marker-list-panel">
6495
- <ul>
6496
- @for(marker of markersList(); track $index){
6497
- <li class="ax-text-xs ax-truncate" (click)="flyToMarker(marker)">
6498
- {{ marker.tooltip || 'Marker at ' + marker.latitude + ', ' + marker.longitude }}
6499
- </li>
6500
- }
6501
- </ul>
6502
- </div>
6503
- }
6504
- </div> `, isInline: true, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6700
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: ` <div [style.height.px]="height()" class="ax-w-full">
6701
+ <ax-map
6702
+ class="ax-h-full"
6703
+ [hasLocator]="hasLocate()"
6704
+ [hasMarker]="hasDraw()"
6705
+ [latitude]="initialLocation().latitude"
6706
+ [longitude]="initialLocation().longitude"
6707
+ [zoomLevel]="zoomLevel()"
6708
+ [maxMarker]="maxMarker()"
6709
+ >
6710
+ </ax-map>
6711
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$6.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "hasMarker", "hasLocator", "markerPlace", "locatePlace", "markers"], outputs: ["onMarkerAdded", "onMarkerChanged", "onLocationFound"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6505
6712
  }
6506
6713
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetEditComponent, decorators: [{
6507
6714
  type: Component,
6508
- args: [{ template: `<div class="ax-w-full ax-h-72 ax-relative">
6509
- <div class="ax-h-full" #mapEl></div>
6510
- @if(multiple()){
6511
- <div class="marker-list-panel">
6512
- <ul>
6513
- @for(marker of markersList(); track $index){
6514
- <li class="ax-text-xs ax-truncate" (click)="flyToMarker(marker)">
6515
- {{ marker.tooltip || 'Marker at ' + marker.latitude + ', ' + marker.longitude }}
6516
- </li>
6517
- }
6518
- </ul>
6519
- </div>
6520
- }
6521
- </div> `, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule], encapsulation: ViewEncapsulation.None, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"] }]
6522
- }], propDecorators: { mapEl: [{
6523
- type: ViewChild,
6524
- args: ['mapEl']
6525
- }], __class: [{
6715
+ args: [{
6716
+ template: ` <div [style.height.px]="height()" class="ax-w-full">
6717
+ <ax-map
6718
+ class="ax-h-full"
6719
+ [hasLocator]="hasLocate()"
6720
+ [hasMarker]="hasDraw()"
6721
+ [latitude]="initialLocation().latitude"
6722
+ [longitude]="initialLocation().longitude"
6723
+ [zoomLevel]="zoomLevel()"
6724
+ [maxMarker]="maxMarker()"
6725
+ >
6726
+ </ax-map>
6727
+ </div>`,
6728
+ standalone: true,
6729
+ changeDetection: ChangeDetectionStrategy.OnPush,
6730
+ imports: [AXMapModule],
6731
+ encapsulation: ViewEncapsulation.None,
6732
+ }]
6733
+ }], propDecorators: { __class: [{
6526
6734
  type: HostBinding,
6527
6735
  args: ['class']
6528
6736
  }] } });
@@ -6532,76 +6740,106 @@ var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
6532
6740
  AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
6533
6741
  });
6534
6742
 
6535
- class AXPMapBoxWidgetFilterComponent extends AXPWidgetComponent {
6536
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6537
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6538
- }
6539
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, decorators: [{
6540
- type: Component,
6541
- args: [{
6542
- template: ``,
6543
- standalone: true,
6544
- changeDetection: ChangeDetectionStrategy.OnPush,
6545
- imports: [CommonModule, FormsModule],
6546
- inputs: []
6547
- }]
6548
- }] });
6549
-
6550
- var mapBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
6551
- __proto__: null,
6552
- AXPMapBoxWidgetFilterComponent: AXPMapBoxWidgetFilterComponent
6553
- });
6554
-
6555
- class AXPMapBoxWidgetColumnComponent extends AXPWidgetComponent {
6556
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6557
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6558
- }
6559
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, decorators: [{
6560
- type: Component,
6561
- args: [{
6562
- template: ``,
6563
- standalone: true,
6564
- changeDetection: ChangeDetectionStrategy.OnPush,
6565
- imports: [CommonModule],
6566
- inputs: []
6567
- }]
6568
- }] });
6569
-
6570
- var mapBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
6571
- __proto__: null,
6572
- AXPMapBoxWidgetColumnComponent: AXPMapBoxWidgetColumnComponent
6573
- });
6574
-
6575
- class AXPMapBoxWidgetPrintComponent extends AXPWidgetComponent {
6576
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6577
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6578
- }
6579
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, decorators: [{
6580
- type: Component,
6581
- args: [{
6582
- template: ``,
6583
- standalone: true,
6584
- changeDetection: ChangeDetectionStrategy.OnPush,
6585
- imports: [CommonModule],
6586
- inputs: []
6587
- }]
6588
- }] });
6589
-
6590
- var mapBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
6591
- __proto__: null,
6592
- AXPMapBoxWidgetPrintComponent: AXPMapBoxWidgetPrintComponent
6593
- });
6594
-
6595
6743
  const AXPMapBoxWidget = {
6596
6744
  name: 'map',
6597
6745
  title: 'Map',
6598
6746
  description: 'Displays and interacts with maps',
6599
6747
  icon: 'fa-solid fa-map-location',
6600
6748
  group: AXP_WIDGETS_ADVANCE_GROUP,
6749
+ type: 'editor',
6601
6750
  properties: [
6602
6751
  AXP_NAME_PROPERTY,
6603
6752
  AXP_DATA_PATH_PROPERTY,
6604
- AXP_ALLOW_MULTIPLE_PROPERTY
6753
+ {
6754
+ name: 'height',
6755
+ title: 'Height',
6756
+ group: AXP_STYLING_PROPERTY_GROUP,
6757
+ schema: {
6758
+ defaultValue: 300,
6759
+ dataType: 'number',
6760
+ interface: {
6761
+ name: 'height',
6762
+ path: 'options.height',
6763
+ type: AXPWidgetsCatalog.number,
6764
+ options: {
6765
+ minValue: 0,
6766
+ maxValue: 500,
6767
+ hasClearButton: false,
6768
+ },
6769
+ },
6770
+ },
6771
+ visible: true,
6772
+ },
6773
+ {
6774
+ name: 'maxMarker',
6775
+ title: 'Max Marker',
6776
+ group: AXP_DATA_PROPERTY_GROUP,
6777
+ schema: {
6778
+ defaultValue: 1,
6779
+ dataType: 'number',
6780
+ interface: {
6781
+ name: 'maxMarker',
6782
+ path: 'options.maxMarker',
6783
+ type: AXPWidgetsCatalog.number,
6784
+ options: {
6785
+ minValue: 0,
6786
+ maxValue: 100,
6787
+ hasClearButton: false,
6788
+ },
6789
+ },
6790
+ },
6791
+ visible: true,
6792
+ },
6793
+ {
6794
+ name: 'zoomLevel',
6795
+ title: 'Zoom Level',
6796
+ group: AXP_DATA_PROPERTY_GROUP,
6797
+ schema: {
6798
+ defaultValue: 13,
6799
+ dataType: 'number',
6800
+ interface: {
6801
+ name: 'zoomLevel',
6802
+ path: 'options.zoomLevel',
6803
+ type: AXPWidgetsCatalog.number,
6804
+ options: {
6805
+ minValue: 1,
6806
+ maxValue: 20,
6807
+ hasClearButton: false,
6808
+ },
6809
+ },
6810
+ },
6811
+ visible: true,
6812
+ },
6813
+ {
6814
+ name: 'hasLocate',
6815
+ title: 'Has Locate',
6816
+ group: AXP_DATA_PROPERTY_GROUP,
6817
+ schema: {
6818
+ dataType: 'boolean',
6819
+ defaultValue: false,
6820
+ interface: {
6821
+ name: 'hasLocate',
6822
+ path: 'options.hasLocate',
6823
+ type: AXPWidgetsCatalog.toggle,
6824
+ },
6825
+ },
6826
+ visible: true,
6827
+ },
6828
+ {
6829
+ name: 'hasDraw',
6830
+ title: 'Has Draw',
6831
+ group: AXP_DATA_PROPERTY_GROUP,
6832
+ schema: {
6833
+ dataType: 'boolean',
6834
+ defaultValue: false,
6835
+ interface: {
6836
+ name: 'hasDraw',
6837
+ path: 'options.hasDraw',
6838
+ type: AXPWidgetsCatalog.toggle,
6839
+ },
6840
+ },
6841
+ visible: true,
6842
+ },
6605
6843
  ],
6606
6844
  components: {
6607
6845
  view: {
@@ -6610,14 +6848,8 @@ const AXPMapBoxWidget = {
6610
6848
  edit: {
6611
6849
  component: () => Promise.resolve().then(function () { return mapBoxWidgetEdit_component; }).then((c) => c.AXPMapBoxWidgetEditComponent),
6612
6850
  },
6613
- filter: {
6614
- component: () => Promise.resolve().then(function () { return mapBoxWidgetFilter_component; }).then((c) => c.AXPMapBoxWidgetFilterComponent),
6615
- },
6616
- column: {
6617
- component: () => Promise.resolve().then(function () { return mapBoxWidgetColumn_component; }).then((c) => c.AXPMapBoxWidgetColumnComponent),
6618
- },
6619
6851
  print: {
6620
- component: () => Promise.resolve().then(function () { return mapBoxWidgetPrint_component; }).then((c) => c.AXPMapBoxWidgetPrintComponent),
6852
+ component: () => Promise.resolve().then(function () { return mapBoxWidgetView_component; }).then((c) => c.AXPMapBoxWidgetViewComponent),
6621
6853
  },
6622
6854
  designer: {
6623
6855
  component: () => Promise.resolve().then(function () { return mapBoxWidgetEdit_component; }).then((c) => c.AXPMapBoxWidgetEditComponent),
@@ -6627,7 +6859,7 @@ const AXPMapBoxWidget = {
6627
6859
 
6628
6860
  class AXPSignatureWidgetColumnComponent extends AXPWidgetComponent {
6629
6861
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6630
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSignatureWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6862
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSignatureWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6631
6863
  }
6632
6864
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetColumnComponent, decorators: [{
6633
6865
  type: Component,
@@ -6636,7 +6868,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6636
6868
  standalone: true,
6637
6869
  changeDetection: ChangeDetectionStrategy.OnPush,
6638
6870
  imports: [CommonModule],
6639
- inputs: []
6871
+ inputs: ['rawValue']
6640
6872
  }]
6641
6873
  }] });
6642
6874
 
@@ -6739,7 +6971,7 @@ class AXPSignatureWidgetEditComponent extends AXPWidgetComponent {
6739
6971
  </div>
6740
6972
  }
6741
6973
  </div>
6742
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$5.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6974
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6743
6975
  }
6744
6976
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetEditComponent, decorators: [{
6745
6977
  type: Component,
@@ -6805,11 +7037,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6805
7037
  }]
6806
7038
  }] });
6807
7039
 
6808
- var signaturePadWidgetFilter_component = /*#__PURE__*/Object.freeze({
6809
- __proto__: null,
6810
- AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent
6811
- });
6812
-
6813
7040
  class AXPSignatureWidgetPrintComponent extends AXPWidgetComponent {
6814
7041
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6815
7042
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSignatureWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
@@ -6845,7 +7072,7 @@ class AXPSignatureWidgetViewComponent extends AXPWidgetComponent {
6845
7072
  <span>{{placeholder()}}</span>
6846
7073
  }
6847
7074
  </div>
6848
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$5.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7075
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6849
7076
  }
6850
7077
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetViewComponent, decorators: [{
6851
7078
  type: Component,
@@ -6878,7 +7105,8 @@ const AXPSignatureWidget = {
6878
7105
  description: 'Captures digital signatures',
6879
7106
  icon: 'fa-solid fa-file-signature',
6880
7107
  group: AXP_WIDGETS_ADVANCE_GROUP,
6881
- properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_PLACEHOLDER_PROPERTY],
7108
+ type: 'editor',
7109
+ properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_VALIDATION_PROPERTY],
6882
7110
  components: {
6883
7111
  view: {
6884
7112
  component: () => Promise.resolve().then(function () { return signaturePadWidgetView_component; }).then((c) => c.AXPSignatureWidgetViewComponent),
@@ -6886,9 +7114,6 @@ const AXPSignatureWidget = {
6886
7114
  edit: {
6887
7115
  component: () => Promise.resolve().then(function () { return signaturePadWidgetEdit_component; }).then((c) => c.AXPSignatureWidgetEditComponent),
6888
7116
  },
6889
- filter: {
6890
- component: () => Promise.resolve().then(function () { return signaturePadWidgetFilter_component; }).then((c) => c.AXPSignatureWidgetFilterComponent),
6891
- },
6892
7117
  column: {
6893
7118
  component: () => Promise.resolve().then(function () { return signaturePadWidgetColumn_component; }).then((c) => c.AXPSignatureWidgetColumnComponent),
6894
7119
  },
@@ -7023,7 +7248,7 @@ class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
7023
7248
  @for (node of children(); track $index) {
7024
7249
  <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
7025
7250
  }
7026
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$5.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7251
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7027
7252
  }
7028
7253
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetViewComponent, decorators: [{
7029
7254
  type: Component,
@@ -7057,7 +7282,7 @@ const AXPBlockWidget = {
7057
7282
  description: 'Organizes content in blocks',
7058
7283
  icon: 'fa-solid fa-square',
7059
7284
  group: AXP_WIDGETS_LAYOUT_GROUP,
7060
- container: true,
7285
+ type: 'container',
7061
7286
  properties: [
7062
7287
  AXP_FONT_SIZE_PROPERTY,
7063
7288
  cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } }),
@@ -7094,7 +7319,7 @@ class AXPPageWidgetViewComponent extends AXPWidgetComponent {
7094
7319
  @for (node of children(); track $index) {
7095
7320
  <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="mode" > </axp-widget-renderer>
7096
7321
  }
7097
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$5.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
7322
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
7098
7323
  }
7099
7324
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetViewComponent, decorators: [{
7100
7325
  type: Component,
@@ -7126,9 +7351,13 @@ const AXPPageWidget = {
7126
7351
  description: 'Structures the entire page',
7127
7352
  icon: 'fa-solid fa-page',
7128
7353
  group: AXP_WIDGETS_LAYOUT_GROUP,
7129
- container: true,
7354
+ type: 'container',
7130
7355
  visible: false,
7131
- properties: [AXP_FONT_SIZE_PROPERTY, AXP_THEME_PROPERTY, AXP_BG_COLOR_PROPERTY],
7356
+ properties: [
7357
+ AXP_FONT_SIZE_PROPERTY,
7358
+ AXP_THEME_PROPERTY,
7359
+ AXP_BG_COLOR_PROPERTY
7360
+ ],
7132
7361
  components: {
7133
7362
  view: {
7134
7363
  component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
@@ -7170,7 +7399,7 @@ class AXPRepeaterWidgetViewComponent extends AXPWidgetComponent {
7170
7399
  }
7171
7400
  </ng-container>
7172
7401
  }
7173
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$5.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7402
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7174
7403
  }
7175
7404
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetViewComponent, decorators: [{
7176
7405
  type: Component,
@@ -7287,7 +7516,7 @@ const AXPRepeaterWidget = {
7287
7516
  description: 'Adds repeating form elements',
7288
7517
  icon: 'fa-solid fa-table-list',
7289
7518
  group: AXP_WIDGETS_LAYOUT_GROUP,
7290
- container: true,
7519
+ type: 'container',
7291
7520
  components: {
7292
7521
  view: {
7293
7522
  component: () => Promise.resolve().then(function () { return repeaterWidgetView_component; }).then((c) => c.AXPRepeaterWidgetViewComponent),
@@ -7304,10 +7533,129 @@ const AXPRepeaterWidget = {
7304
7533
  },
7305
7534
  };
7306
7535
 
7307
- class AXPColorBoxWidgetViewComponent extends AXPWidgetComponent {
7308
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7309
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPColorBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `{{ rawValue() }}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7310
- }
7536
+ class AXPQrcodeWidgetViewComponent extends AXPWidgetComponent {
7537
+ constructor() {
7538
+ super(...arguments);
7539
+ this.content = computed(() => this.options()['content']);
7540
+ this.size = computed(() => this.options()['size'] ?? 200);
7541
+ this.level = computed(() => this.options()['level']?.id ?? 'M');
7542
+ this.color = computed(() => AXColorUtil.colorStringToHex(this.options()['color'] ?? '#000000'));
7543
+ this.outputType = computed(() => this.options()['outputType'] ?? 'svg');
7544
+ }
7545
+ get __class() {
7546
+ const cls = {};
7547
+ cls[`ax-block`] = true;
7548
+ cls[`ax-flex-1`] = true;
7549
+ return cls;
7550
+ }
7551
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7552
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPQrcodeWidgetViewComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
7553
+ @if(this.content()){
7554
+ <ax-qrcode
7555
+ [content]="this.content()"
7556
+ [size]="size()"
7557
+ [color]="color()"
7558
+ [level]="level()"
7559
+ [outputType]="outputType()"
7560
+ >
7561
+ </ax-qrcode>
7562
+ }
7563
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$8.AXQrcodeComponent, selector: "ax-qrcode", inputs: ["content", "size", "level", "color", "backgroundColor", "outputType"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7564
+ }
7565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, decorators: [{
7566
+ type: Component,
7567
+ args: [{
7568
+ template: `
7569
+ @if(this.content()){
7570
+ <ax-qrcode
7571
+ [content]="this.content()"
7572
+ [size]="size()"
7573
+ [color]="color()"
7574
+ [level]="level()"
7575
+ [outputType]="outputType()"
7576
+ >
7577
+ </ax-qrcode>
7578
+ }
7579
+ `,
7580
+ standalone: true,
7581
+ changeDetection: ChangeDetectionStrategy.OnPush,
7582
+ imports: [CommonModule, AXQrcodeModule],
7583
+ }]
7584
+ }], propDecorators: { __class: [{
7585
+ type: HostBinding,
7586
+ args: ['class']
7587
+ }] } });
7588
+
7589
+ var qrcodeWidgetView_component = /*#__PURE__*/Object.freeze({
7590
+ __proto__: null,
7591
+ AXPQrcodeWidgetViewComponent: AXPQrcodeWidgetViewComponent
7592
+ });
7593
+
7594
+ const AXPQrcodeWidget = {
7595
+ name: 'qrcode',
7596
+ title: 'QR Code',
7597
+ group: AXP_WIDGETS_ADVANCE_GROUP,
7598
+ icon: 'fa-solid fa-qrcode',
7599
+ description: 'Display and edit QR Codes',
7600
+ type: 'view',
7601
+ properties: [
7602
+ AXP_NAME_PROPERTY,
7603
+ cloneProperty(AXP_COLOR_PROPERTY, { schema: { interface: { defaultValue: '#000000' } } }),
7604
+ cloneProperty(AXP_CONTENT_PROPERTY, { schema: { interface: { defaultValue: 'http://google.com' } } }),
7605
+ {
7606
+ name: 'size',
7607
+ title: 'Size',
7608
+ group: AXP_STYLING_PROPERTY_GROUP,
7609
+ schema: {
7610
+ dataType: 'string',
7611
+ defaultValue: 200,
7612
+ interface: {
7613
+ name: 'size',
7614
+ path: 'options.size',
7615
+ type: AXPWidgetsCatalog.number,
7616
+ },
7617
+ },
7618
+ visible: true,
7619
+ },
7620
+ {
7621
+ name: 'level',
7622
+ title: 'Error Correction Level',
7623
+ group: AXP_STYLING_PROPERTY_GROUP,
7624
+ schema: {
7625
+ dataType: 'string',
7626
+ interface: {
7627
+ defaultValue: 'M',
7628
+ name: 'level',
7629
+ path: 'options.level',
7630
+ type: AXPWidgetsCatalog.select,
7631
+ options: {
7632
+ dataSource: ['L', 'M', 'Q', 'H'].map((i) => ({ title: i, id: i })),
7633
+ },
7634
+ },
7635
+ },
7636
+ visible: true,
7637
+ },
7638
+ ],
7639
+ components: {
7640
+ view: {
7641
+ component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7642
+ },
7643
+ edit: {
7644
+ component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7645
+ },
7646
+ print: {
7647
+ component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7648
+ },
7649
+ designer: {
7650
+ component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7651
+ },
7652
+ },
7653
+ };
7654
+
7655
+ class AXPColorBoxWidgetViewComponent extends AXPWidgetComponent {
7656
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7657
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPColorBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `{{ rawValue() }}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7658
+ }
7311
7659
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetViewComponent, decorators: [{
7312
7660
  type: Component,
7313
7661
  args: [{
@@ -7348,7 +7696,7 @@ class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent {
7348
7696
  <ax-clear-button></ax-clear-button>
7349
7697
  }
7350
7698
  </ax-color-box>
7351
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$6.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7699
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$5.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7352
7700
  }
7353
7701
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, decorators: [{
7354
7702
  type: Component,
@@ -7443,6 +7791,7 @@ const AXPColorBoxWidget = {
7443
7791
  description: 'Picks and applies colors',
7444
7792
  icon: 'fa-solid fa-palette',
7445
7793
  group: AXP_WIDGETS_EDITOR_GROUP,
7794
+ type: 'editor',
7446
7795
  properties: [
7447
7796
  AXP_NAME_PROPERTY,
7448
7797
  AXP_DATA_PATH_PROPERTY,
@@ -7453,7 +7802,7 @@ const AXPColorBoxWidget = {
7453
7802
  ],
7454
7803
  components: {
7455
7804
  designer: {
7456
- component: () => import('./acorex-platform-widgets-color-box-widget-designer.component-BF24k3Y-.mjs').then((c) => c.AXPColorBoxWidgetDesignerComponent),
7805
+ component: () => import('./acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs').then((c) => c.AXPColorBoxWidgetDesignerComponent),
7457
7806
  },
7458
7807
  view: {
7459
7808
  component: () => Promise.resolve().then(function () { return colorBoxWidgetView_component; }).then((c) => c.AXPColorBoxWidgetViewComponent),
@@ -7473,82 +7822,13 @@ const AXPColorBoxWidget = {
7473
7822
  },
7474
7823
  };
7475
7824
 
7476
- class AXPTextBlockWidgetViewComponent extends AXPWidgetComponent {
7477
- constructor() {
7478
- super(...arguments);
7479
- this.sanitizer = inject(DomSanitizer);
7480
- this.content = computed(() => this.options()['content']);
7481
- this.innerContent = computed(() => this.sanitizer.bypassSecurityTrustHtml(this.content()));
7482
- }
7483
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7484
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBlockWidgetViewComponent, isStandalone: true, selector: "axp-text-block-widget", usesInheritance: true, ngImport: i0, template: `
7485
- <div [innerHTML]="innerContent()"></div>
7486
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7487
- }
7488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, decorators: [{
7489
- type: Component,
7490
- args: [{
7491
- selector: "axp-text-block-widget",
7492
- template: `
7493
- <div [innerHTML]="innerContent()"></div>
7494
- `,
7495
- standalone: true,
7496
- changeDetection: ChangeDetectionStrategy.OnPush,
7497
- imports: [CommonModule],
7498
- }]
7499
- }] });
7500
-
7501
- var textBlockWidgetView_component = /*#__PURE__*/Object.freeze({
7502
- __proto__: null,
7503
- AXPTextBlockWidgetViewComponent: AXPTextBlockWidgetViewComponent
7504
- });
7505
-
7506
- const AXPTextBlockWidget = {
7507
- name: 'text-block-layout',
7508
- title: 'Text Block',
7509
- description: 'Displays text blocks',
7510
- icon: 'fa-solid fa-text',
7511
- group: AXP_WIDGETS_LAYOUT_GROUP,
7512
- properties: [
7513
- {
7514
- name: 'content',
7515
- title: 'Content',
7516
- group: AXP_BEHAVIOR_PROPERTY_GROUP,
7517
- schema: {
7518
- dataType: 'string',
7519
- defaultValue: 'Text Block',
7520
- interface: {
7521
- name: 'content',
7522
- path: 'options.content',
7523
- type: AXPWidgetsCatalog.richText,
7524
- },
7525
- },
7526
- visible: true,
7527
- },
7528
- ],
7529
- components: {
7530
- view: {
7531
- component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
7532
- },
7533
- edit: {
7534
- component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
7535
- },
7536
- print: {
7537
- component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
7538
- },
7539
- designer: {
7540
- component: () => import('./acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs').then((c) => c.AXPTextBlockWidgetDesignerComponent),
7541
- },
7542
- },
7543
- };
7544
-
7545
7825
  const AXPDocumentWidget = {
7546
7826
  name: 'document-layout',
7547
7827
  title: 'Document',
7548
7828
  description: 'Structures the entire document',
7549
7829
  icon: 'fa-solid fa-page',
7550
7830
  group: AXP_WIDGETS_LAYOUT_GROUP,
7551
- container: true,
7831
+ type: 'container',
7552
7832
  visible: false,
7553
7833
  properties: [],
7554
7834
  components: {},
@@ -7567,7 +7847,7 @@ class AXPFormFieldWidgetViewComponent extends AXPWidgetComponent {
7567
7847
  <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
7568
7848
  }
7569
7849
  </ax-form-field>
7570
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$1.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$5.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7850
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7571
7851
  }
7572
7852
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFormFieldWidgetViewComponent, decorators: [{
7573
7853
  type: Component,
@@ -7617,7 +7897,7 @@ class AXPFormFieldWidgetDesignerComponent extends AXPContainerWidgetComponent {
7617
7897
  <axp-designer-add-widget-button class="axp-empty-space ax-block ax-p-0 "></axp-designer-add-widget-button>
7618
7898
  }
7619
7899
  </ax-form-field>
7620
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$1.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7900
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7621
7901
  }
7622
7902
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFormFieldWidgetDesignerComponent, decorators: [{
7623
7903
  type: Component,
@@ -7657,7 +7937,7 @@ const AXPFormFieldWidget = {
7657
7937
  name: 'form-field',
7658
7938
  title: 'Form Field',
7659
7939
  group: AXP_WIDGETS_LAYOUT_GROUP,
7660
- container: true,
7940
+ type: 'container',
7661
7941
  icon: 'fa-solid fa-pen-field',
7662
7942
  properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_LABEL_PROPERTY],
7663
7943
  components: {
@@ -7819,7 +8099,7 @@ var gridWidgetDesigner_component = /*#__PURE__*/Object.freeze({
7819
8099
  const AXPGridWidget = {
7820
8100
  name: 'grid-layout',
7821
8101
  title: 'Grid Layout',
7822
- container: true,
8102
+ type: 'container',
7823
8103
  group: AXP_WIDGETS_LAYOUT_GROUP,
7824
8104
  icon: 'fa-solid fa-grid',
7825
8105
  properties: [
@@ -7842,124 +8122,6 @@ const AXPGridWidget = {
7842
8122
  },
7843
8123
  };
7844
8124
 
7845
- class AXPQrcodeWidgetViewComponent extends AXPWidgetComponent {
7846
- constructor() {
7847
- super(...arguments);
7848
- this.content = computed(() => this.getValue());
7849
- this.size = computed(() => this.options()['size']);
7850
- this.level = computed(() => this.options()['level']?.id);
7851
- this.color = computed(() => AXColorUtil.colorStringToHex(this.options()['color'] ?? '#000000'));
7852
- this.outputType = computed(() => this.options()['outputType']);
7853
- }
7854
- get __class() {
7855
- const cls = {};
7856
- cls[`ax-block`] = true;
7857
- cls[`ax-flex-1`] = true;
7858
- return cls;
7859
- }
7860
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7861
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPQrcodeWidgetViewComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
7862
- @if(this.content()){
7863
- <ax-qrcode
7864
- [content]="this.content()"
7865
- [size]="size() ?? 200"
7866
- [color]="color()"
7867
- [level]="level() ?? 'M'"
7868
- [outputType]="outputType() ?? 'svg'"
7869
- >
7870
- </ax-qrcode>
7871
- }
7872
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$6.AXQrcodeComponent, selector: "ax-qrcode", inputs: ["content", "size", "level", "color", "backgroundColor", "outputType"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7873
- }
7874
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, decorators: [{
7875
- type: Component,
7876
- args: [{
7877
- template: `
7878
- @if(this.content()){
7879
- <ax-qrcode
7880
- [content]="this.content()"
7881
- [size]="size() ?? 200"
7882
- [color]="color()"
7883
- [level]="level() ?? 'M'"
7884
- [outputType]="outputType() ?? 'svg'"
7885
- >
7886
- </ax-qrcode>
7887
- }
7888
- `,
7889
- standalone: true,
7890
- changeDetection: ChangeDetectionStrategy.OnPush,
7891
- imports: [CommonModule, AXQrcodeModule],
7892
- }]
7893
- }], propDecorators: { __class: [{
7894
- type: HostBinding,
7895
- args: ['class']
7896
- }] } });
7897
-
7898
- var qrcodeWidgetView_component = /*#__PURE__*/Object.freeze({
7899
- __proto__: null,
7900
- AXPQrcodeWidgetViewComponent: AXPQrcodeWidgetViewComponent
7901
- });
7902
-
7903
- const AXPQrcodeWidget = {
7904
- name: 'qrcode',
7905
- title: 'QR Code',
7906
- group: AXP_WIDGETS_ADVANCE_GROUP,
7907
- container: false,
7908
- icon: 'fa-solid fa-qrcode',
7909
- description: 'Display and edit QR Codes',
7910
- properties: [
7911
- AXP_NAME_PROPERTY,
7912
- AXP_DATA_PATH_PROPERTY,
7913
- AXP_COLOR_PROPERTY,
7914
- plainTextDefaultProperty(),
7915
- {
7916
- name: 'size',
7917
- title: 'Size',
7918
- group: AXP_STYLING_PROPERTY_GROUP,
7919
- schema: {
7920
- dataType: 'string',
7921
- interface: {
7922
- name: 'size',
7923
- path: 'options.size',
7924
- type: AXPWidgetsCatalog.number,
7925
- },
7926
- },
7927
- visible: true,
7928
- },
7929
- {
7930
- name: 'level',
7931
- title: 'Error Correction Level',
7932
- group: AXP_STYLING_PROPERTY_GROUP,
7933
- schema: {
7934
- dataType: 'string',
7935
- interface: {
7936
- name: 'level',
7937
- path: 'options.level',
7938
- type: AXPWidgetsCatalog.select,
7939
- options: {
7940
- dataSource: ['L', 'M', 'Q', 'H'].map((i) => ({ title: i, id: i })),
7941
- },
7942
- },
7943
- },
7944
- visible: true,
7945
- },
7946
- ],
7947
- components: {
7948
- view: {
7949
- component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7950
- },
7951
- edit: {
7952
- component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7953
- },
7954
- print: {
7955
- component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7956
- },
7957
- designer: {
7958
- component: () => Promise.resolve().then(function () { return qrcodeWidgetView_component; }).then((c) => c.AXPQrcodeWidgetViewComponent),
7959
- },
7960
- },
7961
- };
7962
-
7963
8125
  class AXPGridItemWidgetViewComponent extends AXPWidgetComponent {
7964
8126
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridItemWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7965
8127
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPGridItemWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
@@ -8102,7 +8264,7 @@ var gridItemWidgetDesigner_component = /*#__PURE__*/Object.freeze({
8102
8264
  const AXPGridItemWidget = {
8103
8265
  name: 'grid-item-layout',
8104
8266
  title: 'Grid Item',
8105
- container: true,
8267
+ type: 'container',
8106
8268
  visible: false,
8107
8269
  group: AXP_WIDGETS_LAYOUT_GROUP,
8108
8270
  icon: 'fa-solid fa-objects-column',
@@ -8252,7 +8414,7 @@ const AXPGridRowWidget = {
8252
8414
  name: "grid-row-layout",
8253
8415
  title: "Grid Row Layout",
8254
8416
  group: AXP_WIDGETS_LAYOUT_GROUP,
8255
- container: true,
8417
+ type: 'container',
8256
8418
  icon: "fa-solid fa-diagram-cells",
8257
8419
  properties: [
8258
8420
  AXP_NAME_PROPERTY,
@@ -8274,9 +8436,79 @@ const AXPGridRowWidget = {
8274
8436
  }
8275
8437
  };
8276
8438
 
8439
+ class AXPTextBlockWidgetViewComponent extends AXPWidgetComponent {
8440
+ constructor() {
8441
+ super(...arguments);
8442
+ this.sanitizer = inject(DomSanitizer);
8443
+ this.content = computed(() => this.options()['content']);
8444
+ this.innerContent = computed(() => this.sanitizer.bypassSecurityTrustHtml(this.content()));
8445
+ }
8446
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
8447
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBlockWidgetViewComponent, isStandalone: true, selector: "axp-text-block-widget", usesInheritance: true, ngImport: i0, template: `
8448
+ <div [innerHTML]="innerContent()"></div>
8449
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8450
+ }
8451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, decorators: [{
8452
+ type: Component,
8453
+ args: [{
8454
+ selector: "axp-text-block-widget",
8455
+ template: `
8456
+ <div [innerHTML]="innerContent()"></div>
8457
+ `,
8458
+ standalone: true,
8459
+ changeDetection: ChangeDetectionStrategy.OnPush,
8460
+ imports: [CommonModule],
8461
+ }]
8462
+ }] });
8463
+
8464
+ var textBlockWidgetView_component = /*#__PURE__*/Object.freeze({
8465
+ __proto__: null,
8466
+ AXPTextBlockWidgetViewComponent: AXPTextBlockWidgetViewComponent
8467
+ });
8468
+
8469
+ const AXPTextBlockWidget = {
8470
+ name: 'text-block-layout',
8471
+ title: 'Text Block',
8472
+ description: 'Displays text blocks',
8473
+ icon: 'fa-solid fa-text',
8474
+ group: AXP_WIDGETS_LAYOUT_GROUP,
8475
+ type: 'view',
8476
+ properties: [
8477
+ {
8478
+ name: 'content',
8479
+ title: 'Content',
8480
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
8481
+ schema: {
8482
+ dataType: 'string',
8483
+ defaultValue: 'Text Block',
8484
+ interface: {
8485
+ name: 'content',
8486
+ path: 'options.content',
8487
+ type: AXPWidgetsCatalog.richText,
8488
+ },
8489
+ },
8490
+ visible: true,
8491
+ },
8492
+ ],
8493
+ components: {
8494
+ view: {
8495
+ component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
8496
+ },
8497
+ edit: {
8498
+ component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
8499
+ },
8500
+ print: {
8501
+ component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
8502
+ },
8503
+ designer: {
8504
+ component: () => import('./acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs').then((c) => c.AXPTextBlockWidgetDesignerComponent),
8505
+ },
8506
+ },
8507
+ };
8508
+
8277
8509
  class AXPWidgetsModule {
8278
8510
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8279
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [i1$5.AXPLayoutBuilderModule] }); }
8511
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [i1$7.AXPLayoutBuilderModule] }); }
8280
8512
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [AXPLayoutBuilderModule.forChild({
8281
8513
  widgets: [
8282
8514
  AXPDocumentWidget,
@@ -8301,9 +8533,9 @@ class AXPWidgetsModule {
8301
8533
  AXPSelectionListWidget,
8302
8534
  AXPLargeTextWidget,
8303
8535
  AXPMapBoxWidget,
8304
- AXPPhoneBoxWidget,
8305
- AXPEmailBoxWidget,
8306
- AXPLinkWidget,
8536
+ //AXPPhoneBoxWidget,
8537
+ //AXPEmailBoxWidget,
8538
+ //AXPLinkWidget,
8307
8539
  AXPFileBoxWidget,
8308
8540
  AXPQrcodeWidget,
8309
8541
  AXPPasswordBoxWidget,
@@ -8343,9 +8575,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
8343
8575
  AXPSelectionListWidget,
8344
8576
  AXPLargeTextWidget,
8345
8577
  AXPMapBoxWidget,
8346
- AXPPhoneBoxWidget,
8347
- AXPEmailBoxWidget,
8348
- AXPLinkWidget,
8578
+ //AXPPhoneBoxWidget,
8579
+ //AXPEmailBoxWidget,
8580
+ //AXPLinkWidget,
8349
8581
  AXPFileBoxWidget,
8350
8582
  AXPQrcodeWidget,
8351
8583
  AXPPasswordBoxWidget,
@@ -8366,5 +8598,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
8366
8598
  * Generated bundle index. Do not edit.
8367
8599
  */
8368
8600
 
8369
- export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetFilterComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetColumnComponent, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetFilterComponent, AXPMapBoxWidgetPrintComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_COLOR_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATE_FROMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ALIGN_CONTENT_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_ALIGN_PROPERTY, AXP_LAYOUT_FLEX_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY, AXP_LAYOUT_FLEX_PROPERTIES, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_FLEX_WRAP_PROPERTY, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, booleanDefaultProperty, plainTextDefaultProperty };
8601
+ export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTY, AXP_DATE_FROMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ALIGN_CONTENT_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_ALIGN_PROPERTY, AXP_LAYOUT_FLEX_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY, AXP_LAYOUT_FLEX_PROPERTIES, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_FLEX_WRAP_PROPERTY, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, plainTextDefaultProperty };
8370
8602
  //# sourceMappingURL=acorex-platform-widgets.mjs.map