@acorex/platform 18.0.0 → 18.0.2

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 (1210) hide show
  1. package/README.md +7 -7
  2. package/auth/README.md +3 -3
  3. package/auth/lib/auth.strategy.d.ts +6 -3
  4. package/common/README.md +3 -3
  5. package/common/index.d.ts +5 -3
  6. package/common/lib/app/application.types.d.ts +234 -0
  7. package/common/lib/app/index.d.ts +2 -0
  8. package/common/lib/common.module.d.ts +6 -4
  9. package/common/lib/configs/app.config.d.ts +1 -1
  10. package/common/lib/layout/beardcrumb.type.d.ts +6 -0
  11. package/common/lib/layout/grid-layout/grid-layout.directive.d.ts +15 -0
  12. package/common/lib/layout/grid-layout/grid-layout.types.d.ts +19 -0
  13. package/common/lib/layout/grid-layout/index.d.ts +2 -0
  14. package/common/lib/layout/index.d.ts +9 -0
  15. package/common/lib/layout/logo/index.d.ts +2 -0
  16. package/common/lib/layout/sticky.directive.d.ts +25 -0
  17. package/common/lib/layout/theme/components/slots/index.d.ts +3 -0
  18. package/common/lib/layout/theme/components/slots/navbar-slot.component.d.ts +10 -0
  19. package/common/lib/layout/theme/store/admin-layout.selectors.d.ts +5 -0
  20. package/common/lib/schema/entity/entity.class.d.ts +155 -0
  21. package/common/lib/schema/index.d.ts +8 -0
  22. package/common/lib/schema/schema.types.d.ts +15 -0
  23. package/common/lib/schema/widget/index.d.ts +5 -0
  24. package/common/lib/schema/widget/widget-base.d.ts +45 -0
  25. package/common/lib/schema/widget/widget-token.d.ts +16 -0
  26. package/common/lib/schema/widgets/avatar/avatar-widget-edit.component.d.ts +16 -0
  27. package/common/lib/schema/widgets/avatar/avatar-widget-view.component.d.ts +13 -0
  28. package/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.d.ts +11 -0
  29. package/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.d.ts +6 -0
  30. package/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.d.ts +11 -0
  31. package/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +18 -0
  32. package/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.d.ts +12 -0
  33. package/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.d.ts +12 -0
  34. package/common/lib/schema/widgets/common-widgets.module.d.ts +32 -0
  35. package/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.d.ts +11 -0
  36. package/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.d.ts +26 -0
  37. package/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.d.ts +16 -0
  38. package/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.d.ts +11 -0
  39. package/common/lib/schema/widgets/email/email-widget-column.component.d.ts +16 -0
  40. package/common/lib/schema/widgets/email/email-widget-edit.component.d.ts +28 -0
  41. package/common/lib/schema/widgets/email/email-widget-view.component.d.ts +16 -0
  42. package/common/lib/schema/widgets/file/file-widget-column.component.d.ts +8 -0
  43. package/common/lib/schema/widgets/file/file-widget-edit.component.d.ts +17 -0
  44. package/common/lib/schema/widgets/file/file-widget-filter.component.d.ts +6 -0
  45. package/common/lib/schema/widgets/file/file-widget-view.component.d.ts +17 -0
  46. package/common/lib/schema/widgets/gallery/gallery-widget-edit.component.d.ts +15 -0
  47. package/common/lib/schema/widgets/gallery/gallery-widget-filter.component.d.ts +6 -0
  48. package/common/lib/schema/widgets/gallery/gallery-widget-view.component.d.ts +16 -0
  49. package/common/lib/schema/widgets/lookup/lookup-widget-column.component.d.ts +17 -0
  50. package/common/lib/schema/widgets/lookup/lookup-widget-edit.component.d.ts +15 -0
  51. package/common/lib/schema/widgets/lookup/lookup-widget-filter.component.d.ts +17 -0
  52. package/common/lib/schema/widgets/lookup/lookup-widget-view.component.d.ts +17 -0
  53. package/common/lib/schema/widgets/map/map-widget-edit.component.d.ts +15 -0
  54. package/common/lib/schema/widgets/map/map-widget-view.component.d.ts +17 -0
  55. package/common/lib/schema/widgets/messenger/messenger-widget-column.component.d.ts +15 -0
  56. package/common/lib/schema/widgets/messenger/messenger-widget-edit.component.d.ts +14 -0
  57. package/common/lib/schema/widgets/messenger/messenger-widget-view.component.d.ts +17 -0
  58. package/common/lib/schema/widgets/number/number-widget-edit.component.d.ts +7 -0
  59. package/common/lib/schema/widgets/number/number-widget-view.component.d.ts +8 -0
  60. package/common/lib/schema/widgets/password/password-widget-column.component.d.ts +14 -0
  61. package/common/lib/schema/widgets/password/password-widget-edit.component.d.ts +6 -0
  62. package/common/lib/schema/widgets/password/password-widget-view.component.d.ts +18 -0
  63. package/common/lib/schema/widgets/phone/phone-widget-column.component.d.ts +15 -0
  64. package/common/lib/schema/widgets/phone/phone-widget-edit.component.d.ts +29 -0
  65. package/common/lib/schema/widgets/phone/phone-widget-view.component.d.ts +18 -0
  66. package/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.d.ts +11 -0
  67. package/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.d.ts +33 -0
  68. package/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.d.ts +10 -0
  69. package/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.d.ts +16 -0
  70. package/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.d.ts +12 -0
  71. package/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.d.ts +9 -0
  72. package/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.d.ts +15 -0
  73. package/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.d.ts +19 -0
  74. package/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.d.ts +8 -0
  75. package/common/lib/schema/widgets/text/largetext-widget-edit.component.d.ts +6 -0
  76. package/common/lib/schema/widgets/text/text-widget-column.component.d.ts +12 -0
  77. package/common/lib/schema/widgets/text/text-widget-edit.component.d.ts +23 -0
  78. package/common/lib/schema/widgets/text/text-widget-view.component.d.ts +11 -0
  79. package/common/lib/schema/widgets/toggle/toggle-widget-column.component.d.ts +11 -0
  80. package/common/lib/schema/widgets/toggle/toggle-widget-edit.component.d.ts +6 -0
  81. package/common/lib/schema/widgets/toggle/toggle-widget-view.component.d.ts +11 -0
  82. package/common/lib/store/common.actions.d.ts +1 -0
  83. package/common/lib/utils/data-generator.d.ts +12 -0
  84. package/common/lib/utils/index.d.ts +1 -1
  85. package/common/lib/utils/router-util.service.d.ts +1 -1
  86. package/common/lib/workflows/common.workflow.d.ts +38 -0
  87. package/common/lib/workflows/error-handler.d.ts +8 -0
  88. package/esm2022/auth/index.mjs +1 -1
  89. package/esm2022/auth/lib/application/application.loader.mjs +1 -1
  90. package/esm2022/auth/lib/application/application.types.mjs +1 -1
  91. package/esm2022/auth/lib/auth-registry.service.mjs +1 -1
  92. package/esm2022/auth/lib/auth.guard.mjs +1 -1
  93. package/esm2022/auth/lib/auth.module.mjs +1 -1
  94. package/esm2022/auth/lib/auth.strategy.mjs +1 -1
  95. package/esm2022/auth/lib/errors.types.mjs +1 -1
  96. package/esm2022/auth/lib/feature/feature.directive.mjs +1 -1
  97. package/esm2022/auth/lib/feature/feature.guard.mjs +1 -1
  98. package/esm2022/auth/lib/feature/feature.loader.mjs +1 -1
  99. package/esm2022/auth/lib/feature/feature.types.mjs +1 -1
  100. package/esm2022/auth/lib/feature/index.mjs +1 -1
  101. package/esm2022/auth/lib/permission/index.mjs +1 -1
  102. package/esm2022/auth/lib/permission/permission.directive.mjs +1 -1
  103. package/esm2022/auth/lib/permission/permission.guard.mjs +1 -1
  104. package/esm2022/auth/lib/permission/permission.loader.mjs +1 -1
  105. package/esm2022/auth/lib/permission/permission.types.mjs +1 -1
  106. package/esm2022/auth/lib/session.service.mjs +4 -2
  107. package/esm2022/auth/lib/session.types.mjs +1 -1
  108. package/esm2022/auth/lib/tenant/tenant.loader.mjs +1 -1
  109. package/esm2022/auth/lib/tenant/tenant.types.mjs +1 -1
  110. package/esm2022/auth/lib/user/user.types.mjs +1 -1
  111. package/esm2022/common/index.mjs +6 -4
  112. package/esm2022/common/lib/app/application.types.mjs +39 -0
  113. package/esm2022/common/lib/app/index.mjs +3 -0
  114. package/esm2022/common/lib/app/operators.mjs +50 -0
  115. package/esm2022/common/lib/common.module.mjs +20 -44
  116. package/esm2022/common/lib/configs/app.config.mjs +2 -2
  117. package/esm2022/common/lib/configs/config.types.mjs +3 -0
  118. package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
  119. package/esm2022/common/lib/errors/error-handler-registry.service.mjs +1 -1
  120. package/esm2022/common/lib/errors/error-handler.types.mjs +1 -1
  121. package/esm2022/common/lib/errors/global-error-handler.mjs +1 -1
  122. package/esm2022/common/lib/errors/index.mjs +1 -1
  123. package/esm2022/common/lib/layout/beardcrumb.type.mjs +2 -0
  124. package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +56 -0
  125. package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +28 -0
  126. package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +24 -0
  127. package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +72 -0
  128. package/esm2022/common/lib/layout/component-slot/component-slot.types.mjs +2 -0
  129. package/esm2022/common/lib/layout/component-slot/index.mjs +6 -0
  130. package/esm2022/common/lib/layout/grid-layout/grid-layout.directive.mjs +61 -0
  131. package/esm2022/common/lib/layout/grid-layout/grid-layout.types.mjs +2 -0
  132. package/esm2022/common/lib/layout/grid-layout/index.mjs +3 -0
  133. package/esm2022/common/lib/layout/index.mjs +10 -0
  134. package/esm2022/common/lib/layout/layout.service.mjs +79 -0
  135. package/esm2022/common/lib/layout/logo/index.mjs +3 -0
  136. package/esm2022/common/lib/layout/logo/logo.component.mjs +38 -0
  137. package/esm2022/common/lib/layout/logo/logo.types.mjs +21 -0
  138. package/esm2022/common/lib/layout/menu/index.mjs +3 -0
  139. package/esm2022/common/lib/layout/menu/menu.loader.mjs +39 -0
  140. package/esm2022/common/lib/layout/menu/menu.types.mjs +2 -0
  141. package/esm2022/common/lib/layout/sticky.directive.mjs +78 -0
  142. package/esm2022/common/lib/layout/theme/components/slots/footer-text-slot.component.mjs +20 -0
  143. package/esm2022/common/lib/layout/theme/components/slots/index.mjs +4 -0
  144. package/esm2022/common/lib/layout/theme/components/slots/navbar-slot.component.mjs +36 -0
  145. package/esm2022/common/lib/layout/theme/components/slots/theme-slot.component.mjs +48 -0
  146. package/esm2022/common/lib/layout/theme/store/admin-layout.actions.mjs +12 -0
  147. package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +29 -0
  148. package/esm2022/common/lib/layout/theme/store/admin-layout.reducers.mjs +60 -0
  149. package/esm2022/common/lib/layout/theme/store/admin-layout.selectors.mjs +8 -0
  150. package/esm2022/common/lib/layout/theme/store/admin-layout.state.mjs +16 -0
  151. package/esm2022/common/lib/layout/theme/store/index.mjs +6 -0
  152. package/esm2022/common/lib/schema/component-loader.mjs +2 -0
  153. package/esm2022/common/lib/schema/entity/entity-registery.service.mjs +70 -0
  154. package/esm2022/common/lib/schema/entity/entity.class.mjs +32 -0
  155. package/esm2022/common/lib/schema/entity/entity.loader.mjs +13 -0
  156. package/esm2022/common/lib/schema/entity/index.mjs +4 -0
  157. package/esm2022/common/lib/schema/formats.mjs +2 -0
  158. package/esm2022/common/lib/schema/index.mjs +9 -0
  159. package/esm2022/common/lib/schema/schema-registery.service.mjs +33 -0
  160. package/esm2022/common/lib/schema/schema.module.mjs +23 -0
  161. package/esm2022/common/lib/schema/schema.types.mjs +2 -0
  162. package/esm2022/common/lib/schema/widget/index.mjs +6 -0
  163. package/esm2022/common/lib/schema/widget/widget-base.mjs +113 -0
  164. package/esm2022/common/lib/schema/widget/widget-column-renderer.mjs +118 -0
  165. package/esm2022/common/lib/schema/widget/widget-filter-renderer.mjs +133 -0
  166. package/esm2022/common/lib/schema/widget/widget-renderer.mjs +144 -0
  167. package/esm2022/common/lib/schema/widget/widget-token.mjs +3 -0
  168. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +160 -0
  169. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-view.component.mjs +63 -0
  170. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.mjs +53 -0
  171. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.mjs +22 -0
  172. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.mjs +47 -0
  173. package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +147 -0
  174. package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +135 -0
  175. package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +125 -0
  176. package/esm2022/common/lib/schema/widgets/common-widgets.module.mjs +505 -0
  177. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.mjs +44 -0
  178. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.mjs +178 -0
  179. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +213 -0
  180. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.mjs +71 -0
  181. package/esm2022/common/lib/schema/widgets/email/email-widget-column.component.mjs +73 -0
  182. package/esm2022/common/lib/schema/widgets/email/email-widget-edit.component.mjs +249 -0
  183. package/esm2022/common/lib/schema/widgets/email/email-widget-view.component.mjs +108 -0
  184. package/esm2022/common/lib/schema/widgets/file/file-widget-column.component.mjs +27 -0
  185. package/esm2022/common/lib/schema/widgets/file/file-widget-edit.component.mjs +200 -0
  186. package/esm2022/common/lib/schema/widgets/file/file-widget-filter.component.mjs +27 -0
  187. package/esm2022/common/lib/schema/widgets/file/file-widget-view.component.mjs +153 -0
  188. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +189 -0
  189. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-filter.component.mjs +27 -0
  190. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-types.mjs +2 -0
  191. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +173 -0
  192. package/esm2022/common/lib/schema/widgets/index.mjs +2 -0
  193. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-column.component.mjs +43 -0
  194. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +74 -0
  195. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +115 -0
  196. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-view.component.mjs +54 -0
  197. package/esm2022/common/lib/schema/widgets/map/map-widget-edit.component.mjs +91 -0
  198. package/esm2022/common/lib/schema/widgets/map/map-widget-view.component.mjs +63 -0
  199. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-column.component.mjs +71 -0
  200. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-edit.component.mjs +136 -0
  201. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-view.component.mjs +132 -0
  202. package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +46 -0
  203. package/esm2022/common/lib/schema/widgets/number/number-widget-view.component.mjs +30 -0
  204. package/esm2022/common/lib/schema/widgets/password/change-password.component.mjs +174 -0
  205. package/esm2022/common/lib/schema/widgets/password/password-widget-column.component.mjs +67 -0
  206. package/esm2022/common/lib/schema/widgets/password/password-widget-edit.component.mjs +41 -0
  207. package/esm2022/common/lib/schema/widgets/password/password-widget-view.component.mjs +109 -0
  208. package/esm2022/common/lib/schema/widgets/phone/phone-widget-column.component.mjs +91 -0
  209. package/esm2022/common/lib/schema/widgets/phone/phone-widget-edit.component.mjs +245 -0
  210. package/esm2022/common/lib/schema/widgets/phone/phone-widget-view.component.mjs +123 -0
  211. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.mjs +61 -0
  212. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.mjs +67 -0
  213. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.mjs +34 -0
  214. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.mjs +45 -0
  215. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.mjs +53 -0
  216. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.mjs +41 -0
  217. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.mjs +45 -0
  218. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.mjs +128 -0
  219. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.mjs +41 -0
  220. package/esm2022/common/lib/schema/widgets/text/largetext-widget-edit.component.mjs +37 -0
  221. package/esm2022/common/lib/schema/widgets/text/text-widget-column.component.mjs +46 -0
  222. package/esm2022/common/lib/schema/widgets/text/text-widget-edit.component.mjs +162 -0
  223. package/esm2022/common/lib/schema/widgets/text/text-widget-view.component.mjs +66 -0
  224. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-column.component.mjs +57 -0
  225. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-edit.component.mjs +25 -0
  226. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-view.component.mjs +49 -0
  227. package/esm2022/common/lib/settings/index.mjs +1 -1
  228. package/esm2022/common/lib/settings/settings.loader.mjs +1 -1
  229. package/esm2022/common/lib/settings/settings.service.mjs +1 -1
  230. package/esm2022/common/lib/settings/settings.types.mjs +1 -1
  231. package/esm2022/common/lib/store/common.actions.mjs +2 -1
  232. package/esm2022/common/lib/store/common.effects.mjs +1 -1
  233. package/esm2022/common/lib/store/index.mjs +1 -1
  234. package/esm2022/common/lib/utils/clipboard-service.mjs +1 -1
  235. package/esm2022/common/lib/utils/data-generator.mjs +47 -0
  236. package/esm2022/common/lib/utils/index.mjs +2 -2
  237. package/esm2022/common/lib/utils/router-util.service.mjs +1 -1
  238. package/esm2022/common/lib/workflows/common.workflow.mjs +68 -0
  239. package/esm2022/common/lib/workflows/error-handler.mjs +24 -0
  240. package/esm2022/common/lib/workflows/index.mjs +3 -0
  241. package/esm2022/index.mjs +1 -1
  242. package/esm2022/layout/builder/acorex-platform-layout-builder.mjs +5 -0
  243. package/esm2022/layout/builder/index.mjs +2 -0
  244. package/esm2022/layout/builder/lib/builder/builder.module.mjs +67 -0
  245. package/esm2022/layout/builder/lib/builder/builder.service.mjs +81 -0
  246. package/esm2022/layout/builder/lib/builder/index.mjs +9 -0
  247. package/esm2022/layout/builder/lib/builder/layout.types.mjs +2 -0
  248. package/esm2022/layout/builder/lib/builder/widget-column-renderer.mjs +110 -0
  249. package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +55 -0
  250. package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +33 -0
  251. package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +293 -0
  252. package/esm2022/layout/builder/lib/builder/widget.types.mjs +74 -0
  253. package/esm2022/layout/entity/acorex-platform-layout-entity.mjs +5 -0
  254. package/esm2022/layout/entity/index.mjs +2 -0
  255. package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +154 -0
  256. package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +128 -0
  257. package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +278 -0
  258. package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +230 -0
  259. package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +101 -0
  260. package/esm2022/layout/entity/lib/entity-registery.service.mjs +69 -0
  261. package/esm2022/layout/entity/lib/entity.config.mjs +4 -0
  262. package/esm2022/layout/entity/lib/entity.module.mjs +134 -0
  263. package/esm2022/layout/entity/lib/entity.viewmodel.mjs +32 -0
  264. package/esm2022/layout/entity/lib/index.mjs +9 -0
  265. package/esm2022/layout/entity/lib/widgets/lookup-widget/index.mjs +8 -0
  266. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +19 -0
  267. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.mjs +19 -0
  268. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +127 -0
  269. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.mjs +20 -0
  270. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.mjs +19 -0
  271. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +105 -0
  272. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +85 -0
  273. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +19 -0
  274. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +24 -0
  275. package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +93 -0
  276. package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +123 -0
  277. package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +104 -0
  278. package/esm2022/layout/entity/lib/workflows/show-details.workflow.mjs +36 -0
  279. package/esm2022/layouts/index.mjs +1 -3
  280. package/esm2022/layouts/lib/admin/admin.module.mjs +9 -17
  281. package/esm2022/layouts/lib/admin/admin.routes.mjs +7 -8
  282. package/esm2022/layouts/lib/admin/custom-reuse.strategy.mjs +1 -1
  283. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +6 -6
  284. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +3 -2
  285. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +3 -2
  286. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +8 -11
  287. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/index.mjs +1 -1
  288. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +5 -5
  289. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/index.mjs +1 -1
  290. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.mjs +4 -4
  291. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +6 -9
  292. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.mjs +19 -19
  293. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.mjs +6 -8
  294. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +6 -7
  295. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/index.mjs +1 -1
  296. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +3 -3
  297. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +2 -3
  298. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +5 -5
  299. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +3 -2
  300. package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +5 -6
  301. package/esm2022/layouts/lib/admin/entity-layout/index.mjs +1 -1
  302. package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +2 -2
  303. package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +2 -2
  304. package/esm2022/layouts/lib/admin/entity-layout/workflows/index.mjs +4 -1
  305. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +2 -2
  306. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.mjs +85 -0
  307. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-details.workflow.mjs +27 -1
  308. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +26 -1
  309. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.mjs +41 -1
  310. package/esm2022/layouts/lib/admin/entity.resolver.mjs +1 -1
  311. package/esm2022/layouts/lib/admin/index.mjs +1 -3
  312. package/esm2022/layouts/lib/layout.module.mjs +9 -14
  313. package/esm2022/mocks/index.mjs +1 -1
  314. package/esm2022/mocks/lib/mocks.module.mjs +1 -1
  315. package/esm2022/mocks/lib/services/mocker.service.mjs +1 -1
  316. package/esm2022/mocks/lib/storage/storage.mock.service.mjs +1 -1
  317. package/esm2022/native/index.mjs +1 -1
  318. package/esm2022/native/lib/native.service.mjs +1 -1
  319. package/esm2022/themes/default/acorex-platform-themes-default.mjs +5 -0
  320. package/esm2022/themes/default/index.mjs +3 -0
  321. package/esm2022/themes/default/lib/default.module.mjs +74 -0
  322. package/esm2022/themes/default/lib/entity-reuse.strategy.mjs +21 -0
  323. package/esm2022/themes/default/lib/layout.routes.mjs +20 -0
  324. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +114 -0
  325. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +93 -0
  326. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-list-view.component.mjs +157 -0
  327. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.mjs +64 -0
  328. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +61 -0
  329. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +82 -0
  330. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +77 -0
  331. package/esm2022/themes/default/lib/layouts/root-layout/components/footer/footer.component.mjs +14 -0
  332. package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +29 -0
  333. package/esm2022/themes/default/lib/layouts/root-layout/index.mjs +5 -0
  334. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +78 -0
  335. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +91 -0
  336. package/esm2022/themes/default/lib/pages/errors/error-401/error-401.component.mjs +28 -0
  337. package/esm2022/themes/default/lib/pages/errors/error-404/error-404.component.mjs +22 -0
  338. package/esm2022/themes/default/lib/pages/errors/error-offline/error-offline.component.mjs +16 -0
  339. package/esm2022/widgets/index.mjs +1 -1
  340. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-column.component.mjs +45 -0
  341. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-edit.component.mjs +10 -10
  342. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-view.component.mjs +54 -0
  343. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget.config.mjs +10 -4
  344. package/esm2022/widgets/lib/editors/checkbox/index.mjs +1 -1
  345. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +32 -7
  346. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +2 -2
  347. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +54 -54
  348. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +2 -2
  349. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +2 -2
  350. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +18 -18
  351. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.mjs +1 -1
  352. package/esm2022/widgets/lib/editors/date-time-box-widget/index.mjs +1 -1
  353. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-column.component.mjs +54 -7
  354. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.mjs +2 -2
  355. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.mjs +173 -141
  356. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.mjs +2 -2
  357. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-print.component.mjs +2 -2
  358. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-view.component.mjs +70 -70
  359. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget.config.mjs +1 -1
  360. package/esm2022/widgets/lib/editors/email-box-widget/index.mjs +1 -1
  361. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-column.component.mjs +2 -2
  362. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.mjs +2 -2
  363. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.mjs +112 -112
  364. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.mjs +2 -2
  365. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-print.component.mjs +2 -2
  366. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-view.component.mjs +64 -64
  367. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget.config.mjs +1 -1
  368. package/esm2022/widgets/lib/editors/file-box-widget/index.mjs +1 -1
  369. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-column.component.mjs +2 -2
  370. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.mjs +2 -2
  371. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.mjs +108 -108
  372. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.mjs +2 -2
  373. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-print.component.mjs +2 -2
  374. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-types.mjs +1 -1
  375. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-view.component.mjs +98 -98
  376. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget.config.mjs +1 -1
  377. package/esm2022/widgets/lib/editors/gallery-widget/index.mjs +1 -1
  378. package/esm2022/widgets/lib/editors/map-box-widget/index.mjs +1 -1
  379. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-column.component.mjs +2 -2
  380. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.mjs +2 -2
  381. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.mjs +6 -6
  382. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.mjs +2 -2
  383. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-print.component.mjs +2 -2
  384. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-view.component.mjs +6 -6
  385. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget.config.mjs +1 -1
  386. package/esm2022/widgets/lib/editors/number-box-widget/index.mjs +1 -1
  387. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +26 -7
  388. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.mjs +2 -2
  389. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.mjs +68 -68
  390. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.mjs +2 -2
  391. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-print.component.mjs +2 -2
  392. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +33 -19
  393. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget.config.mjs +4 -1
  394. package/esm2022/widgets/lib/editors/password-box-widget/index.mjs +1 -1
  395. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-column.component.mjs +2 -2
  396. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.mjs +2 -2
  397. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.mjs +10 -10
  398. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.mjs +2 -2
  399. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-print.component.mjs +2 -2
  400. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-view.component.mjs +46 -46
  401. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget.config.mjs +1 -1
  402. package/esm2022/widgets/lib/editors/phone-box-widget/index.mjs +1 -1
  403. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.mjs +54 -7
  404. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.mjs +2 -2
  405. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.mjs +162 -134
  406. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.mjs +2 -2
  407. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.mjs +2 -2
  408. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.mjs +70 -70
  409. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget.config.mjs +1 -1
  410. package/esm2022/widgets/lib/editors/rich-text-widget/index.mjs +1 -1
  411. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.mjs +2 -2
  412. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.mjs +2 -2
  413. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +10 -10
  414. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.mjs +2 -2
  415. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.mjs +2 -2
  416. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +10 -10
  417. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget.config.mjs +1 -1
  418. package/esm2022/widgets/lib/editors/select-box-widget/index.mjs +1 -1
  419. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-column.component.mjs +5 -5
  420. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.mjs +2 -2
  421. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.mjs +26 -26
  422. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.mjs +2 -2
  423. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-print.component.mjs +2 -2
  424. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-view.component.mjs +24 -18
  425. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget.config.mjs +1 -1
  426. package/esm2022/widgets/lib/editors/selection-list-widget/index.mjs +1 -1
  427. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.mjs +30 -8
  428. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.mjs +2 -2
  429. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.mjs +32 -32
  430. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.mjs +2 -2
  431. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.mjs +2 -2
  432. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +29 -8
  433. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget.config.mjs +1 -1
  434. package/esm2022/widgets/lib/editors/signature-pad-widget/index.mjs +1 -1
  435. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +2 -2
  436. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +2 -2
  437. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +56 -56
  438. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +2 -2
  439. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +2 -2
  440. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +18 -18
  441. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.mjs +1 -1
  442. package/esm2022/widgets/lib/editors/text-box-widget/index.mjs +1 -1
  443. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-column.component.mjs +7 -6
  444. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.mjs +2 -2
  445. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +62 -62
  446. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.mjs +2 -2
  447. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-print.component.mjs +2 -2
  448. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +18 -18
  449. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget.config.mjs +2 -1
  450. package/esm2022/widgets/lib/editors/toggle-widget/index.mjs +8 -0
  451. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-column.component.mjs +47 -0
  452. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.mjs +19 -0
  453. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.mjs +27 -0
  454. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.mjs +20 -0
  455. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-print.component.mjs +19 -0
  456. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-view.component.mjs +47 -0
  457. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget.config.mjs +24 -0
  458. package/esm2022/widgets/lib/layout/block-widget/block-widget.component.mjs +14 -14
  459. package/esm2022/widgets/lib/layout/block-widget/block-widget.config.mjs +1 -1
  460. package/esm2022/widgets/lib/layout/block-widget/index.mjs +1 -1
  461. package/esm2022/widgets/lib/widgets.module.mjs +6 -3
  462. package/esm2022/workflow/index.mjs +1 -1
  463. package/esm2022/workflow/lib/errors.types.mjs +1 -1
  464. package/esm2022/workflow/lib/workflow-event-dispatcher.service.mjs +1 -1
  465. package/esm2022/workflow/lib/workflow-registery.service.mjs +1 -1
  466. package/esm2022/workflow/lib/workflow.module.mjs +1 -1
  467. package/esm2022/workflow/lib/workflow.service.mjs +1 -1
  468. package/esm2022/workflow/lib/workflow.types.mjs +1 -1
  469. package/fesm2022/acorex-platform-auth.mjs +3 -1
  470. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  471. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs +178 -0
  472. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs.map +1 -0
  473. package/fesm2022/acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs +85 -0
  474. package/fesm2022/acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs.map +1 -0
  475. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs +169 -0
  476. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs.map +1 -0
  477. package/fesm2022/acorex-platform-common-change-password.component-NvrMMq9e.mjs +177 -0
  478. package/fesm2022/acorex-platform-common-change-password.component-NvrMMq9e.mjs.map +1 -0
  479. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs +76 -0
  480. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs.map +1 -0
  481. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs +46 -0
  482. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs.map +1 -0
  483. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs +70 -0
  484. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs.map +1 -0
  485. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs +66 -0
  486. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs.map +1 -0
  487. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs +198 -0
  488. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs.map +1 -0
  489. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs +233 -0
  490. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs.map +1 -0
  491. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs +93 -0
  492. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs.map +1 -0
  493. package/fesm2022/acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs +97 -0
  494. package/fesm2022/acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs.map +1 -0
  495. package/fesm2022/acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs +269 -0
  496. package/fesm2022/acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs.map +1 -0
  497. package/fesm2022/acorex-platform-common-email-widget-view.component-B6puyycL.mjs +130 -0
  498. package/fesm2022/acorex-platform-common-email-widget-view.component-B6puyycL.mjs.map +1 -0
  499. package/fesm2022/acorex-platform-common-file-widget-column.component-C1faGR4K.mjs +49 -0
  500. package/fesm2022/acorex-platform-common-file-widget-column.component-C1faGR4K.mjs.map +1 -0
  501. package/fesm2022/acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs +221 -0
  502. package/fesm2022/acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs.map +1 -0
  503. package/fesm2022/acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs +51 -0
  504. package/fesm2022/acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs.map +1 -0
  505. package/fesm2022/acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs +174 -0
  506. package/fesm2022/acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs.map +1 -0
  507. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs +209 -0
  508. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs.map +1 -0
  509. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs +50 -0
  510. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs.map +1 -0
  511. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs +193 -0
  512. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs.map +1 -0
  513. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs +60 -0
  514. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs.map +1 -0
  515. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs +66 -0
  516. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs.map +1 -0
  517. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs +96 -0
  518. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs.map +1 -0
  519. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs +135 -0
  520. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs.map +1 -0
  521. package/fesm2022/acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs +77 -0
  522. package/fesm2022/acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs.map +1 -0
  523. package/fesm2022/acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs +114 -0
  524. package/fesm2022/acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs.map +1 -0
  525. package/fesm2022/acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs +86 -0
  526. package/fesm2022/acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs.map +1 -0
  527. package/fesm2022/acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs +95 -0
  528. package/fesm2022/acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs.map +1 -0
  529. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs +157 -0
  530. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs.map +1 -0
  531. package/fesm2022/acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs +154 -0
  532. package/fesm2022/acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs.map +1 -0
  533. package/fesm2022/acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs +68 -0
  534. package/fesm2022/acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs.map +1 -0
  535. package/fesm2022/acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs +157 -0
  536. package/fesm2022/acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs.map +1 -0
  537. package/fesm2022/acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs +54 -0
  538. package/fesm2022/acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs.map +1 -0
  539. package/fesm2022/acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs +89 -0
  540. package/fesm2022/acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs.map +1 -0
  541. package/fesm2022/acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs +64 -0
  542. package/fesm2022/acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs.map +1 -0
  543. package/fesm2022/acorex-platform-common-password-widget-view.component-CKaQItON.mjs +128 -0
  544. package/fesm2022/acorex-platform-common-password-widget-view.component-CKaQItON.mjs.map +1 -0
  545. package/fesm2022/acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs +115 -0
  546. package/fesm2022/acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs.map +1 -0
  547. package/fesm2022/acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs +265 -0
  548. package/fesm2022/acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs.map +1 -0
  549. package/fesm2022/acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs +145 -0
  550. package/fesm2022/acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs.map +1 -0
  551. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs +85 -0
  552. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs.map +1 -0
  553. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs +89 -0
  554. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs.map +1 -0
  555. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs +58 -0
  556. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs.map +1 -0
  557. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs +69 -0
  558. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs.map +1 -0
  559. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs +76 -0
  560. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs.map +1 -0
  561. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs +65 -0
  562. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs.map +1 -0
  563. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs +69 -0
  564. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs.map +1 -0
  565. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs +148 -0
  566. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs.map +1 -0
  567. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs +63 -0
  568. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs.map +1 -0
  569. package/fesm2022/acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs +147 -0
  570. package/fesm2022/acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs.map +1 -0
  571. package/fesm2022/acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs +70 -0
  572. package/fesm2022/acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs.map +1 -0
  573. package/fesm2022/acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs +183 -0
  574. package/fesm2022/acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs.map +1 -0
  575. package/fesm2022/acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs +90 -0
  576. package/fesm2022/acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs.map +1 -0
  577. package/fesm2022/acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs +80 -0
  578. package/fesm2022/acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs.map +1 -0
  579. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs +46 -0
  580. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs.map +1 -0
  581. package/fesm2022/acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs +72 -0
  582. package/fesm2022/acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs.map +1 -0
  583. package/fesm2022/acorex-platform-common.mjs +2056 -246
  584. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  585. package/fesm2022/acorex-platform-layout-builder.mjs +687 -0
  586. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -0
  587. package/fesm2022/acorex-platform-layout-entity.mjs +1848 -0
  588. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -0
  589. package/fesm2022/acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs +107 -0
  590. package/fesm2022/acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs.map +1 -0
  591. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-D1h1xORH.mjs +88 -0
  592. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-D1h1xORH.mjs.map +1 -0
  593. package/fesm2022/acorex-platform-layouts.mjs +1058 -2553
  594. package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
  595. package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
  596. package/fesm2022/acorex-platform-native.mjs.map +1 -1
  597. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs +96 -0
  598. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs.map +1 -0
  599. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-F7dr-osu.mjs +85 -0
  600. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-F7dr-osu.mjs.map +1 -0
  601. package/fesm2022/acorex-platform-themes-default-error-401.component-Djuin07Z.mjs +31 -0
  602. package/fesm2022/acorex-platform-themes-default-error-401.component-Djuin07Z.mjs.map +1 -0
  603. package/fesm2022/acorex-platform-themes-default-error-404.component-C-RyiLkk.mjs +25 -0
  604. package/fesm2022/acorex-platform-themes-default-error-404.component-C-RyiLkk.mjs.map +1 -0
  605. package/fesm2022/acorex-platform-themes-default-error-offline.component-WCfy9-cr.mjs +19 -0
  606. package/fesm2022/acorex-platform-themes-default-error-offline.component-WCfy9-cr.mjs.map +1 -0
  607. package/fesm2022/acorex-platform-themes-default.mjs +681 -0
  608. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -0
  609. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-Cx6WLV3_.mjs +48 -0
  610. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-Cx6WLV3_.mjs.map +1 -0
  611. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-C_68pr-9.mjs +57 -0
  612. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-C_68pr-9.mjs.map +1 -0
  613. package/fesm2022/acorex-platform-widgets.mjs +1755 -1293
  614. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  615. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  616. package/fesm2022/acorex-platform.mjs.map +1 -1
  617. package/layout/builder/README.md +4 -0
  618. package/layout/builder/index.d.ts +1 -0
  619. package/layout/builder/lib/builder/builder.module.d.ts +23 -0
  620. package/layout/builder/lib/builder/builder.service.d.ts +27 -0
  621. package/layout/builder/lib/builder/index.d.ts +8 -0
  622. package/layout/builder/lib/builder/layout.types.d.ts +30 -0
  623. package/layout/builder/lib/builder/widget-column-renderer.d.ts +31 -0
  624. package/layout/builder/lib/builder/widget-container.component.d.ts +15 -0
  625. package/layout/builder/lib/builder/widget-renderer.component.d.ts +43 -0
  626. package/layout/builder/lib/builder/widget.types.d.ts +74 -0
  627. package/layout/entity/README.md +4 -0
  628. package/layout/entity/index.d.ts +1 -0
  629. package/layout/entity/lib/entity-detail-list.viewmodel.d.ts +32 -0
  630. package/layout/entity/lib/entity-master-create.viewmodel.d.ts +49 -0
  631. package/layout/entity/lib/entity-master-list.viewmodel.d.ts +82 -0
  632. package/layout/entity/lib/entity-master-single.viewmodel.d.ts +62 -0
  633. package/layout/entity/lib/entity-master-update.viewmodel.d.ts +39 -0
  634. package/layout/entity/lib/entity-registery.service.d.ts +34 -0
  635. package/layout/entity/lib/entity.config.d.ts +21 -0
  636. package/layout/entity/lib/entity.module.d.ts +9 -0
  637. package/layout/entity/lib/entity.viewmodel.d.ts +22 -0
  638. package/layout/entity/lib/index.d.ts +8 -0
  639. package/layout/entity/lib/widgets/lookup-widget/index.d.ts +7 -0
  640. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.d.ts +6 -0
  641. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.d.ts +6 -0
  642. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +27 -0
  643. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.d.ts +6 -0
  644. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.d.ts +6 -0
  645. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.d.ts +13 -0
  646. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.d.ts +15 -0
  647. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +6 -0
  648. package/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.d.ts +2 -0
  649. package/layout/entity/lib/workflows/create-entity.workflow.d.ts +29 -0
  650. package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +26 -0
  651. package/layout/entity/lib/workflows/modify-section.workflow.d.ts +34 -0
  652. package/layout/entity/lib/workflows/show-details.workflow.d.ts +10 -0
  653. package/layouts/README.md +3 -3
  654. package/layouts/index.d.ts +0 -2
  655. package/layouts/lib/admin/admin.module.d.ts +3 -6
  656. package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.d.ts +1 -1
  657. package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.d.ts +3 -3
  658. package/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.d.ts +3 -3
  659. package/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.d.ts +1 -1
  660. package/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.d.ts +2 -3
  661. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.d.ts +1 -1
  662. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.d.ts +4 -6
  663. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.d.ts +1 -1
  664. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.d.ts +3 -4
  665. package/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.d.ts +6 -6
  666. package/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.d.ts +5 -6
  667. package/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.d.ts +3 -4
  668. package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.d.ts +1 -1
  669. package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.d.ts +3 -3
  670. package/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.d.ts +2 -2
  671. package/layouts/lib/admin/entity-layout/workflows/index.d.ts +3 -0
  672. package/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.d.ts +12 -0
  673. package/layouts/lib/admin/entity-layout/workflows/show-details.workflow.d.ts +9 -1
  674. package/layouts/lib/admin/entity-layout/workflows/show-list.workflow.d.ts +9 -1
  675. package/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.d.ts +11 -1
  676. package/layouts/lib/admin/index.d.ts +0 -2
  677. package/layouts/lib/layout.module.d.ts +4 -4
  678. package/mocks/README.md +3 -3
  679. package/package.json +19 -19
  680. package/themes/default/README.md +3 -0
  681. package/themes/default/index.d.ts +2 -0
  682. package/themes/default/lib/default.module.d.ts +8 -0
  683. package/themes/default/lib/entity-reuse.strategy.d.ts +8 -0
  684. package/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.d.ts +24 -0
  685. package/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.d.ts +17 -0
  686. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-list-view.component.d.ts +29 -0
  687. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.d.ts +18 -0
  688. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.d.ts +16 -0
  689. package/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.d.ts +16 -0
  690. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +13 -0
  691. package/themes/default/lib/layouts/root-layout/components/footer/footer.component.d.ts +5 -0
  692. package/themes/default/lib/layouts/root-layout/components/header/header.component.d.ts +10 -0
  693. package/themes/default/lib/layouts/root-layout/index.d.ts +4 -0
  694. package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +32 -0
  695. package/themes/default/lib/layouts/root-layout/root-layout.module.d.ts +24 -0
  696. package/widgets/README.md +3 -3
  697. package/widgets/lib/editors/checkbox/checkbox-widget-column.component.d.ts +9 -0
  698. package/widgets/lib/editors/checkbox/checkbox-widget-edit.component.d.ts +1 -1
  699. package/widgets/lib/editors/checkbox/checkbox-widget-view.component.d.ts +9 -0
  700. package/widgets/lib/editors/checkbox/checkbox-widget.config.d.ts +1 -1
  701. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +11 -3
  702. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +1 -1
  703. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +1 -1
  704. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +1 -1
  705. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +1 -1
  706. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +1 -1
  707. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.d.ts +1 -1
  708. package/widgets/lib/editors/email-box-widget/email-box-widget-column.component.d.ts +13 -3
  709. package/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.d.ts +1 -1
  710. package/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.d.ts +7 -1
  711. package/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.d.ts +1 -1
  712. package/widgets/lib/editors/email-box-widget/email-box-widget-print.component.d.ts +1 -1
  713. package/widgets/lib/editors/email-box-widget/email-box-widget-view.component.d.ts +1 -1
  714. package/widgets/lib/editors/email-box-widget/email-box-widget.config.d.ts +1 -1
  715. package/widgets/lib/editors/file-box-widget/file-box-widget-column.component.d.ts +1 -1
  716. package/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.d.ts +1 -1
  717. package/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.d.ts +1 -1
  718. package/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.d.ts +1 -1
  719. package/widgets/lib/editors/file-box-widget/file-box-widget-print.component.d.ts +1 -1
  720. package/widgets/lib/editors/file-box-widget/file-box-widget-view.component.d.ts +1 -1
  721. package/widgets/lib/editors/file-box-widget/file-box-widget.config.d.ts +1 -1
  722. package/widgets/lib/editors/gallery-widget/gallery-widget-column.component.d.ts +1 -1
  723. package/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.d.ts +1 -1
  724. package/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.d.ts +1 -1
  725. package/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.d.ts +1 -1
  726. package/widgets/lib/editors/gallery-widget/gallery-widget-print.component.d.ts +1 -1
  727. package/widgets/lib/editors/gallery-widget/gallery-widget-view.component.d.ts +1 -1
  728. package/widgets/lib/editors/gallery-widget/gallery-widget.config.d.ts +1 -1
  729. package/widgets/lib/editors/map-box-widget/map-box-widget-column.component.d.ts +1 -1
  730. package/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.d.ts +1 -1
  731. package/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.d.ts +1 -1
  732. package/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.d.ts +1 -1
  733. package/widgets/lib/editors/map-box-widget/map-box-widget-print.component.d.ts +1 -1
  734. package/widgets/lib/editors/map-box-widget/map-box-widget-view.component.d.ts +1 -1
  735. package/widgets/lib/editors/map-box-widget/map-box-widget.config.d.ts +1 -1
  736. package/widgets/lib/editors/number-box-widget/number-box-widget-column.component.d.ts +5 -3
  737. package/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.d.ts +1 -1
  738. package/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.d.ts +2 -2
  739. package/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.d.ts +1 -1
  740. package/widgets/lib/editors/number-box-widget/number-box-widget-print.component.d.ts +1 -1
  741. package/widgets/lib/editors/number-box-widget/number-box-widget-view.component.d.ts +8 -2
  742. package/widgets/lib/editors/number-box-widget/number-box-widget.config.d.ts +1 -1
  743. package/widgets/lib/editors/password-box-widget/password-box-widget-column.component.d.ts +1 -1
  744. package/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.d.ts +1 -1
  745. package/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.d.ts +1 -1
  746. package/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.d.ts +1 -1
  747. package/widgets/lib/editors/password-box-widget/password-box-widget-print.component.d.ts +1 -1
  748. package/widgets/lib/editors/password-box-widget/password-box-widget-view.component.d.ts +1 -1
  749. package/widgets/lib/editors/password-box-widget/password-box-widget.config.d.ts +1 -1
  750. package/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.d.ts +13 -3
  751. package/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +1 -1
  752. package/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +6 -1
  753. package/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +1 -1
  754. package/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.d.ts +1 -1
  755. package/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.d.ts +1 -1
  756. package/widgets/lib/editors/phone-box-widget/phone-box-widget.config.d.ts +1 -1
  757. package/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.d.ts +1 -1
  758. package/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +1 -1
  759. package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +1 -1
  760. package/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +1 -1
  761. package/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.d.ts +1 -1
  762. package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +1 -1
  763. package/widgets/lib/editors/rich-text-widget/rich-text-widget.config.d.ts +1 -1
  764. package/widgets/lib/editors/select-box-widget/select-box-widget-column.component.d.ts +3 -3
  765. package/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.d.ts +1 -1
  766. package/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.d.ts +1 -1
  767. package/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.d.ts +1 -1
  768. package/widgets/lib/editors/select-box-widget/select-box-widget-print.component.d.ts +1 -1
  769. package/widgets/lib/editors/select-box-widget/select-box-widget-view.component.d.ts +1 -1
  770. package/widgets/lib/editors/select-box-widget/select-box-widget.config.d.ts +1 -1
  771. package/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.d.ts +11 -3
  772. package/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +1 -1
  773. package/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +1 -1
  774. package/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +1 -1
  775. package/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.d.ts +1 -1
  776. package/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.d.ts +7 -2
  777. package/widgets/lib/editors/selection-list-widget/selection-list-widget.config.d.ts +1 -1
  778. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +1 -1
  779. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +1 -1
  780. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +1 -1
  781. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +1 -1
  782. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +1 -1
  783. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +1 -1
  784. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.d.ts +1 -1
  785. package/widgets/lib/editors/text-box-widget/text-box-widget-column.component.d.ts +3 -3
  786. package/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.d.ts +1 -1
  787. package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +2 -2
  788. package/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.d.ts +1 -1
  789. package/widgets/lib/editors/text-box-widget/text-box-widget-print.component.d.ts +1 -1
  790. package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +1 -1
  791. package/widgets/lib/editors/text-box-widget/text-box-widget.config.d.ts +1 -1
  792. package/widgets/lib/editors/toggle-widget/index.d.ts +7 -0
  793. package/widgets/lib/editors/toggle-widget/toggle-widget-column.component.d.ts +9 -0
  794. package/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.d.ts +6 -0
  795. package/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.d.ts +7 -0
  796. package/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.d.ts +6 -0
  797. package/widgets/lib/editors/toggle-widget/toggle-widget-print.component.d.ts +6 -0
  798. package/widgets/lib/editors/toggle-widget/toggle-widget-view.component.d.ts +9 -0
  799. package/widgets/lib/editors/toggle-widget/toggle-widget.config.d.ts +2 -0
  800. package/widgets/lib/layout/block-widget/block-widget.component.d.ts +2 -2
  801. package/widgets/lib/layout/block-widget/block-widget.config.d.ts +1 -1
  802. package/widgets/lib/widgets.module.d.ts +1 -1
  803. package/workflow/README.md +3 -3
  804. package/workflow/lib/workflow.types.d.ts +2 -2
  805. package/common/lib/shared/state-persistence/index.d.ts +0 -3
  806. package/common/lib/shared/state-persistence/state-persistence.actions.d.ts +0 -1
  807. package/common/lib/shared/state-persistence/state-persistence.module.d.ts +0 -8
  808. package/common/lib/shared/state-persistence/state-persistence.reducers.d.ts +0 -3
  809. package/common/lib/utils/sticky.directive.d.ts +0 -24
  810. package/core/README.md +0 -4
  811. package/core/index.d.ts +0 -4
  812. package/core/lib/app/application.types.d.ts +0 -144
  813. package/core/lib/core.module.d.ts +0 -6
  814. package/esm2022/common/lib/menu/index.mjs +0 -3
  815. package/esm2022/common/lib/menu/menu.loader.mjs +0 -39
  816. package/esm2022/common/lib/menu/menu.types.mjs +0 -2
  817. package/esm2022/common/lib/shared/logo.types.mjs +0 -21
  818. package/esm2022/common/lib/shared/state-persistence/index.mjs +0 -4
  819. package/esm2022/common/lib/shared/state-persistence/state-persistence.actions.mjs +0 -3
  820. package/esm2022/common/lib/shared/state-persistence/state-persistence.module.mjs +0 -36
  821. package/esm2022/common/lib/shared/state-persistence/state-persistence.reducers.mjs +0 -30
  822. package/esm2022/common/lib/utils/sticky.directive.mjs +0 -74
  823. package/esm2022/core/acorex-platform-core.mjs +0 -5
  824. package/esm2022/core/index.mjs +0 -5
  825. package/esm2022/core/lib/app/application.types.mjs +0 -19
  826. package/esm2022/core/lib/app/operators.mjs +0 -50
  827. package/esm2022/core/lib/configs/config.types.mjs +0 -3
  828. package/esm2022/core/lib/core.module.mjs +0 -16
  829. package/esm2022/layout/acorex-platform-layout.mjs +0 -5
  830. package/esm2022/layout/index.mjs +0 -3
  831. package/esm2022/layout/lib/builder/builder.module.mjs +0 -66
  832. package/esm2022/layout/lib/builder/context.service.mjs +0 -64
  833. package/esm2022/layout/lib/builder/index.mjs +0 -8
  834. package/esm2022/layout/lib/builder/widget-column-renderer.mjs +0 -75
  835. package/esm2022/layout/lib/builder/widget-container.mjs +0 -45
  836. package/esm2022/layout/lib/builder/widget-registery.service.mjs +0 -33
  837. package/esm2022/layout/lib/builder/widget-renderer.mjs +0 -279
  838. package/esm2022/layout/lib/builder/widget.types.mjs +0 -49
  839. package/esm2022/layout/lib/component-slot/component-slot-loader.service.mjs +0 -56
  840. package/esm2022/layout/lib/component-slot/component-slot-registery.service.mjs +0 -28
  841. package/esm2022/layout/lib/component-slot/component-slot.directive.mjs +0 -24
  842. package/esm2022/layout/lib/component-slot/component-slot.module.mjs +0 -72
  843. package/esm2022/layout/lib/component-slot/component-slot.types.mjs +0 -2
  844. package/esm2022/layout/lib/component-slot/index.mjs +0 -6
  845. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.mjs +0 -58
  846. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.component.mjs +0 -50
  847. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.module.mjs +0 -57
  848. package/esm2022/layouts/lib/admin/admin-child-layout/index.mjs +0 -4
  849. package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.component.mjs +0 -74
  850. package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.module.mjs +0 -92
  851. package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.mjs +0 -14
  852. package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.mjs +0 -29
  853. package/esm2022/layouts/lib/admin/admin-root-layout/index.mjs +0 -5
  854. package/esm2022/layouts/lib/admin/store/admin-layout.actions.mjs +0 -12
  855. package/esm2022/layouts/lib/admin/store/admin-layout.effects.mjs +0 -29
  856. package/esm2022/layouts/lib/admin/store/admin-layout.reducers.mjs +0 -60
  857. package/esm2022/layouts/lib/admin/store/admin-layout.selectors.mjs +0 -8
  858. package/esm2022/layouts/lib/admin/store/admin-layout.state.mjs +0 -16
  859. package/esm2022/layouts/lib/admin/store/index.mjs +0 -6
  860. package/esm2022/layouts/lib/layout.routes.mjs +0 -15
  861. package/esm2022/layouts/lib/shared/components/content-view/content-view.page.mjs +0 -64
  862. package/esm2022/layouts/lib/shared/components/content-view/content-view.type.mjs +0 -2
  863. package/esm2022/layouts/lib/shared/components/error-401/error-401.component.mjs +0 -28
  864. package/esm2022/layouts/lib/shared/components/error-404/error-404.component.mjs +0 -22
  865. package/esm2022/layouts/lib/shared/components/error-offline/error-offline.component.mjs +0 -16
  866. package/esm2022/layouts/lib/shared/components/index.mjs +0 -10
  867. package/esm2022/layouts/lib/shared/components/logo/logo.component.mjs +0 -38
  868. package/esm2022/layouts/lib/shared/components/slots/footer-text-slot.component.mjs +0 -20
  869. package/esm2022/layouts/lib/shared/components/slots/navbar-slot.component.mjs +0 -36
  870. package/esm2022/layouts/lib/shared/components/slots/theme-slot.component.mjs +0 -48
  871. package/esm2022/layouts/lib/shared/entity/entity-registery.service.mjs +0 -70
  872. package/esm2022/layouts/lib/shared/entity/entity.class.mjs +0 -32
  873. package/esm2022/layouts/lib/shared/entity/entity.loader.mjs +0 -13
  874. package/esm2022/layouts/lib/shared/entity/index.mjs +0 -4
  875. package/esm2022/layouts/lib/shared/index.mjs +0 -5
  876. package/esm2022/layouts/lib/shared/services/index.mjs +0 -2
  877. package/esm2022/layouts/lib/shared/services/layout.service.mjs +0 -79
  878. package/esm2022/layouts/lib/shared/workflows/common.workflow.mjs +0 -147
  879. package/esm2022/layouts/lib/shared/workflows/error-handler.mjs +0 -24
  880. package/esm2022/layouts/lib/shared/workflows/index.mjs +0 -3
  881. package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.mjs +0 -73
  882. package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.mjs +0 -99
  883. package/esm2022/layouts/lib/themes/default/index.mjs +0 -3
  884. package/esm2022/layouts/lib/widgets/avatar/avatar-widget-edit.component.mjs +0 -160
  885. package/esm2022/layouts/lib/widgets/avatar/avatar-widget-view.component.mjs +0 -61
  886. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-column.component.mjs +0 -53
  887. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.mjs +0 -22
  888. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-view.component.mjs +0 -47
  889. package/esm2022/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.mjs +0 -147
  890. package/esm2022/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.mjs +0 -135
  891. package/esm2022/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.mjs +0 -125
  892. package/esm2022/layouts/lib/widgets/common-widgets.module.mjs +0 -504
  893. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-column.component.mjs +0 -44
  894. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.mjs +0 -178
  895. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.mjs +0 -214
  896. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-view.component.mjs +0 -71
  897. package/esm2022/layouts/lib/widgets/email/email-widget-column.component.mjs +0 -73
  898. package/esm2022/layouts/lib/widgets/email/email-widget-edit.component.mjs +0 -249
  899. package/esm2022/layouts/lib/widgets/email/email-widget-view.component.mjs +0 -108
  900. package/esm2022/layouts/lib/widgets/file/file-widget-column.component.mjs +0 -27
  901. package/esm2022/layouts/lib/widgets/file/file-widget-edit.component.mjs +0 -200
  902. package/esm2022/layouts/lib/widgets/file/file-widget-filter.component.mjs +0 -27
  903. package/esm2022/layouts/lib/widgets/file/file-widget-view.component.mjs +0 -153
  904. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-edit.component.mjs +0 -189
  905. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-filter.component.mjs +0 -27
  906. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-types.mjs +0 -2
  907. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-view.component.mjs +0 -173
  908. package/esm2022/layouts/lib/widgets/index.mjs +0 -2
  909. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-column.component.mjs +0 -43
  910. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-edit.component.mjs +0 -74
  911. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-filter.component.mjs +0 -115
  912. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-view.component.mjs +0 -54
  913. package/esm2022/layouts/lib/widgets/map/map-widget-edit.component.mjs +0 -91
  914. package/esm2022/layouts/lib/widgets/map/map-widget-view.component.mjs +0 -63
  915. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-column.component.mjs +0 -71
  916. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-edit.component.mjs +0 -136
  917. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-view.component.mjs +0 -132
  918. package/esm2022/layouts/lib/widgets/number/number-widget-edit.component.mjs +0 -46
  919. package/esm2022/layouts/lib/widgets/number/number-widget-view.component.mjs +0 -30
  920. package/esm2022/layouts/lib/widgets/password/change-password.component.mjs +0 -175
  921. package/esm2022/layouts/lib/widgets/password/password-widget-column.component.mjs +0 -67
  922. package/esm2022/layouts/lib/widgets/password/password-widget-edit.component.mjs +0 -41
  923. package/esm2022/layouts/lib/widgets/password/password-widget-view.component.mjs +0 -109
  924. package/esm2022/layouts/lib/widgets/phone/phone-widget-column.component.mjs +0 -91
  925. package/esm2022/layouts/lib/widgets/phone/phone-widget-edit.component.mjs +0 -231
  926. package/esm2022/layouts/lib/widgets/phone/phone-widget-view.component.mjs +0 -123
  927. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-column.component.mjs +0 -61
  928. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.mjs +0 -67
  929. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-view.component.mjs +0 -34
  930. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-column.component.mjs +0 -43
  931. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.mjs +0 -53
  932. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.mjs +0 -41
  933. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-view.component.mjs +0 -45
  934. package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.mjs +0 -128
  935. package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.mjs +0 -41
  936. package/esm2022/layouts/lib/widgets/text/largetext-widget-edit.component.mjs +0 -37
  937. package/esm2022/layouts/lib/widgets/text/text-widget-column.component.mjs +0 -46
  938. package/esm2022/layouts/lib/widgets/text/text-widget-edit.component.mjs +0 -162
  939. package/esm2022/layouts/lib/widgets/text/text-widget-view.component.mjs +0 -66
  940. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-column.component.mjs +0 -57
  941. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-edit.component.mjs +0 -25
  942. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-view.component.mjs +0 -49
  943. package/esm2022/schema/acorex-platform-schema.mjs +0 -5
  944. package/esm2022/schema/index.mjs +0 -14
  945. package/esm2022/schema/lib/component-loader.mjs +0 -2
  946. package/esm2022/schema/lib/formats.mjs +0 -2
  947. package/esm2022/schema/lib/operators.mjs +0 -50
  948. package/esm2022/schema/lib/schema-registery.service.mjs +0 -33
  949. package/esm2022/schema/lib/schema.module.mjs +0 -23
  950. package/esm2022/schema/lib/schema.types.mjs +0 -2
  951. package/esm2022/schema/lib/widget/widget-base.mjs +0 -113
  952. package/esm2022/schema/lib/widget/widget-column-renderer.mjs +0 -118
  953. package/esm2022/schema/lib/widget/widget-filter-renderer.mjs +0 -133
  954. package/esm2022/schema/lib/widget/widget-renderer.mjs +0 -144
  955. package/esm2022/schema/lib/widget/widget-token.mjs +0 -3
  956. package/fesm2022/acorex-platform-core.mjs +0 -94
  957. package/fesm2022/acorex-platform-core.mjs.map +0 -1
  958. package/fesm2022/acorex-platform-layout.mjs +0 -756
  959. package/fesm2022/acorex-platform-layout.mjs.map +0 -1
  960. package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs +0 -162
  961. package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs.map +0 -1
  962. package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs +0 -64
  963. package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs.map +0 -1
  964. package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs +0 -150
  965. package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs.map +0 -1
  966. package/fesm2022/acorex-platform-layouts-change-password.component-vUZy2W_B.mjs +0 -178
  967. package/fesm2022/acorex-platform-layouts-change-password.component-vUZy2W_B.mjs.map +0 -1
  968. package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs +0 -56
  969. package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs.map +0 -1
  970. package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs +0 -25
  971. package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs.map +0 -1
  972. package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs +0 -50
  973. package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs.map +0 -1
  974. package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs +0 -47
  975. package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs.map +0 -1
  976. package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs +0 -181
  977. package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs.map +0 -1
  978. package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs +0 -217
  979. package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs.map +0 -1
  980. package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs +0 -74
  981. package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs.map +0 -1
  982. package/fesm2022/acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs +0 -76
  983. package/fesm2022/acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs.map +0 -1
  984. package/fesm2022/acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs +0 -252
  985. package/fesm2022/acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs.map +0 -1
  986. package/fesm2022/acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs +0 -111
  987. package/fesm2022/acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs.map +0 -1
  988. package/fesm2022/acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs +0 -108
  989. package/fesm2022/acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs.map +0 -1
  990. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs +0 -89
  991. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs.map +0 -1
  992. package/fesm2022/acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs +0 -30
  993. package/fesm2022/acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs.map +0 -1
  994. package/fesm2022/acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs +0 -203
  995. package/fesm2022/acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs.map +0 -1
  996. package/fesm2022/acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs +0 -30
  997. package/fesm2022/acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs.map +0 -1
  998. package/fesm2022/acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs +0 -156
  999. package/fesm2022/acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs.map +0 -1
  1000. package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs +0 -192
  1001. package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs.map +0 -1
  1002. package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs +0 -30
  1003. package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs.map +0 -1
  1004. package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs +0 -176
  1005. package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs.map +0 -1
  1006. package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs +0 -40
  1007. package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs.map +0 -1
  1008. package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs +0 -46
  1009. package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs.map +0 -1
  1010. package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs +0 -120
  1011. package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs.map +0 -1
  1012. package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs +0 -158
  1013. package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs.map +0 -1
  1014. package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs +0 -57
  1015. package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs.map +0 -1
  1016. package/fesm2022/acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs +0 -94
  1017. package/fesm2022/acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs.map +0 -1
  1018. package/fesm2022/acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs +0 -66
  1019. package/fesm2022/acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs.map +0 -1
  1020. package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs +0 -74
  1021. package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs.map +0 -1
  1022. package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs +0 -139
  1023. package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs.map +0 -1
  1024. package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs +0 -135
  1025. package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs.map +0 -1
  1026. package/fesm2022/acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs +0 -49
  1027. package/fesm2022/acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs.map +0 -1
  1028. package/fesm2022/acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs +0 -138
  1029. package/fesm2022/acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs.map +0 -1
  1030. package/fesm2022/acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs +0 -33
  1031. package/fesm2022/acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs.map +0 -1
  1032. package/fesm2022/acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs +0 -70
  1033. package/fesm2022/acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs.map +0 -1
  1034. package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs +0 -44
  1035. package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs.map +0 -1
  1036. package/fesm2022/acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs +0 -112
  1037. package/fesm2022/acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs.map +0 -1
  1038. package/fesm2022/acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs +0 -94
  1039. package/fesm2022/acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs.map +0 -1
  1040. package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs +0 -234
  1041. package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs.map +0 -1
  1042. package/fesm2022/acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs +0 -126
  1043. package/fesm2022/acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs.map +0 -1
  1044. package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs +0 -64
  1045. package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs.map +0 -1
  1046. package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs +0 -70
  1047. package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs.map +0 -1
  1048. package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs +0 -37
  1049. package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs.map +0 -1
  1050. package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs +0 -46
  1051. package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs.map +0 -1
  1052. package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs +0 -56
  1053. package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs.map +0 -1
  1054. package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs +0 -44
  1055. package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs.map +0 -1
  1056. package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs +0 -48
  1057. package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs.map +0 -1
  1058. package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs +0 -131
  1059. package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs.map +0 -1
  1060. package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs +0 -44
  1061. package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs.map +0 -1
  1062. package/fesm2022/acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs +0 -128
  1063. package/fesm2022/acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs.map +0 -1
  1064. package/fesm2022/acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs +0 -49
  1065. package/fesm2022/acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs.map +0 -1
  1066. package/fesm2022/acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs +0 -165
  1067. package/fesm2022/acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs.map +0 -1
  1068. package/fesm2022/acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs +0 -69
  1069. package/fesm2022/acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs.map +0 -1
  1070. package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs +0 -60
  1071. package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs.map +0 -1
  1072. package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs +0 -28
  1073. package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs.map +0 -1
  1074. package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs +0 -52
  1075. package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs.map +0 -1
  1076. package/fesm2022/acorex-platform-schema.mjs +0 -594
  1077. package/fesm2022/acorex-platform-schema.mjs.map +0 -1
  1078. package/layout/README.md +0 -4
  1079. package/layout/index.d.ts +0 -2
  1080. package/layout/lib/builder/builder.module.d.ts +0 -23
  1081. package/layout/lib/builder/context.service.d.ts +0 -17
  1082. package/layout/lib/builder/index.d.ts +0 -7
  1083. package/layout/lib/builder/widget-column-renderer.d.ts +0 -30
  1084. package/layout/lib/builder/widget-container.d.ts +0 -13
  1085. package/layout/lib/builder/widget-renderer.d.ts +0 -41
  1086. package/layout/lib/builder/widget.types.d.ts +0 -55
  1087. package/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.d.ts +0 -22
  1088. package/layouts/lib/admin/admin-child-layout/admin-child-layout.component.d.ts +0 -21
  1089. package/layouts/lib/admin/admin-child-layout/admin-child-layout.module.d.ts +0 -17
  1090. package/layouts/lib/admin/admin-child-layout/index.d.ts +0 -3
  1091. package/layouts/lib/admin/admin-root-layout/admin-root-layout.component.d.ts +0 -30
  1092. package/layouts/lib/admin/admin-root-layout/admin-root-layout.module.d.ts +0 -25
  1093. package/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.d.ts +0 -5
  1094. package/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.d.ts +0 -10
  1095. package/layouts/lib/admin/admin-root-layout/index.d.ts +0 -4
  1096. package/layouts/lib/admin/store/admin-layout.selectors.d.ts +0 -5
  1097. package/layouts/lib/shared/components/content-view/content-view.page.d.ts +0 -23
  1098. package/layouts/lib/shared/components/content-view/content-view.type.d.ts +0 -16
  1099. package/layouts/lib/shared/components/index.d.ts +0 -9
  1100. package/layouts/lib/shared/components/slots/navbar-slot.component.d.ts +0 -10
  1101. package/layouts/lib/shared/entity/entity.class.d.ts +0 -153
  1102. package/layouts/lib/shared/index.d.ts +0 -4
  1103. package/layouts/lib/shared/services/index.d.ts +0 -1
  1104. package/layouts/lib/shared/workflows/common.workflow.d.ts +0 -61
  1105. package/layouts/lib/shared/workflows/error-handler.d.ts +0 -8
  1106. package/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.d.ts +0 -11
  1107. package/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.d.ts +0 -34
  1108. package/layouts/lib/themes/default/index.d.ts +0 -2
  1109. package/layouts/lib/widgets/avatar/avatar-widget-edit.component.d.ts +0 -16
  1110. package/layouts/lib/widgets/avatar/avatar-widget-view.component.d.ts +0 -13
  1111. package/layouts/lib/widgets/checkbox/checkbox-widget-column.component.d.ts +0 -11
  1112. package/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.d.ts +0 -6
  1113. package/layouts/lib/widgets/checkbox/checkbox-widget-view.component.d.ts +0 -11
  1114. package/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +0 -17
  1115. package/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.d.ts +0 -11
  1116. package/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.d.ts +0 -11
  1117. package/layouts/lib/widgets/common-widgets.module.d.ts +0 -32
  1118. package/layouts/lib/widgets/dateTime/dateTime-widget-column.component.d.ts +0 -11
  1119. package/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.d.ts +0 -26
  1120. package/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.d.ts +0 -16
  1121. package/layouts/lib/widgets/dateTime/dateTime-widget-view.component.d.ts +0 -11
  1122. package/layouts/lib/widgets/email/email-widget-column.component.d.ts +0 -16
  1123. package/layouts/lib/widgets/email/email-widget-edit.component.d.ts +0 -28
  1124. package/layouts/lib/widgets/email/email-widget-view.component.d.ts +0 -16
  1125. package/layouts/lib/widgets/file/file-widget-column.component.d.ts +0 -8
  1126. package/layouts/lib/widgets/file/file-widget-edit.component.d.ts +0 -17
  1127. package/layouts/lib/widgets/file/file-widget-filter.component.d.ts +0 -6
  1128. package/layouts/lib/widgets/file/file-widget-view.component.d.ts +0 -17
  1129. package/layouts/lib/widgets/gallery/gallery-widget-edit.component.d.ts +0 -15
  1130. package/layouts/lib/widgets/gallery/gallery-widget-filter.component.d.ts +0 -6
  1131. package/layouts/lib/widgets/gallery/gallery-widget-view.component.d.ts +0 -16
  1132. package/layouts/lib/widgets/lookup/lookup-widget-column.component.d.ts +0 -16
  1133. package/layouts/lib/widgets/lookup/lookup-widget-edit.component.d.ts +0 -15
  1134. package/layouts/lib/widgets/lookup/lookup-widget-filter.component.d.ts +0 -16
  1135. package/layouts/lib/widgets/lookup/lookup-widget-view.component.d.ts +0 -17
  1136. package/layouts/lib/widgets/map/map-widget-edit.component.d.ts +0 -15
  1137. package/layouts/lib/widgets/map/map-widget-view.component.d.ts +0 -17
  1138. package/layouts/lib/widgets/messenger/messenger-widget-column.component.d.ts +0 -15
  1139. package/layouts/lib/widgets/messenger/messenger-widget-edit.component.d.ts +0 -14
  1140. package/layouts/lib/widgets/messenger/messenger-widget-view.component.d.ts +0 -17
  1141. package/layouts/lib/widgets/number/number-widget-edit.component.d.ts +0 -7
  1142. package/layouts/lib/widgets/number/number-widget-view.component.d.ts +0 -8
  1143. package/layouts/lib/widgets/password/password-widget-column.component.d.ts +0 -14
  1144. package/layouts/lib/widgets/password/password-widget-edit.component.d.ts +0 -6
  1145. package/layouts/lib/widgets/password/password-widget-view.component.d.ts +0 -18
  1146. package/layouts/lib/widgets/phone/phone-widget-column.component.d.ts +0 -15
  1147. package/layouts/lib/widgets/phone/phone-widget-edit.component.d.ts +0 -29
  1148. package/layouts/lib/widgets/phone/phone-widget-view.component.d.ts +0 -18
  1149. package/layouts/lib/widgets/rich-text/rich-text-widget-column.component.d.ts +0 -11
  1150. package/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.d.ts +0 -33
  1151. package/layouts/lib/widgets/rich-text/rich-text-widget-view.component.d.ts +0 -10
  1152. package/layouts/lib/widgets/selection-list/selection-list-widget-column.component.d.ts +0 -16
  1153. package/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.d.ts +0 -12
  1154. package/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.d.ts +0 -9
  1155. package/layouts/lib/widgets/selection-list/selection-list-widget-view.component.d.ts +0 -15
  1156. package/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.d.ts +0 -19
  1157. package/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.d.ts +0 -8
  1158. package/layouts/lib/widgets/text/largetext-widget-edit.component.d.ts +0 -6
  1159. package/layouts/lib/widgets/text/text-widget-column.component.d.ts +0 -12
  1160. package/layouts/lib/widgets/text/text-widget-edit.component.d.ts +0 -23
  1161. package/layouts/lib/widgets/text/text-widget-view.component.d.ts +0 -11
  1162. package/layouts/lib/widgets/toggle/toggle-widget-column.component.d.ts +0 -11
  1163. package/layouts/lib/widgets/toggle/toggle-widget-edit.component.d.ts +0 -6
  1164. package/layouts/lib/widgets/toggle/toggle-widget-view.component.d.ts +0 -11
  1165. package/schema/README.md +0 -3
  1166. package/schema/index.d.ts +0 -11
  1167. package/schema/lib/operators.d.ts +0 -22
  1168. package/schema/lib/schema.types.d.ts +0 -16
  1169. package/schema/lib/widget/widget-base.d.ts +0 -45
  1170. package/schema/lib/widget/widget-token.d.ts +0 -16
  1171. /package/{core → common}/lib/app/operators.d.ts +0 -0
  1172. /package/{core → common}/lib/configs/config.types.d.ts +0 -0
  1173. /package/{layout/lib → common/lib/layout}/component-slot/component-slot-loader.service.d.ts +0 -0
  1174. /package/{layout/lib → common/lib/layout}/component-slot/component-slot-registery.service.d.ts +0 -0
  1175. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.directive.d.ts +0 -0
  1176. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.module.d.ts +0 -0
  1177. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.types.d.ts +0 -0
  1178. /package/{layout/lib → common/lib/layout}/component-slot/index.d.ts +0 -0
  1179. /package/{layouts/lib/shared/services → common/lib/layout}/layout.service.d.ts +0 -0
  1180. /package/{layouts/lib/shared/components → common/lib/layout}/logo/logo.component.d.ts +0 -0
  1181. /package/common/lib/{shared → layout/logo}/logo.types.d.ts +0 -0
  1182. /package/common/lib/{menu → layout/menu}/index.d.ts +0 -0
  1183. /package/common/lib/{menu → layout/menu}/menu.loader.d.ts +0 -0
  1184. /package/common/lib/{menu → layout/menu}/menu.types.d.ts +0 -0
  1185. /package/{layouts/lib/shared → common/lib/layout/theme}/components/slots/footer-text-slot.component.d.ts +0 -0
  1186. /package/{layouts/lib/shared → common/lib/layout/theme}/components/slots/theme-slot.component.d.ts +0 -0
  1187. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.actions.d.ts +0 -0
  1188. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.effects.d.ts +0 -0
  1189. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.reducers.d.ts +0 -0
  1190. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.state.d.ts +0 -0
  1191. /package/{layouts/lib/admin → common/lib/layout/theme}/store/index.d.ts +0 -0
  1192. /package/{schema/lib → common/lib/schema}/component-loader.d.ts +0 -0
  1193. /package/{layouts/lib/shared → common/lib/schema}/entity/entity-registery.service.d.ts +0 -0
  1194. /package/{layouts/lib/shared → common/lib/schema}/entity/entity.loader.d.ts +0 -0
  1195. /package/{layouts/lib/shared → common/lib/schema}/entity/index.d.ts +0 -0
  1196. /package/{schema/lib → common/lib/schema}/formats.d.ts +0 -0
  1197. /package/{schema/lib → common/lib/schema}/schema-registery.service.d.ts +0 -0
  1198. /package/{schema/lib → common/lib/schema}/schema.module.d.ts +0 -0
  1199. /package/{schema/lib → common/lib/schema}/widget/widget-column-renderer.d.ts +0 -0
  1200. /package/{schema/lib → common/lib/schema}/widget/widget-filter-renderer.d.ts +0 -0
  1201. /package/{schema/lib → common/lib/schema}/widget/widget-renderer.d.ts +0 -0
  1202. /package/{layouts/lib → common/lib/schema}/widgets/gallery/gallery-widget-types.d.ts +0 -0
  1203. /package/{layouts/lib → common/lib/schema}/widgets/index.d.ts +0 -0
  1204. /package/{layouts/lib → common/lib/schema}/widgets/password/change-password.component.d.ts +0 -0
  1205. /package/{layouts/lib/shared → common/lib}/workflows/index.d.ts +0 -0
  1206. /package/layout/{lib → builder/lib}/builder/widget-registery.service.d.ts +0 -0
  1207. /package/{layouts → themes/default}/lib/layout.routes.d.ts +0 -0
  1208. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-401/error-401.component.d.ts +0 -0
  1209. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-404/error-404.component.d.ts +0 -0
  1210. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-offline/error-offline.component.d.ts +0 -0
@@ -1,14 +1,14 @@
1
- import * as i1$3 from '@acorex/platform/layout';
2
- import { AXPWidgetBase, AXPLayoutBuilderModule } from '@acorex/platform/layout';
1
+ import * as i1$3 from '@acorex/platform/layout/builder';
2
+ import { AXPWidgetBase, AXPColumnWidgetBase, AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
3
3
  import * as i0 from '@angular/core';
4
4
  import { inject, Component, ChangeDetectionStrategy, computed, signal, effect, ViewEncapsulation, ViewChild, Input, HostBinding, NgModule } from '@angular/core';
5
- import * as i3 from '@acorex/components/button';
5
+ import * as i2$2 from '@acorex/components/button';
6
6
  import { AXButtonModule } from '@acorex/components/button';
7
7
  import * as i1 from '@acorex/components/check-box';
8
8
  import { AXCheckBoxModule } from '@acorex/components/check-box';
9
- import * as i3$1 from '@acorex/components/decorators';
9
+ import * as i3 from '@acorex/components/decorators';
10
10
  import { AXDecoratorModule } from '@acorex/components/decorators';
11
- import * as i3$2 from '@acorex/components/form';
11
+ import * as i3$1 from '@acorex/components/form';
12
12
  import { AXFormModule } from '@acorex/components/form';
13
13
  import { AXValidationService, AXValidationModule } from '@acorex/core/validation';
14
14
  import * as i1$1 from '@angular/common';
@@ -18,26 +18,30 @@ import { FormsModule } from '@angular/forms';
18
18
  import { AXDateTimeFormatter } from '@acorex/core/date-time';
19
19
  import * as i2$1 from '@acorex/components/datetime-box';
20
20
  import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
21
- import * as i2$2 from '@acorex/components/badge';
21
+ import * as i2$3 from '@acorex/components/badge';
22
22
  import { AXBadgeModule } from '@acorex/components/badge';
23
23
  import { AXPClipBoardService } from '@acorex/platform/common';
24
- import * as i5 from '@acorex/components/select-box';
24
+ import * as i6 from '@acorex/components/select-box';
25
25
  import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
26
- import * as i6 from '@acorex/components/text-box';
26
+ import * as i7 from '@acorex/components/text-box';
27
27
  import { AXTextBoxModule } from '@acorex/components/text-box';
28
- import * as i2$3 from '@acorex/components/image';
28
+ import * as i2$4 from '@acorex/components/image';
29
29
  import { AXImageModule } from '@acorex/components/image';
30
30
  import * as i4 from '@acorex/components/loading';
31
31
  import { AXLoadingModule } from '@acorex/components/loading';
32
- import * as i5$1 from '@acorex/components/uploader';
32
+ import * as i5 from '@acorex/components/uploader';
33
33
  import { AXUploaderModule } from '@acorex/components/uploader';
34
+ import { AXFormatService } from '@acorex/core/format';
35
+ import { isNumber } from 'lodash-es';
34
36
  import * as i1$2 from '@acorex/components/number-box';
35
37
  import { AXNumberBoxModule } from '@acorex/components/number-box';
36
- import * as i2$4 from '@acorex/components/password-box';
38
+ import * as i2$5 from '@acorex/components/password-box';
37
39
  import { AXPasswordBoxModule } from '@acorex/components/password-box';
38
40
  import { DomSanitizer } from '@angular/platform-browser';
39
- import * as i2$5 from '@acorex/components/selection-list';
41
+ import * as i2$6 from '@acorex/components/selection-list';
40
42
  import { AXSelectionListModule } from '@acorex/components/selection-list';
43
+ import * as i2$7 from '@acorex/components/switch';
44
+ import { AXSwitchModule } from '@acorex/components/switch';
41
45
 
42
46
  class AXPCheckBoxWidgetEditComponent extends AXPWidgetBase {
43
47
  constructor() {
@@ -51,20 +55,20 @@ class AXPCheckBoxWidgetEditComponent extends AXPWidgetBase {
51
55
  }
52
56
  }
53
57
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
54
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
55
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
56
- <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
57
- </div>
58
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
59
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
60
+ <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
61
+ </div>
58
62
  `, 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: AXFormModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
59
63
  }
60
64
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
61
65
  type: Component,
62
66
  args: [{
63
67
  selector: 'axp-checkbox-widget-edit',
64
- template: `
65
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
66
- <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
67
- </div>
68
+ template: `
69
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
70
+ <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
71
+ </div>
68
72
  `,
69
73
  standalone: true,
70
74
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -78,12 +82,18 @@ var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
78
82
  });
79
83
 
80
84
  const AXPCheckBoxWidget = {
81
- name: "checkbox",
85
+ name: 'checkbox',
82
86
  components: {
83
87
  view: {
88
+ component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-C_68pr-9.mjs').then((c) => c.AXPCheckBoxWidgetViewComponent),
89
+ },
90
+ edit: {
84
91
  component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
85
- }
86
- }
92
+ },
93
+ column: {
94
+ component: () => import('./acorex-platform-widgets-checkbox-widget-column.component-Cx6WLV3_.mjs').then((c) => c.AXPCheckBoxWidgetColumnComponent),
95
+ },
96
+ },
87
97
  };
88
98
 
89
99
  class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetBase {
@@ -97,27 +107,27 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetBase {
97
107
  return this.formatter.format(new Date(value), { format: this.format });
98
108
  }
99
109
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
100
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
101
- <div>
102
- @if(multiple){ @for (item of internalValue(); track $index) {
103
- <p>{{ item }}</p>
104
- } }@else {
105
- <p>{{ internalValue()[0] }}</p>
106
- }
107
- </div>
110
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
111
+ <div>
112
+ @if(multiple){ @for (item of internalValue(); track $index) {
113
+ <p>{{ item }}</p>
114
+ } }@else {
115
+ <p>{{ internalValue()[0] }}</p>
116
+ }
117
+ </div>
108
118
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
109
119
  }
110
120
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, decorators: [{
111
121
  type: Component,
112
122
  args: [{
113
- template: `
114
- <div>
115
- @if(multiple){ @for (item of internalValue(); track $index) {
116
- <p>{{ item }}</p>
117
- } }@else {
118
- <p>{{ internalValue()[0] }}</p>
119
- }
120
- </div>
123
+ template: `
124
+ <div>
125
+ @if(multiple){ @for (item of internalValue(); track $index) {
126
+ <p>{{ item }}</p>
127
+ } }@else {
128
+ <p>{{ internalValue()[0] }}</p>
129
+ }
130
+ </div>
121
131
  `,
122
132
  standalone: true,
123
133
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -166,63 +176,63 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetBase {
166
176
  this.setValue(newValues);
167
177
  }
168
178
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
169
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
170
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
171
- @for (datetime of internalValue(); track $index) {
172
- <ax-datetime-box
173
- class="ax-col-span-12"
174
- [ngModel]="datetime"
175
- (onValueChanged)="handleValueChange($event, $index)"
176
- [disabled]="disabled"
177
- [format]="calendarFormat()"
178
- >
179
- <!-- @if(validationMessage){
180
- <ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
181
- } -->
182
-
183
- @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
184
- <ax-suffix>
185
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
186
- <ax-icon class="far fa-trash"> </ax-icon>
187
- </ax-button>
188
- </ax-suffix>
189
- }
190
- </ax-datetime-box>
191
- } @if(multiple){
192
- <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
193
- }
194
- </div>
195
- `, 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: AXDateTimeBoxModule }, { kind: "component", type: i2$1.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
179
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
180
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
181
+ @for (datetime of internalValue(); track $index) {
182
+ <ax-datetime-box
183
+ class="ax-col-span-12"
184
+ [ngModel]="datetime"
185
+ (onValueChanged)="handleValueChange($event, $index)"
186
+ [disabled]="disabled"
187
+ [format]="calendarFormat()"
188
+ >
189
+ <!-- @if(validationMessage){
190
+ <ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
191
+ } -->
192
+
193
+ @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
194
+ <ax-suffix>
195
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
196
+ <ax-icon class="far fa-trash"> </ax-icon>
197
+ </ax-button>
198
+ </ax-suffix>
199
+ }
200
+ </ax-datetime-box>
201
+ } @if(multiple){
202
+ <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
203
+ }
204
+ </div>
205
+ `, 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: AXDateTimeBoxModule }, { kind: "component", type: i2$1.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { 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 }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
196
206
  }
197
207
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
198
208
  type: Component,
199
209
  args: [{
200
- template: `
201
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
202
- @for (datetime of internalValue(); track $index) {
203
- <ax-datetime-box
204
- class="ax-col-span-12"
205
- [ngModel]="datetime"
206
- (onValueChanged)="handleValueChange($event, $index)"
207
- [disabled]="disabled"
208
- [format]="calendarFormat()"
209
- >
210
- <!-- @if(validationMessage){
211
- <ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
212
- } -->
213
-
214
- @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
215
- <ax-suffix>
216
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
217
- <ax-icon class="far fa-trash"> </ax-icon>
218
- </ax-button>
219
- </ax-suffix>
220
- }
221
- </ax-datetime-box>
222
- } @if(multiple){
223
- <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
224
- }
225
- </div>
210
+ template: `
211
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
212
+ @for (datetime of internalValue(); track $index) {
213
+ <ax-datetime-box
214
+ class="ax-col-span-12"
215
+ [ngModel]="datetime"
216
+ (onValueChanged)="handleValueChange($event, $index)"
217
+ [disabled]="disabled"
218
+ [format]="calendarFormat()"
219
+ >
220
+ <!-- @if(validationMessage){
221
+ <ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
222
+ } -->
223
+
224
+ @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
225
+ <ax-suffix>
226
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
227
+ <ax-icon class="far fa-trash"> </ax-icon>
228
+ </ax-button>
229
+ </ax-suffix>
230
+ }
231
+ </ax-datetime-box>
232
+ } @if(multiple){
233
+ <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
234
+ }
235
+ </div>
226
236
  `,
227
237
  standalone: true,
228
238
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -256,18 +266,42 @@ var dateTimeBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
256
266
  AXPDateTimeBoxWidgetFilterComponent: AXPDateTimeBoxWidgetFilterComponent
257
267
  });
258
268
 
259
- class AXPDateTimeBoxWidgetColumnComponent extends AXPWidgetBase {
269
+ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetBase {
270
+ constructor() {
271
+ super(...arguments);
272
+ this.formatter = inject(AXDateTimeFormatter);
273
+ this.convertedValue = computed(() => this.updateValue());
274
+ this.format = 'datetime';
275
+ this.updateValue = () => {
276
+ const rawValue = this.rawValue;
277
+ if (rawValue == null) {
278
+ return null;
279
+ }
280
+ if (this.isArray(rawValue)) {
281
+ return rawValue.map((item) => this.handleFormat(item)).join(', ');
282
+ }
283
+ else {
284
+ return this.handleFormat(rawValue);
285
+ }
286
+ };
287
+ }
288
+ handleFormat(value) {
289
+ return this.formatter.format(new Date(value), { format: this.format });
290
+ }
291
+ isArray(val) {
292
+ return Array.isArray(val);
293
+ }
260
294
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
261
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
295
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<span [title]="convertedValue()">{{ convertedValue() }}</span>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
262
296
  }
263
297
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, decorators: [{
264
298
  type: Component,
265
299
  args: [{
266
- template: ``,
300
+ template: `<span [title]="convertedValue()">{{ convertedValue() }}</span>`,
267
301
  standalone: true,
268
302
  changeDetection: ChangeDetectionStrategy.OnPush,
269
303
  imports: [CommonModule],
270
- inputs: []
304
+ inputs: ['rawValue'],
271
305
  }]
272
306
  }] });
273
307
 
@@ -362,79 +396,79 @@ class AXPEmailBoxWidgetViewComponent extends AXPWidgetBase {
362
396
  };
363
397
  }
364
398
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
365
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
366
- <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
367
- <ng-container *ngIf="multiple">
368
- @for(item of internalValue();track item?.value) {
369
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
370
- }
371
- </ng-container>
372
-
373
- <ng-container *ngIf="!multiple">
374
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
375
- </ng-container>
376
-
377
- <ng-template #itemTemplate let-item="data">
378
- <ng-container *ngIf="item">
379
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
380
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
381
- <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
382
- <i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
383
- </div>
384
- <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
385
- <span
386
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
387
- (click)="clipboard.copy('Email', item.value)"
388
- >
389
- <i class="fa-solid fa-copy "></i>
390
- </span>
391
- @if(hasLabel){
392
- <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
393
- }
394
- </div>
395
- </div>
396
- </ng-container>
397
- </ng-template>
398
- </div>
399
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.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 }); }
399
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
400
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
401
+ <ng-container *ngIf="multiple">
402
+ @for(item of internalValue();track item?.value) {
403
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
404
+ }
405
+ </ng-container>
406
+
407
+ <ng-container *ngIf="!multiple">
408
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
409
+ </ng-container>
410
+
411
+ <ng-template #itemTemplate let-item="data">
412
+ <ng-container *ngIf="item">
413
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
414
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
415
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
416
+ <i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
417
+ </div>
418
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
419
+ <span
420
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
421
+ (click)="clipboard.copy('Email', item.value)"
422
+ >
423
+ <i class="fa-solid fa-copy "></i>
424
+ </span>
425
+ @if(hasLabel){
426
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
427
+ }
428
+ </div>
429
+ </div>
430
+ </ng-container>
431
+ </ng-template>
432
+ </div>
433
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
400
434
  }
401
435
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
402
436
  type: Component,
403
437
  args: [{
404
- template: `
405
- <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
406
- <ng-container *ngIf="multiple">
407
- @for(item of internalValue();track item?.value) {
408
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
409
- }
410
- </ng-container>
411
-
412
- <ng-container *ngIf="!multiple">
413
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
414
- </ng-container>
415
-
416
- <ng-template #itemTemplate let-item="data">
417
- <ng-container *ngIf="item">
418
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
419
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
420
- <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
421
- <i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
422
- </div>
423
- <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
424
- <span
425
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
426
- (click)="clipboard.copy('Email', item.value)"
427
- >
428
- <i class="fa-solid fa-copy "></i>
429
- </span>
430
- @if(hasLabel){
431
- <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
432
- }
433
- </div>
434
- </div>
435
- </ng-container>
436
- </ng-template>
437
- </div>
438
+ template: `
439
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
440
+ <ng-container *ngIf="multiple">
441
+ @for(item of internalValue();track item?.value) {
442
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
443
+ }
444
+ </ng-container>
445
+
446
+ <ng-container *ngIf="!multiple">
447
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
448
+ </ng-container>
449
+
450
+ <ng-template #itemTemplate let-item="data">
451
+ <ng-container *ngIf="item">
452
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
453
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
454
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
455
+ <i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
456
+ </div>
457
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
458
+ <span
459
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
460
+ (click)="clipboard.copy('Email', item.value)"
461
+ >
462
+ <i class="fa-solid fa-copy "></i>
463
+ </span>
464
+ @if(hasLabel){
465
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
466
+ }
467
+ </div>
468
+ </div>
469
+ </ng-container>
470
+ </ng-template>
471
+ </div>
438
472
  `,
439
473
  standalone: true,
440
474
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -456,11 +490,31 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetBase {
456
490
  this.clearButton = true;
457
491
  this.hasLabel = true;
458
492
  this.emailLabels = ['Primary', 'Secondary'];
459
- this.internalValue = computed(() => this.getValue() ? (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]) : [{}]);
493
+ this.internalValue = computed(() => this.getValueAsArrayOfObjects());
494
+ this._validationRules = [];
495
+ this.convertItem = (item, e) => {
496
+ if (typeof item === 'object')
497
+ return { ...item, value: e.value };
498
+ else
499
+ return e.value;
500
+ };
501
+ }
502
+ get validationRules() {
503
+ return this._validationRules;
504
+ }
505
+ set validationRules(v) {
506
+ this._validationRules = v;
507
+ }
508
+ getValueAsArrayOfObjects() {
509
+ const value = this.getValue();
510
+ if (Array.isArray(value)) {
511
+ return value.map((item) => (typeof item === 'object' ? item : { value: item }));
512
+ }
513
+ return typeof value === 'object' ? [value] : [{ value: value || '' }];
460
514
  }
461
515
  handleValueChange(e, selectedIndex) {
462
516
  if (e.isUserInteraction) {
463
- const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, value: e.value } : item));
517
+ const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? this.convertItem(item, e) : item));
464
518
  if (this.multiple)
465
519
  this.setValue(newValues);
466
520
  else
@@ -485,145 +539,155 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetBase {
485
539
  this.setValue(newValues);
486
540
  }
487
541
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
488
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
489
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
490
- <ng-container *ngIf="multiple">
491
- @for(item of internalValue();track $index) {
492
- <ax-text-box
493
- [ngModel]="item.value"
494
- (onValueChanged)="handleValueChange($event, $index)"
495
- type="text"
496
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
497
- [class.lg:!ax-col-end-12]="!hasLabel"
498
- >
499
- </ax-text-box>
500
- @if(hasLabel){
501
- <ax-select-box
502
- [dataSource]="emailLabels"
503
- [ngModel]="item.label"
504
- (onValueChanged)="handleLabelChange($event, $index)"
505
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
506
- >
507
- </ax-select-box>
508
- }
509
- <ax-button
510
- look="twotone"
511
- color="danger"
512
- (onClick)="deleteItem($index)"
513
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
514
- >
515
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
516
- </ax-button>
517
- }
518
- </ng-container>
519
- <ng-container *ngIf="!multiple">
520
- <ax-text-box
521
- [ngModel]="internalValue()[0].value"
522
- (onValueChanged)="handleValueChange($event, 0)"
523
- type="text"
524
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
525
- [class.lg:!ax-col-end-13]="!hasLabel"
526
- >
527
- <!-- @for(vl of validations;track $index) {
528
- <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
529
- } -->
530
- </ax-text-box>
531
- @if(hasLabel){
532
- <ax-select-box
533
- [dataSource]="emailLabels"
534
- [ngModel]="internalValue()[0].label"
535
- (onValueChanged)="handleLabelChange($event, 0)"
536
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
537
- >
538
- </ax-select-box>
539
- }
540
- </ng-container>
541
- <ax-button
542
- *ngIf="multiple"
543
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
544
- look="twotone"
545
- (onClick)="addItem()"
546
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
547
- >
548
- <ax-prefix>
549
- <ax-icon class="fa-solid fa-add"></ax-icon>
550
- </ax-prefix>
551
- </ax-button>
552
- </div>
553
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
542
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
543
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
544
+ <ng-container *ngIf="multiple">
545
+ @for(item of internalValue();track $index) {
546
+ <ax-text-box
547
+ [ngModel]="item.value"
548
+ (onValueChanged)="handleValueChange($event, $index)"
549
+ type="text"
550
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
551
+ [class.lg:!ax-col-end-12]="!hasLabel"
552
+ >
553
+ @for (validation of validationRules; track $index) {
554
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
555
+ }
556
+ <ax-validation-rule [rule]="'email'"></ax-validation-rule>
557
+ </ax-text-box>
558
+ @if(hasLabel){
559
+ <ax-select-box
560
+ [dataSource]="emailLabels"
561
+ [ngModel]="item.label"
562
+ (onValueChanged)="handleLabelChange($event, $index)"
563
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
564
+ >
565
+ </ax-select-box>
566
+ }
567
+ <ax-button
568
+ look="twotone"
569
+ color="danger"
570
+ (onClick)="deleteItem($index)"
571
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
572
+ >
573
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
574
+ </ax-button>
575
+ }
576
+ </ng-container>
577
+ <ng-container *ngIf="!multiple">
578
+ <ax-text-box
579
+ [ngModel]="internalValue()[0].value"
580
+ (onValueChanged)="handleValueChange($event, 0)"
581
+ type="text"
582
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
583
+ [class.lg:!ax-col-end-13]="!hasLabel"
584
+ >
585
+ @for (validation of validationRules; track $index) {
586
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
587
+ }
588
+ <ax-validation-rule [rule]="'email'"></ax-validation-rule>
589
+ </ax-text-box>
590
+ @if(hasLabel){
591
+ <ax-select-box
592
+ [dataSource]="emailLabels"
593
+ [ngModel]="internalValue()[0].label"
594
+ (onValueChanged)="handleLabelChange($event, 0)"
595
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
596
+ >
597
+ </ax-select-box>
598
+ }
599
+ </ng-container>
600
+ <ax-button
601
+ *ngIf="multiple"
602
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
603
+ look="twotone"
604
+ (onClick)="addItem()"
605
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
606
+ >
607
+ <ax-prefix>
608
+ <ax-icon class="fa-solid fa-add"></ax-icon>
609
+ </ax-prefix>
610
+ </ax-button>
611
+ </div>
612
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { 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: i6.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "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 }); }
554
613
  }
555
614
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
556
615
  type: Component,
557
616
  args: [{
558
- template: `
559
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
560
- <ng-container *ngIf="multiple">
561
- @for(item of internalValue();track $index) {
562
- <ax-text-box
563
- [ngModel]="item.value"
564
- (onValueChanged)="handleValueChange($event, $index)"
565
- type="text"
566
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
567
- [class.lg:!ax-col-end-12]="!hasLabel"
568
- >
569
- </ax-text-box>
570
- @if(hasLabel){
571
- <ax-select-box
572
- [dataSource]="emailLabels"
573
- [ngModel]="item.label"
574
- (onValueChanged)="handleLabelChange($event, $index)"
575
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
576
- >
577
- </ax-select-box>
578
- }
579
- <ax-button
580
- look="twotone"
581
- color="danger"
582
- (onClick)="deleteItem($index)"
583
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
584
- >
585
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
586
- </ax-button>
587
- }
588
- </ng-container>
589
- <ng-container *ngIf="!multiple">
590
- <ax-text-box
591
- [ngModel]="internalValue()[0].value"
592
- (onValueChanged)="handleValueChange($event, 0)"
593
- type="text"
594
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
595
- [class.lg:!ax-col-end-13]="!hasLabel"
596
- >
597
- <!-- @for(vl of validations;track $index) {
598
- <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
599
- } -->
600
- </ax-text-box>
601
- @if(hasLabel){
602
- <ax-select-box
603
- [dataSource]="emailLabels"
604
- [ngModel]="internalValue()[0].label"
605
- (onValueChanged)="handleLabelChange($event, 0)"
606
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
607
- >
608
- </ax-select-box>
609
- }
610
- </ng-container>
611
- <ax-button
612
- *ngIf="multiple"
613
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
614
- look="twotone"
615
- (onClick)="addItem()"
616
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
617
- >
618
- <ax-prefix>
619
- <ax-icon class="fa-solid fa-add"></ax-icon>
620
- </ax-prefix>
621
- </ax-button>
622
- </div>
617
+ template: `
618
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
619
+ <ng-container *ngIf="multiple">
620
+ @for(item of internalValue();track $index) {
621
+ <ax-text-box
622
+ [ngModel]="item.value"
623
+ (onValueChanged)="handleValueChange($event, $index)"
624
+ type="text"
625
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
626
+ [class.lg:!ax-col-end-12]="!hasLabel"
627
+ >
628
+ @for (validation of validationRules; track $index) {
629
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
630
+ }
631
+ <ax-validation-rule [rule]="'email'"></ax-validation-rule>
632
+ </ax-text-box>
633
+ @if(hasLabel){
634
+ <ax-select-box
635
+ [dataSource]="emailLabels"
636
+ [ngModel]="item.label"
637
+ (onValueChanged)="handleLabelChange($event, $index)"
638
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
639
+ >
640
+ </ax-select-box>
641
+ }
642
+ <ax-button
643
+ look="twotone"
644
+ color="danger"
645
+ (onClick)="deleteItem($index)"
646
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
647
+ >
648
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
649
+ </ax-button>
650
+ }
651
+ </ng-container>
652
+ <ng-container *ngIf="!multiple">
653
+ <ax-text-box
654
+ [ngModel]="internalValue()[0].value"
655
+ (onValueChanged)="handleValueChange($event, 0)"
656
+ type="text"
657
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
658
+ [class.lg:!ax-col-end-13]="!hasLabel"
659
+ >
660
+ @for (validation of validationRules; track $index) {
661
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
662
+ }
663
+ <ax-validation-rule [rule]="'email'"></ax-validation-rule>
664
+ </ax-text-box>
665
+ @if(hasLabel){
666
+ <ax-select-box
667
+ [dataSource]="emailLabels"
668
+ [ngModel]="internalValue()[0].label"
669
+ (onValueChanged)="handleLabelChange($event, 0)"
670
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
671
+ >
672
+ </ax-select-box>
673
+ }
674
+ </ng-container>
675
+ <ax-button
676
+ *ngIf="multiple"
677
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
678
+ look="twotone"
679
+ (onClick)="addItem()"
680
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
681
+ >
682
+ <ax-prefix>
683
+ <ax-icon class="fa-solid fa-add"></ax-icon>
684
+ </ax-prefix>
685
+ </ax-button>
686
+ </div>
623
687
  `,
624
688
  standalone: true,
625
689
  changeDetection: ChangeDetectionStrategy.OnPush,
626
- imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule],
690
+ imports: [CommonModule, FormsModule, AXFormModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule, AXValidationModule],
627
691
  inputs: [],
628
692
  }]
629
693
  }] });
@@ -653,18 +717,65 @@ var emailBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
653
717
  AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent
654
718
  });
655
719
 
656
- class AXPEmailBoxWidgetColumnComponent extends AXPWidgetBase {
720
+ class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetBase {
721
+ constructor() {
722
+ super(...arguments);
723
+ this.list = computed(() => Array.isArray(this.rawValue) ? this.rawValue.map((c) => this.extractItem(c)) : [this.extractItem(this.rawValue)]);
724
+ this.text = computed(() => this.list()
725
+ .map((item) => item.value)
726
+ .join('\n'));
727
+ }
728
+ dot3(text) {
729
+ console.log(text);
730
+ if (this.multiple)
731
+ return text.split('\n')[0] + '...';
732
+ else
733
+ return text.split('\n')[0];
734
+ }
735
+ extractItem(item) {
736
+ return typeof item == 'object'
737
+ ? {
738
+ value: item.value ?? '-',
739
+ type: item.type ?? 'primary',
740
+ label: item.label,
741
+ }
742
+ : {
743
+ value: item,
744
+ type: 'primary',
745
+ label: null,
746
+ };
747
+ }
657
748
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
658
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPEmailBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
749
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<div>
750
+ @if(multiple && list.length>1){
751
+ <div [title]="text()">{{ dot3(text()) }}</div>
752
+ }@else {
753
+ <div>
754
+ @if(list() && list().length){
755
+ {{ list()[0].value }}
756
+ }@else { - }
757
+ </div>
758
+ }
759
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
659
760
  }
660
761
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetColumnComponent, decorators: [{
661
762
  type: Component,
662
763
  args: [{
663
- template: ``,
764
+ template: `<div>
765
+ @if(multiple && list.length>1){
766
+ <div [title]="text()">{{ dot3(text()) }}</div>
767
+ }@else {
768
+ <div>
769
+ @if(list() && list().length){
770
+ {{ list()[0].value }}
771
+ }@else { - }
772
+ </div>
773
+ }
774
+ </div>`,
664
775
  standalone: true,
665
776
  changeDetection: ChangeDetectionStrategy.OnPush,
666
777
  imports: [CommonModule],
667
- inputs: []
778
+ inputs: ['rawValue'],
668
779
  }]
669
780
  }] });
670
781
 
@@ -800,73 +911,73 @@ class AXPFileBoxWidgetViewComponent extends AXPWidgetBase {
800
911
  : null;
801
912
  }
802
913
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
803
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
804
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
805
- @if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
806
- <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
807
- } }@else {
808
- <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
809
- }
810
- <ng-template #itemTemplate let-item="data">
811
- <div
812
- *ngIf="item"
813
- class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
814
- >
815
- <div class="ax-flex ax-items-center ax-gap-3">
816
- <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
817
- <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
818
- <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
819
- </div>
820
- </ng-container>
821
- <div>
822
- <div class="ax-leading-6">{{ item.name }}</div>
823
- <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
824
- </div>
825
- </div>
826
- <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
827
- <ax-icon>
828
- <i class="fa-solid fa-download"></i>
829
- </ax-icon>
830
- </ax-button>
831
- </div>
832
- </ng-template>
833
- </div>
834
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
914
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
915
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
916
+ @if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
917
+ <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
918
+ } }@else {
919
+ <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
920
+ }
921
+ <ng-template #itemTemplate let-item="data">
922
+ <div
923
+ *ngIf="item"
924
+ class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
925
+ >
926
+ <div class="ax-flex ax-items-center ax-gap-3">
927
+ <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
928
+ <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
929
+ <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
930
+ </div>
931
+ </ng-container>
932
+ <div>
933
+ <div class="ax-leading-6">{{ item.name }}</div>
934
+ <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
935
+ </div>
936
+ </div>
937
+ <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
938
+ <ax-icon>
939
+ <i class="fa-solid fa-download"></i>
940
+ </ax-icon>
941
+ </ax-button>
942
+ </div>
943
+ </ng-template>
944
+ </div>
945
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
835
946
  }
836
947
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetViewComponent, decorators: [{
837
948
  type: Component,
838
949
  args: [{
839
- template: `
840
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
841
- @if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
842
- <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
843
- } }@else {
844
- <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
845
- }
846
- <ng-template #itemTemplate let-item="data">
847
- <div
848
- *ngIf="item"
849
- class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
850
- >
851
- <div class="ax-flex ax-items-center ax-gap-3">
852
- <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
853
- <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
854
- <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
855
- </div>
856
- </ng-container>
857
- <div>
858
- <div class="ax-leading-6">{{ item.name }}</div>
859
- <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
860
- </div>
861
- </div>
862
- <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
863
- <ax-icon>
864
- <i class="fa-solid fa-download"></i>
865
- </ax-icon>
866
- </ax-button>
867
- </div>
868
- </ng-template>
869
- </div>
950
+ template: `
951
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
952
+ @if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
953
+ <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
954
+ } }@else {
955
+ <ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
956
+ }
957
+ <ng-template #itemTemplate let-item="data">
958
+ <div
959
+ *ngIf="item"
960
+ class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
961
+ >
962
+ <div class="ax-flex ax-items-center ax-gap-3">
963
+ <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
964
+ <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
965
+ <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
966
+ </div>
967
+ </ng-container>
968
+ <div>
969
+ <div class="ax-leading-6">{{ item.name }}</div>
970
+ <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
971
+ </div>
972
+ </div>
973
+ <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
974
+ <ax-icon>
975
+ <i class="fa-solid fa-download"></i>
976
+ </ax-icon>
977
+ </ax-button>
978
+ </div>
979
+ </ng-template>
980
+ </div>
870
981
  `,
871
982
  standalone: true,
872
983
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -936,121 +1047,121 @@ class AXPFileBoxWidgetEditComponent extends AXPWidgetBase {
936
1047
  }
937
1048
  }
938
1049
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
939
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
940
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
941
- <ng-container *ngIf="multiple">
942
- @for(item of internalValue();track $index) {
943
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
944
- }
945
- </ng-container>
946
- <ng-container *ngIf="!multiple">
947
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
948
- </ng-container>
949
- <ng-template #itemTemplate let-item="data" let-index="index">
950
- <div
951
- *ngIf="item"
952
- class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
953
- [class.!ax-col-end-13]="!multiple"
954
- >
955
- <div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
956
- <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
957
- <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
958
- <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
959
- </div>
960
- </ng-container>
961
- <div>
962
- <div class="ax-leading-6">{{ item.name }}</div>
963
- <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
964
- </div>
965
- </div>
966
- <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
967
- <ax-icon>
968
- <i class="fa-solid fa-download"></i>
969
- </ax-icon>
970
- </ax-button>
971
- </div>
972
- <ax-button
973
- *ngIf="multiple"
974
- look="twotone"
975
- color="danger"
976
- (onClick)="handleRemoveItem(index)"
977
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
978
- >
979
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
980
- </ax-button>
981
- </ng-template>
982
- <ax-button
983
- *ngIf="multiple"
984
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
985
- look="twotone"
986
- (onClick)="handleAddItem()"
987
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
988
- >
989
- <ax-prefix>
990
- <ax-icon class="fa-solid fa-add"></ax-icon>
991
- </ax-prefix>
992
- </ax-button>
993
- </div>
994
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }); }
1050
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1051
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
1052
+ <ng-container *ngIf="multiple">
1053
+ @for(item of internalValue();track $index) {
1054
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
1055
+ }
1056
+ </ng-container>
1057
+ <ng-container *ngIf="!multiple">
1058
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
1059
+ </ng-container>
1060
+ <ng-template #itemTemplate let-item="data" let-index="index">
1061
+ <div
1062
+ *ngIf="item"
1063
+ class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
1064
+ [class.!ax-col-end-13]="!multiple"
1065
+ >
1066
+ <div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
1067
+ <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
1068
+ <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
1069
+ <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
1070
+ </div>
1071
+ </ng-container>
1072
+ <div>
1073
+ <div class="ax-leading-6">{{ item.name }}</div>
1074
+ <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
1075
+ </div>
1076
+ </div>
1077
+ <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
1078
+ <ax-icon>
1079
+ <i class="fa-solid fa-download"></i>
1080
+ </ax-icon>
1081
+ </ax-button>
1082
+ </div>
1083
+ <ax-button
1084
+ *ngIf="multiple"
1085
+ look="twotone"
1086
+ color="danger"
1087
+ (onClick)="handleRemoveItem(index)"
1088
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
1089
+ >
1090
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
1091
+ </ax-button>
1092
+ </ng-template>
1093
+ <ax-button
1094
+ *ngIf="multiple"
1095
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
1096
+ look="twotone"
1097
+ (onClick)="handleAddItem()"
1098
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
1099
+ >
1100
+ <ax-prefix>
1101
+ <ax-icon class="fa-solid fa-add"></ax-icon>
1102
+ </ax-prefix>
1103
+ </ax-button>
1104
+ </div>
1105
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { 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" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
995
1106
  }
996
1107
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetEditComponent, decorators: [{
997
1108
  type: Component,
998
1109
  args: [{
999
- template: `
1000
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
1001
- <ng-container *ngIf="multiple">
1002
- @for(item of internalValue();track $index) {
1003
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
1004
- }
1005
- </ng-container>
1006
- <ng-container *ngIf="!multiple">
1007
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
1008
- </ng-container>
1009
- <ng-template #itemTemplate let-item="data" let-index="index">
1010
- <div
1011
- *ngIf="item"
1012
- class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
1013
- [class.!ax-col-end-13]="!multiple"
1014
- >
1015
- <div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
1016
- <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
1017
- <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
1018
- <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
1019
- </div>
1020
- </ng-container>
1021
- <div>
1022
- <div class="ax-leading-6">{{ item.name }}</div>
1023
- <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
1024
- </div>
1025
- </div>
1026
- <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
1027
- <ax-icon>
1028
- <i class="fa-solid fa-download"></i>
1029
- </ax-icon>
1030
- </ax-button>
1031
- </div>
1032
- <ax-button
1033
- *ngIf="multiple"
1034
- look="twotone"
1035
- color="danger"
1036
- (onClick)="handleRemoveItem(index)"
1037
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
1038
- >
1039
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
1040
- </ax-button>
1041
- </ng-template>
1042
- <ax-button
1043
- *ngIf="multiple"
1044
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
1045
- look="twotone"
1046
- (onClick)="handleAddItem()"
1047
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
1048
- >
1049
- <ax-prefix>
1050
- <ax-icon class="fa-solid fa-add"></ax-icon>
1051
- </ax-prefix>
1052
- </ax-button>
1053
- </div>
1110
+ template: `
1111
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
1112
+ <ng-container *ngIf="multiple">
1113
+ @for(item of internalValue();track $index) {
1114
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
1115
+ }
1116
+ </ng-container>
1117
+ <ng-container *ngIf="!multiple">
1118
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
1119
+ </ng-container>
1120
+ <ng-template #itemTemplate let-item="data" let-index="index">
1121
+ <div
1122
+ *ngIf="item"
1123
+ class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
1124
+ [class.!ax-col-end-13]="!multiple"
1125
+ >
1126
+ <div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
1127
+ <ng-container *ngIf="getFileInfo(item.name) as fileInfo">
1128
+ <div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
1129
+ <i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
1130
+ </div>
1131
+ </ng-container>
1132
+ <div>
1133
+ <div class="ax-leading-6">{{ item.name }}</div>
1134
+ <p class="ax-text-sm ax-text-neutral-400">250 KB</p>
1135
+ </div>
1136
+ </div>
1137
+ <ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
1138
+ <ax-icon>
1139
+ <i class="fa-solid fa-download"></i>
1140
+ </ax-icon>
1141
+ </ax-button>
1142
+ </div>
1143
+ <ax-button
1144
+ *ngIf="multiple"
1145
+ look="twotone"
1146
+ color="danger"
1147
+ (onClick)="handleRemoveItem(index)"
1148
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
1149
+ >
1150
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
1151
+ </ax-button>
1152
+ </ng-template>
1153
+ <ax-button
1154
+ *ngIf="multiple"
1155
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
1156
+ look="twotone"
1157
+ (onClick)="handleAddItem()"
1158
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
1159
+ >
1160
+ <ax-prefix>
1161
+ <ax-icon class="fa-solid fa-add"></ax-icon>
1162
+ </ax-prefix>
1163
+ </ax-button>
1164
+ </div>
1054
1165
  `,
1055
1166
  standalone: true,
1056
1167
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -1207,107 +1318,107 @@ class AXPGalleryWidgetViewComponent extends AXPWidgetBase {
1207
1318
  }
1208
1319
  }
1209
1320
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1210
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1211
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1212
- @if(internalValue().length){
1213
- <div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
1214
- <div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
1215
- <div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
1216
- @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1217
- <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1218
- } @case ('image') {
1219
- <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1220
- <ax-loading></ax-loading>
1221
- <ax-placeholder>
1222
- <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1223
- <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1224
- <span>Connection Error!</span>
1225
- </div>
1226
- </ax-placeholder>
1227
- </ax-image>
1228
- } @case ('audio') {
1229
- <audio controls class="ax-rounded-lg">
1230
- <source [src]="activeMedia()?.url" type="audio/mp3" />
1231
- </audio>
1232
- } }
1233
- <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1234
- @for (media of thumbnails(); track $index) {
1235
- <div
1236
- *ngIf="getMediaInfo(media.name) as mediaInfo"
1237
- class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1238
- (click)="changeMediaSelected(media)"
1239
- >
1240
- <ax-image
1241
- class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1242
- [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1243
- ></ax-image>
1244
- <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1245
- <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1246
- </div>
1247
- </div>
1248
- }
1249
- </div>
1250
- </div>
1251
- </div>
1252
- </div>
1253
- } @else {
1254
- <!-- ask for empty state: -->
1255
- <small>No Media!</small>
1256
- }
1257
- </div>
1258
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }); }
1321
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1322
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1323
+ @if(internalValue().length){
1324
+ <div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
1325
+ <div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
1326
+ <div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
1327
+ @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1328
+ <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1329
+ } @case ('image') {
1330
+ <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1331
+ <ax-loading></ax-loading>
1332
+ <ax-placeholder>
1333
+ <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1334
+ <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1335
+ <span>Connection Error!</span>
1336
+ </div>
1337
+ </ax-placeholder>
1338
+ </ax-image>
1339
+ } @case ('audio') {
1340
+ <audio controls class="ax-rounded-lg">
1341
+ <source [src]="activeMedia()?.url" type="audio/mp3" />
1342
+ </audio>
1343
+ } }
1344
+ <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1345
+ @for (media of thumbnails(); track $index) {
1346
+ <div
1347
+ *ngIf="getMediaInfo(media.name) as mediaInfo"
1348
+ class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1349
+ (click)="changeMediaSelected(media)"
1350
+ >
1351
+ <ax-image
1352
+ class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1353
+ [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1354
+ ></ax-image>
1355
+ <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1356
+ <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1357
+ </div>
1358
+ </div>
1359
+ }
1360
+ </div>
1361
+ </div>
1362
+ </div>
1363
+ </div>
1364
+ } @else {
1365
+ <!-- ask for empty state: -->
1366
+ <small>No Media!</small>
1367
+ }
1368
+ </div>
1369
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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 }); }
1259
1370
  }
1260
1371
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
1261
1372
  type: Component,
1262
1373
  args: [{
1263
- template: `
1264
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1265
- @if(internalValue().length){
1266
- <div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
1267
- <div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
1268
- <div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
1269
- @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1270
- <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1271
- } @case ('image') {
1272
- <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1273
- <ax-loading></ax-loading>
1274
- <ax-placeholder>
1275
- <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1276
- <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1277
- <span>Connection Error!</span>
1278
- </div>
1279
- </ax-placeholder>
1280
- </ax-image>
1281
- } @case ('audio') {
1282
- <audio controls class="ax-rounded-lg">
1283
- <source [src]="activeMedia()?.url" type="audio/mp3" />
1284
- </audio>
1285
- } }
1286
- <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1287
- @for (media of thumbnails(); track $index) {
1288
- <div
1289
- *ngIf="getMediaInfo(media.name) as mediaInfo"
1290
- class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1291
- (click)="changeMediaSelected(media)"
1292
- >
1293
- <ax-image
1294
- class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1295
- [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1296
- ></ax-image>
1297
- <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1298
- <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1299
- </div>
1300
- </div>
1301
- }
1302
- </div>
1303
- </div>
1304
- </div>
1305
- </div>
1306
- } @else {
1307
- <!-- ask for empty state: -->
1308
- <small>No Media!</small>
1309
- }
1310
- </div>
1374
+ template: `
1375
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1376
+ @if(internalValue().length){
1377
+ <div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
1378
+ <div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
1379
+ <div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
1380
+ @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1381
+ <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1382
+ } @case ('image') {
1383
+ <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1384
+ <ax-loading></ax-loading>
1385
+ <ax-placeholder>
1386
+ <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1387
+ <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1388
+ <span>Connection Error!</span>
1389
+ </div>
1390
+ </ax-placeholder>
1391
+ </ax-image>
1392
+ } @case ('audio') {
1393
+ <audio controls class="ax-rounded-lg">
1394
+ <source [src]="activeMedia()?.url" type="audio/mp3" />
1395
+ </audio>
1396
+ } }
1397
+ <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1398
+ @for (media of thumbnails(); track $index) {
1399
+ <div
1400
+ *ngIf="getMediaInfo(media.name) as mediaInfo"
1401
+ class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1402
+ (click)="changeMediaSelected(media)"
1403
+ >
1404
+ <ax-image
1405
+ class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1406
+ [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1407
+ ></ax-image>
1408
+ <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1409
+ <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1410
+ </div>
1411
+ </div>
1412
+ }
1413
+ </div>
1414
+ </div>
1415
+ </div>
1416
+ </div>
1417
+ } @else {
1418
+ <!-- ask for empty state: -->
1419
+ <small>No Media!</small>
1420
+ }
1421
+ </div>
1311
1422
  `,
1312
1423
  standalone: true,
1313
1424
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -1360,117 +1471,117 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetBase {
1360
1471
  }
1361
1472
  }
1362
1473
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1363
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1364
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1365
- @if(internalValue().length){
1366
- <div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
1367
- <div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
1368
- @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1369
- <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1370
- } @case ('image') {
1371
- <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1372
- <ax-loading></ax-loading>
1373
- <ax-placeholder>
1374
- <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1375
- <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1376
- <span>Connection Error!</span>
1377
- </div>
1378
- </ax-placeholder>
1379
- </ax-image>
1380
- } @case ('audio') {
1381
- <audio controls class="ax-rounded-lg">
1382
- <source [src]="activeMedia()?.url" type="audio/mp3" />
1383
- </audio>
1384
- } }
1385
- <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1386
- @for (media of thumbnails(); track $index) {
1387
- <div
1388
- *ngIf="getMediaInfo(media.name) as mediaInfo"
1389
- class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1390
- (click)="changeMediaSelected(media)"
1391
- >
1392
- <ax-image
1393
- class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1394
- [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1395
- ></ax-image>
1396
- <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1397
- <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1398
- </div>
1399
- </div>
1400
- }
1401
- <div axUploaderZone>
1402
- <div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
1403
- <ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
1404
- </div>
1405
- </div>
1406
- </div>
1407
- </div>
1408
- </div>
1409
- } @else {
1410
- <div class=" ax-col-start-1 ax-col-end-13">
1411
- <ax-uploader-drop-zone></ax-uploader-drop-zone>
1412
- </div>
1413
-
1414
- }
1415
- </div>
1416
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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" }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1474
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1475
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1476
+ @if(internalValue().length){
1477
+ <div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
1478
+ <div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
1479
+ @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1480
+ <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1481
+ } @case ('image') {
1482
+ <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1483
+ <ax-loading></ax-loading>
1484
+ <ax-placeholder>
1485
+ <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1486
+ <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1487
+ <span>Connection Error!</span>
1488
+ </div>
1489
+ </ax-placeholder>
1490
+ </ax-image>
1491
+ } @case ('audio') {
1492
+ <audio controls class="ax-rounded-lg">
1493
+ <source [src]="activeMedia()?.url" type="audio/mp3" />
1494
+ </audio>
1495
+ } }
1496
+ <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1497
+ @for (media of thumbnails(); track $index) {
1498
+ <div
1499
+ *ngIf="getMediaInfo(media.name) as mediaInfo"
1500
+ class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1501
+ (click)="changeMediaSelected(media)"
1502
+ >
1503
+ <ax-image
1504
+ class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1505
+ [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1506
+ ></ax-image>
1507
+ <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1508
+ <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1509
+ </div>
1510
+ </div>
1511
+ }
1512
+ <div axUploaderZone>
1513
+ <div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
1514
+ <ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
1515
+ </div>
1516
+ </div>
1517
+ </div>
1518
+ </div>
1519
+ </div>
1520
+ } @else {
1521
+ <div class=" ax-col-start-1 ax-col-end-13">
1522
+ <ax-uploader-drop-zone></ax-uploader-drop-zone>
1523
+ </div>
1524
+
1525
+ }
1526
+ </div>
1527
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone" }, { kind: "directive", type: i5.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple"] }, { kind: "directive", type: i5.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1417
1528
  }
1418
1529
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
1419
1530
  type: Component,
1420
1531
  args: [{
1421
- template: `
1422
- <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1423
- @if(internalValue().length){
1424
- <div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
1425
- <div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
1426
- @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1427
- <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1428
- } @case ('image') {
1429
- <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1430
- <ax-loading></ax-loading>
1431
- <ax-placeholder>
1432
- <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1433
- <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1434
- <span>Connection Error!</span>
1435
- </div>
1436
- </ax-placeholder>
1437
- </ax-image>
1438
- } @case ('audio') {
1439
- <audio controls class="ax-rounded-lg">
1440
- <source [src]="activeMedia()?.url" type="audio/mp3" />
1441
- </audio>
1442
- } }
1443
- <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1444
- @for (media of thumbnails(); track $index) {
1445
- <div
1446
- *ngIf="getMediaInfo(media.name) as mediaInfo"
1447
- class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1448
- (click)="changeMediaSelected(media)"
1449
- >
1450
- <ax-image
1451
- class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1452
- [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1453
- ></ax-image>
1454
- <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1455
- <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1456
- </div>
1457
- </div>
1458
- }
1459
- <div axUploaderZone>
1460
- <div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
1461
- <ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
1462
- </div>
1463
- </div>
1464
- </div>
1465
- </div>
1466
- </div>
1467
- } @else {
1468
- <div class=" ax-col-start-1 ax-col-end-13">
1469
- <ax-uploader-drop-zone></ax-uploader-drop-zone>
1470
- </div>
1471
-
1472
- }
1473
- </div>
1532
+ template: `
1533
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2">
1534
+ @if(internalValue().length){
1535
+ <div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
1536
+ <div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
1537
+ @switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
1538
+ <video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
1539
+ } @case ('image') {
1540
+ <ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
1541
+ <ax-loading></ax-loading>
1542
+ <ax-placeholder>
1543
+ <div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
1544
+ <ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
1545
+ <span>Connection Error!</span>
1546
+ </div>
1547
+ </ax-placeholder>
1548
+ </ax-image>
1549
+ } @case ('audio') {
1550
+ <audio controls class="ax-rounded-lg">
1551
+ <source [src]="activeMedia()?.url" type="audio/mp3" />
1552
+ </audio>
1553
+ } }
1554
+ <div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
1555
+ @for (media of thumbnails(); track $index) {
1556
+ <div
1557
+ *ngIf="getMediaInfo(media.name) as mediaInfo"
1558
+ class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
1559
+ (click)="changeMediaSelected(media)"
1560
+ >
1561
+ <ax-image
1562
+ class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
1563
+ [src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
1564
+ ></ax-image>
1565
+ <div class="ax-absolute ax-text-neutral-300 ax-text-xl">
1566
+ <ax-icon [class]="mediaInfo.icon"> </ax-icon>
1567
+ </div>
1568
+ </div>
1569
+ }
1570
+ <div axUploaderZone>
1571
+ <div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
1572
+ <ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
1573
+ </div>
1574
+ </div>
1575
+ </div>
1576
+ </div>
1577
+ </div>
1578
+ } @else {
1579
+ <div class=" ax-col-start-1 ax-col-end-13">
1580
+ <ax-uploader-drop-zone></ax-uploader-drop-zone>
1581
+ </div>
1582
+
1583
+ }
1584
+ </div>
1474
1585
  `,
1475
1586
  standalone: true,
1476
1587
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -1635,14 +1746,14 @@ class AXPMapBoxWidgetViewComponent extends AXPWidgetBase {
1635
1746
  this.map.addLayer(this.featuresGroup);
1636
1747
  }
1637
1748
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1638
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", 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">
1639
- <div class="ax-h-full" #mapEl></div>
1749
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", 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">
1750
+ <div class="ax-h-full" #mapEl></div>
1640
1751
  </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,iVBORw0KGgoAAAANSUhEUgAAASwAAAAeCAYAAACWuCNnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAG7AAABuwBHnU4NQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAbvSURBVHic7dtdbBxXFQfw/9nZ3SRKwAP7UFFUQOoHqGnUoEAoNghX9tyxVcpD1X0J+WgiUQmpfUB5ACSgG1qJIKASqBIUIauqAbWseIlqb+bOWHVR6y0FKZBEqdIUQROIREGRx3FFvR/38ODZst3a3nE8Ywfv+T2t7hzdM3fle/bOnWtACCGEEEIIIYQQQgghhBBCCCGEEEIIIcRa0EbfgBDdFItFKwzDAa3175LuWylVAvBIR/MxrXUp6Vxx9dp4VyObVEdKKW591lonXgiVUg6AHzPzk9ls9meVSmUh6RzXkz179uQKhcIgM+8CACI6U6vVnp+enm6knXt4ePiuTCbzWQAwxlSDIHg57ZwroDAMnwKwz3XdBzzPG08hxzsTNprQG2lTjtd13WFmfghAP4A+AJcATFiW9YNKpfL3uP0kUliiX4SG1pqUUpx0wXJd9/PMXAGwPWq6yMyPz8/P/7xarf4nyVwt7QV4JWkU52i8YwBu6bh0wRhzJAiCF5POCQCDg4N2Pp//NYDRjkuTxph9QRCESeYrFov5ubm5R5n5AIAPtV1aYOb7BgYGTpZKJeO67lFmPsbM9/i+/8Ja8y6zylhOYquPXhsvAJRKpczMzMwTAIaJ6LFGo+HNzs5eKRQKNxPRAWb+CoAjWuvn4vS35skWFasxAAdbbUlOYqVUPwAPwI4lLr8J4KeWZT1eqVTmksoZ5d2QghUVKx/AlmVCFph5yPf9l5LMCwBKqUksFqszRHQcAJj5GwB2MfOE7/tfTDKf4zjHiejrAE4CuNhqZ+bf2rY9FYbhGBH92/O8o47j3Oj7/uUk86+3XhsvACilHmPmgW3btn3pxIkTVzuvj4yMfNoY85wxZiQIglPd+lvTZIuq5xiAQwCe6evr218ul5tr6bNd9GiiAbyvS+hFrfVHk8oLbEzBih4Dz+G9K6t3IaLXFhYWdib5eBh911UA8wBu1lq/CQBDQ0M3WJb1OoAdRPQZz/NeSSqnUuofAKpa6/vb26MfwacA7AdwFcCdWuu/JpU3yl1C91VHoquNXhvvyMjIx4wxr1iWtbNSqfxruTjHcR4AcMj3/bu79XnNe1hpFyvHcXYT0QS6FysASHR1tVEKhcIguhQrAGDm23K53BcATCWV27KsAWYGgPOtYgUAU1NT/1RKnQewxxjzOQCJFSwANwI4297QtmLfD+AtZr43m83OJ5iz3bGU+l1OT43XGFNk5mdXKlYAYNv2eBiG31dK3aS1vrRSbOZabqRYLFppFisAIKJxAB+MGf56krk30O64gZlMJnZsHMxsoo8fHxoauqHVHn3+BAAQUaxV57Xq2F54i5nvIaJXm81mYoX5etID491JRH/sFlQul5tEdMoYc3u32FUXrLYvObViBQDM/MQqwi8knX8jEJHpHrXIGJNo8WDm1spph2VZgeu6+5RSX7YsK8D/Xnb8Psmcnebm5h7G4uS9ysxutOH8VQC70sy7UTb7eImImTnWlgkzUyaT6fr3v6qC1fGL8EytVjuQRrECANu2fwHg1TixzPyXNO5hvTHz6VWE/znJ3L7vzxBRa9PzDmb+FYBfArgjajvd39+f9vGGKwACZh5te6mwmc8KburxMvO5TCbzqW5xxWLRArDbsqyu8z32HtZSxSrNM0Hlcrnpum6JmZ+NEb4pHglrtdrz+Xz+AoBbu4Ser9fra37d3YEBfBvAkq+XmfmbpVIp9grwWnie9zSAp9PMcT3Z7OPNZrO/aTQaf1BKfbd9X7RTGIaHmPlcnPNYsVZYSikOw7AB4CAzj/f19e1fjwOMnueVEeMxJJfLbYqCNT093TDGHAGw0qHYBQBH0vj+Pc+bYOb3HFRk5nHf9yeTzgfgMhF9uEvMTQD+71/vR3pqvJOTk28AeBJAeXR09P1LxbiuuxfA9wB8LU6fsVdYrUOhtm0fTusxcAlMRN+KziUt5SqAM3v37r00OZnGfFp/QRC86DjOUCaTGWPm2zoun8fiIbuZtPLX6/UH8/n8rQDuippertfrD6aRKyqOR5VS81ji8Z+IbmfmgwB+mEb+9dZr4wWA/v7+R6rV6k+azeYpx3EezeVyJ7dv335lfn7+lkajcZCZDzPzYd/3/xSnv9gFq3UuaR2LFQDA87xAKVUB8BEAZ6N9nrNEdEZr/TcArLVOPG8aJ9jj8n3/pcHBwZ1btmx5519zmPl0vV5/Ie2V7fT09Nujo6Nus9kcA4CtW7ce1lq/nUYu27a/Mzs7CyI6gMVX/u/CzJeZ+Ue2bcc9pb1aXc8lJZms18YLANE2wkOu694N4OFGo3E8DMMPAHiDiCaY+ZOb4YCsEEIIIYQQQgghhBBCCCGEEEIIIYQQQgghhEjYfwGO+b5dFNs4OgAAAABJRU5ErkJggg==);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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1641
1752
  }
1642
1753
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetViewComponent, decorators: [{
1643
1754
  type: Component,
1644
- args: [{ template: `<div class="ax-w-full ax-h-72">
1645
- <div class="ax-h-full" #mapEl></div>
1755
+ args: [{ template: `<div class="ax-w-full ax-h-72">
1756
+ <div class="ax-h-full" #mapEl></div>
1646
1757
  </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,iVBORw0KGgoAAAANSUhEUgAAASwAAAAeCAYAAACWuCNnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAG7AAABuwBHnU4NQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAbvSURBVHic7dtdbBxXFQfw/9nZ3SRKwAP7UFFUQOoHqGnUoEAoNghX9tyxVcpD1X0J+WgiUQmpfUB5ACSgG1qJIKASqBIUIauqAbWseIlqb+bOWHVR6y0FKZBEqdIUQROIREGRx3FFvR/38ODZst3a3nE8Ywfv+T2t7hzdM3fle/bOnWtACCGEEEIIIYQQQgghhBBCCCGEEEIIIcRa0EbfgBDdFItFKwzDAa3175LuWylVAvBIR/MxrXUp6Vxx9dp4VyObVEdKKW591lonXgiVUg6AHzPzk9ls9meVSmUh6RzXkz179uQKhcIgM+8CACI6U6vVnp+enm6knXt4ePiuTCbzWQAwxlSDIHg57ZwroDAMnwKwz3XdBzzPG08hxzsTNprQG2lTjtd13WFmfghAP4A+AJcATFiW9YNKpfL3uP0kUliiX4SG1pqUUpx0wXJd9/PMXAGwPWq6yMyPz8/P/7xarf4nyVwt7QV4JWkU52i8YwBu6bh0wRhzJAiCF5POCQCDg4N2Pp//NYDRjkuTxph9QRCESeYrFov5ubm5R5n5AIAPtV1aYOb7BgYGTpZKJeO67lFmPsbM9/i+/8Ja8y6zylhOYquPXhsvAJRKpczMzMwTAIaJ6LFGo+HNzs5eKRQKNxPRAWb+CoAjWuvn4vS35skWFasxAAdbbUlOYqVUPwAPwI4lLr8J4KeWZT1eqVTmksoZ5d2QghUVKx/AlmVCFph5yPf9l5LMCwBKqUksFqszRHQcAJj5GwB2MfOE7/tfTDKf4zjHiejrAE4CuNhqZ+bf2rY9FYbhGBH92/O8o47j3Oj7/uUk86+3XhsvACilHmPmgW3btn3pxIkTVzuvj4yMfNoY85wxZiQIglPd+lvTZIuq5xiAQwCe6evr218ul5tr6bNd9GiiAbyvS+hFrfVHk8oLbEzBih4Dz+G9K6t3IaLXFhYWdib5eBh911UA8wBu1lq/CQBDQ0M3WJb1OoAdRPQZz/NeSSqnUuofAKpa6/vb26MfwacA7AdwFcCdWuu/JpU3yl1C91VHoquNXhvvyMjIx4wxr1iWtbNSqfxruTjHcR4AcMj3/bu79XnNe1hpFyvHcXYT0QS6FysASHR1tVEKhcIguhQrAGDm23K53BcATCWV27KsAWYGgPOtYgUAU1NT/1RKnQewxxjzOQCJFSwANwI4297QtmLfD+AtZr43m83OJ5iz3bGU+l1OT43XGFNk5mdXKlYAYNv2eBiG31dK3aS1vrRSbOZabqRYLFppFisAIKJxAB+MGf56krk30O64gZlMJnZsHMxsoo8fHxoauqHVHn3+BAAQUaxV57Xq2F54i5nvIaJXm81mYoX5etID491JRH/sFlQul5tEdMoYc3u32FUXrLYvObViBQDM/MQqwi8knX8jEJHpHrXIGJNo8WDm1spph2VZgeu6+5RSX7YsK8D/Xnb8Psmcnebm5h7G4uS9ysxutOH8VQC70sy7UTb7eImImTnWlgkzUyaT6fr3v6qC1fGL8EytVjuQRrECANu2fwHg1TixzPyXNO5hvTHz6VWE/znJ3L7vzxBRa9PzDmb+FYBfArgjajvd39+f9vGGKwACZh5te6mwmc8KburxMvO5TCbzqW5xxWLRArDbsqyu8z32HtZSxSrNM0Hlcrnpum6JmZ+NEb4pHglrtdrz+Xz+AoBbu4Ser9fra37d3YEBfBvAkq+XmfmbpVIp9grwWnie9zSAp9PMcT3Z7OPNZrO/aTQaf1BKfbd9X7RTGIaHmPlcnPNYsVZYSikOw7AB4CAzj/f19e1fjwOMnueVEeMxJJfLbYqCNT093TDGHAGw0qHYBQBH0vj+Pc+bYOb3HFRk5nHf9yeTzgfgMhF9uEvMTQD+71/vR3pqvJOTk28AeBJAeXR09P1LxbiuuxfA9wB8LU6fsVdYrUOhtm0fTusxcAlMRN+KziUt5SqAM3v37r00OZnGfFp/QRC86DjOUCaTGWPm2zoun8fiIbuZtPLX6/UH8/n8rQDuippertfrD6aRKyqOR5VS81ji8Z+IbmfmgwB+mEb+9dZr4wWA/v7+R6rV6k+azeYpx3EezeVyJ7dv335lfn7+lkajcZCZDzPzYd/3/xSnv9gFq3UuaR2LFQDA87xAKVUB8BEAZ6N9nrNEdEZr/TcArLVOPG8aJ9jj8n3/pcHBwZ1btmx5519zmPl0vV5/Ie2V7fT09Nujo6Nus9kcA4CtW7ce1lq/nUYu27a/Mzs7CyI6gMVX/u/CzJeZ+Ue2bcc9pb1aXc8lJZms18YLANE2wkOu694N4OFGo3E8DMMPAHiDiCaY+ZOb4YCsEEIIIYQQQgghhBBCCCGEEEIIIYQQQgghhEjYfwGO+b5dFNs4OgAAAABJRU5ErkJggg==);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}\n"] }]
1647
1758
  }], propDecorators: { mapEl: [{
1648
1759
  type: ViewChild,
@@ -1727,14 +1838,14 @@ class AXPMapBoxWidgetEditComponent extends AXPWidgetBase {
1727
1838
  }
1728
1839
  }
1729
1840
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1730
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetEditComponent, 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">
1731
- <div class="ax-h-full" #mapEl></div>
1841
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetEditComponent, 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">
1842
+ <div class="ax-h-full" #mapEl></div>
1732
1843
  </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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1733
1844
  }
1734
1845
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetEditComponent, decorators: [{
1735
1846
  type: Component,
1736
- args: [{ template: `<div class="ax-w-full ax-h-72">
1737
- <div class="ax-h-full" #mapEl></div>
1847
+ args: [{ template: `<div class="ax-w-full ax-h-72">
1848
+ <div class="ax-h-full" #mapEl></div>
1738
1849
  </div>`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule], 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}\n"] }]
1739
1850
  }], propDecorators: { mapEl: [{
1740
1851
  type: ViewChild,
@@ -1854,29 +1965,41 @@ class AXPNumberBoxWidgetViewComponent extends AXPWidgetBase {
1854
1965
  constructor() {
1855
1966
  super(...arguments);
1856
1967
  this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
1968
+ this.formatService = inject(AXFormatService);
1969
+ }
1970
+ getValue() {
1971
+ if (!isNumber(super.getValue()))
1972
+ return 'NAN';
1973
+ const value = Number(super.getValue());
1974
+ if (this.format?.name) {
1975
+ return this.formatService.format(value, this.format.name, this.format.options);
1976
+ }
1977
+ else {
1978
+ return value.toString();
1979
+ }
1857
1980
  }
1858
1981
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1859
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1860
- <div>
1861
- @if(multiple){ @for (item of internalValue(); track $index) {
1862
- <p>{{ item }}</p>
1863
- } }@else {
1864
- <p>{{ internalValue()[0] }}</p>
1865
- }
1866
- </div>
1982
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
1983
+ <div>
1984
+ @if(multiple){ @for (item of internalValue(); track $index) {
1985
+ <p>{{ item }}</p>
1986
+ } }@else {
1987
+ <p>{{ internalValue()[0] }}</p>
1988
+ }
1989
+ </div>
1867
1990
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1868
1991
  }
1869
1992
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, decorators: [{
1870
1993
  type: Component,
1871
1994
  args: [{
1872
- template: `
1873
- <div>
1874
- @if(multiple){ @for (item of internalValue(); track $index) {
1875
- <p>{{ item }}</p>
1876
- } }@else {
1877
- <p>{{ internalValue()[0] }}</p>
1878
- }
1879
- </div>
1995
+ template: `
1996
+ <div>
1997
+ @if(multiple){ @for (item of internalValue(); track $index) {
1998
+ <p>{{ item }}</p>
1999
+ } }@else {
2000
+ <p>{{ internalValue()[0] }}</p>
2001
+ }
2002
+ </div>
1880
2003
  `,
1881
2004
  standalone: true,
1882
2005
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -1931,77 +2054,77 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetBase {
1931
2054
  this.setValue(newValues);
1932
2055
  }
1933
2056
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1934
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", inputs: { validationRules: "validationRules", multiple: "multiple", disabled: "disabled" }, usesInheritance: true, ngImport: i0, template: `
1935
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
1936
- @for(number of internalValue(); track $index){
1937
- <ax-number-box
1938
- class="ax-col-span-12"
1939
- [decimals]="decimals"
1940
- [placeholder]="placeholder"
1941
- [ngModel]="number"
1942
- (onValueChanged)="handleValueChange($event, $index)"
1943
- [disabled]="disabled"
1944
- >
1945
- <ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
1946
- @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
1947
- <ax-suffix>
1948
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1949
- <ax-icon class="far fa-trash"> </ax-icon>
1950
- </ax-button>
1951
- </ax-suffix>
1952
- }
1953
- </ax-number-box>
1954
- } @if(multiple){
1955
- <ax-button
1956
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
1957
- look="twotone"
1958
- (onClick)="addItem()"
1959
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
1960
- >
1961
- <ax-prefix>
1962
- <ax-icon class="fa-solid fa-add"></ax-icon>
1963
- </ax-prefix>
1964
- </ax-button>
1965
- }
1966
- </div>
1967
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$2.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "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$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2057
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", inputs: { validationRules: "validationRules", multiple: "multiple", disabled: "disabled" }, usesInheritance: true, ngImport: i0, template: `
2058
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2059
+ @for(number of internalValue(); track $index){
2060
+ <ax-number-box
2061
+ class="ax-col-span-12"
2062
+ [decimals]="decimals"
2063
+ [placeholder]="placeholder"
2064
+ [ngModel]="number"
2065
+ (onValueChanged)="handleValueChange($event, $index)"
2066
+ [disabled]="disabled"
2067
+ >
2068
+ <ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
2069
+ @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
2070
+ <ax-suffix>
2071
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
2072
+ <ax-icon class="far fa-trash"> </ax-icon>
2073
+ </ax-button>
2074
+ </ax-suffix>
2075
+ }
2076
+ </ax-number-box>
2077
+ } @if(multiple){
2078
+ <ax-button
2079
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2080
+ look="twotone"
2081
+ (onClick)="addItem()"
2082
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2083
+ >
2084
+ <ax-prefix>
2085
+ <ax-icon class="fa-solid fa-add"></ax-icon>
2086
+ </ax-prefix>
2087
+ </ax-button>
2088
+ }
2089
+ </div>
2090
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$2.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "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: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1968
2091
  }
1969
2092
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, decorators: [{
1970
2093
  type: Component,
1971
2094
  args: [{
1972
- template: `
1973
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
1974
- @for(number of internalValue(); track $index){
1975
- <ax-number-box
1976
- class="ax-col-span-12"
1977
- [decimals]="decimals"
1978
- [placeholder]="placeholder"
1979
- [ngModel]="number"
1980
- (onValueChanged)="handleValueChange($event, $index)"
1981
- [disabled]="disabled"
1982
- >
1983
- <ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
1984
- @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
1985
- <ax-suffix>
1986
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
1987
- <ax-icon class="far fa-trash"> </ax-icon>
1988
- </ax-button>
1989
- </ax-suffix>
1990
- }
1991
- </ax-number-box>
1992
- } @if(multiple){
1993
- <ax-button
1994
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
1995
- look="twotone"
1996
- (onClick)="addItem()"
1997
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
1998
- >
1999
- <ax-prefix>
2000
- <ax-icon class="fa-solid fa-add"></ax-icon>
2001
- </ax-prefix>
2002
- </ax-button>
2003
- }
2004
- </div>
2095
+ template: `
2096
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2097
+ @for(number of internalValue(); track $index){
2098
+ <ax-number-box
2099
+ class="ax-col-span-12"
2100
+ [decimals]="decimals"
2101
+ [placeholder]="placeholder"
2102
+ [ngModel]="number"
2103
+ (onValueChanged)="handleValueChange($event, $index)"
2104
+ [disabled]="disabled"
2105
+ >
2106
+ <ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
2107
+ @if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
2108
+ <ax-suffix>
2109
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
2110
+ <ax-icon class="far fa-trash"> </ax-icon>
2111
+ </ax-button>
2112
+ </ax-suffix>
2113
+ }
2114
+ </ax-number-box>
2115
+ } @if(multiple){
2116
+ <ax-button
2117
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2118
+ look="twotone"
2119
+ (onClick)="addItem()"
2120
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2121
+ >
2122
+ <ax-prefix>
2123
+ <ax-icon class="fa-solid fa-add"></ax-icon>
2124
+ </ax-prefix>
2125
+ </ax-button>
2126
+ }
2127
+ </div>
2005
2128
  `,
2006
2129
  standalone: true,
2007
2130
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2035,18 +2158,35 @@ var numberBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
2035
2158
  AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent
2036
2159
  });
2037
2160
 
2038
- class AXPNumberBoxWidgetColumnComponent extends AXPWidgetBase {
2161
+ class AXPNumberBoxWidgetColumnComponent extends AXPColumnWidgetBase {
2162
+ constructor() {
2163
+ super(...arguments);
2164
+ this.formatService = inject(AXFormatService);
2165
+ this.value = computed(() => {
2166
+ if (!isNumber(this.rawValue))
2167
+ return 'NAN';
2168
+ const value = Number(this.rawValue);
2169
+ if (this.options?.['format'] && this.options?.['format']['name']) {
2170
+ const { name, options } = this.options?.['format'];
2171
+ return this.formatService.format(value, name, options);
2172
+ }
2173
+ else {
2174
+ return value.toString();
2175
+ }
2176
+ });
2177
+ }
2039
2178
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2040
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2179
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetColumnComponent, isStandalone: true, selector: "axp-number-box-widget-column", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{value()}}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2041
2180
  }
2042
2181
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetColumnComponent, decorators: [{
2043
2182
  type: Component,
2044
2183
  args: [{
2045
- template: ``,
2184
+ selector: 'axp-number-box-widget-column',
2185
+ template: `{{value()}}`,
2046
2186
  standalone: true,
2047
2187
  changeDetection: ChangeDetectionStrategy.OnPush,
2048
2188
  imports: [CommonModule],
2049
- inputs: []
2189
+ inputs: ['rawValue']
2050
2190
  }]
2051
2191
  }] });
2052
2192
 
@@ -2109,6 +2249,9 @@ const AXPNumberBoxWidget = {
2109
2249
  },
2110
2250
  column: {
2111
2251
  component: () => Promise.resolve().then(function () { return numberBoxWidgetColumn_component; }).then((c) => c.AXPNumberBoxWidgetColumnComponent),
2252
+ defaultOptions: {
2253
+ width: '100px'
2254
+ },
2112
2255
  },
2113
2256
  print: {
2114
2257
  component: () => Promise.resolve().then(function () { return numberBoxWidgetPrint_component; }).then((c) => c.AXPNumberBoxWidgetPrintComponent),
@@ -2130,55 +2273,55 @@ class AXPPasswordBoxWidgetViewComponent extends AXPWidgetBase {
2130
2273
  this.showPass = !this.showPass;
2131
2274
  }
2132
2275
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2133
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2134
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2135
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
2136
- <span>{{ showPass ? internalValue() : '*******' }}</span>
2137
- @if(hasEye){
2138
- <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
2139
- @if(!showPass){
2140
- <i class="fa-solid fa-eye"></i>
2141
- }@else {
2142
- <i class="fa-solid fa-eye-slash"></i>
2143
- }
2144
- </span>
2145
- } @if(hasCopy && hasEye){
2146
- <span
2147
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2148
- (click)="clipboard.copy('Password', internalValue())"
2149
- >
2150
- <i class="fa-solid fa-copy "></i>
2151
- </span>
2152
- }
2153
- </div>
2154
- </div>
2276
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2277
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2278
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
2279
+ <span>{{ showPass ? internalValue() : '*******' }}</span>
2280
+ @if(hasEye){
2281
+ <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
2282
+ @if(!showPass){
2283
+ <i class="fa-solid fa-eye"></i>
2284
+ }@else {
2285
+ <i class="fa-solid fa-eye-slash"></i>
2286
+ }
2287
+ </span>
2288
+ } @if(hasCopy && hasEye){
2289
+ <span
2290
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2291
+ (click)="clipboard.copy('Password', internalValue())"
2292
+ >
2293
+ <i class="fa-solid fa-copy "></i>
2294
+ </span>
2295
+ }
2296
+ </div>
2297
+ </div>
2155
2298
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2156
2299
  }
2157
2300
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetViewComponent, decorators: [{
2158
2301
  type: Component,
2159
2302
  args: [{
2160
- template: `
2161
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2162
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
2163
- <span>{{ showPass ? internalValue() : '*******' }}</span>
2164
- @if(hasEye){
2165
- <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
2166
- @if(!showPass){
2167
- <i class="fa-solid fa-eye"></i>
2168
- }@else {
2169
- <i class="fa-solid fa-eye-slash"></i>
2170
- }
2171
- </span>
2172
- } @if(hasCopy && hasEye){
2173
- <span
2174
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2175
- (click)="clipboard.copy('Password', internalValue())"
2176
- >
2177
- <i class="fa-solid fa-copy "></i>
2178
- </span>
2179
- }
2180
- </div>
2181
- </div>
2303
+ template: `
2304
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2305
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
2306
+ <span>{{ showPass ? internalValue() : '*******' }}</span>
2307
+ @if(hasEye){
2308
+ <span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
2309
+ @if(!showPass){
2310
+ <i class="fa-solid fa-eye"></i>
2311
+ }@else {
2312
+ <i class="fa-solid fa-eye-slash"></i>
2313
+ }
2314
+ </span>
2315
+ } @if(hasCopy && hasEye){
2316
+ <span
2317
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2318
+ (click)="clipboard.copy('Password', internalValue())"
2319
+ >
2320
+ <i class="fa-solid fa-copy "></i>
2321
+ </span>
2322
+ }
2323
+ </div>
2324
+ </div>
2182
2325
  `,
2183
2326
  standalone: true,
2184
2327
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2199,19 +2342,19 @@ class AXPPasswordBoxWidgetEditComponent extends AXPWidgetBase {
2199
2342
  }
2200
2343
  }
2201
2344
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2202
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2203
- <ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
2204
- <ax-validation-rule rule="required"></ax-validation-rule>
2205
- </ax-password-box>
2206
- `, 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: AXPasswordBoxModule }, { kind: "component", type: i2$4.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: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2345
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2346
+ <ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
2347
+ <ax-validation-rule rule="required"></ax-validation-rule>
2348
+ </ax-password-box>
2349
+ `, 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: AXPasswordBoxModule }, { kind: "component", type: i2$5.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: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2207
2350
  }
2208
2351
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
2209
2352
  type: Component,
2210
2353
  args: [{
2211
- template: `
2212
- <ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
2213
- <ax-validation-rule rule="required"></ax-validation-rule>
2214
- </ax-password-box>
2354
+ template: `
2355
+ <ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
2356
+ <ax-validation-rule rule="required"></ax-validation-rule>
2357
+ </ax-password-box>
2215
2358
  `,
2216
2359
  standalone: true,
2217
2360
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2353,79 +2496,79 @@ class AXPPhoneBoxWidgetViewComponent extends AXPWidgetBase {
2353
2496
  };
2354
2497
  }
2355
2498
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2356
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2357
- <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
2358
- <ng-container *ngIf="multiple">
2359
- @for(item of internalValue();track item?.value) {
2360
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
2361
- }
2362
- </ng-container>
2363
-
2364
- <ng-container *ngIf="!multiple">
2365
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
2366
- </ng-container>
2367
-
2368
- <ng-template #itemTemplate let-item="data">
2369
- <ng-container *ngIf="item">
2370
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2371
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
2372
- <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
2373
- <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
2374
- </div>
2375
- <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
2376
- <span
2377
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2378
- (click)="clipboard.copy('Phone Number', item.value)"
2379
- >
2380
- <i class="fa-solid fa-copy "></i>
2381
- </span>
2382
- @if(hasLabel){
2383
- <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
2384
- }
2385
- </div>
2386
- </div>
2387
- </ng-container>
2388
- </ng-template>
2389
- </div>
2390
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.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 }); }
2499
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2500
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
2501
+ <ng-container *ngIf="multiple">
2502
+ @for(item of internalValue();track item?.value) {
2503
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
2504
+ }
2505
+ </ng-container>
2506
+
2507
+ <ng-container *ngIf="!multiple">
2508
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
2509
+ </ng-container>
2510
+
2511
+ <ng-template #itemTemplate let-item="data">
2512
+ <ng-container *ngIf="item">
2513
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2514
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
2515
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
2516
+ <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
2517
+ </div>
2518
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
2519
+ <span
2520
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2521
+ (click)="clipboard.copy('Phone Number', item.value)"
2522
+ >
2523
+ <i class="fa-solid fa-copy "></i>
2524
+ </span>
2525
+ @if(hasLabel){
2526
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
2527
+ }
2528
+ </div>
2529
+ </div>
2530
+ </ng-container>
2531
+ </ng-template>
2532
+ </div>
2533
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2391
2534
  }
2392
2535
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
2393
2536
  type: Component,
2394
2537
  args: [{
2395
- template: `
2396
- <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
2397
- <ng-container *ngIf="multiple">
2398
- @for(item of internalValue();track item?.value) {
2399
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
2400
- }
2401
- </ng-container>
2402
-
2403
- <ng-container *ngIf="!multiple">
2404
- <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
2405
- </ng-container>
2406
-
2407
- <ng-template #itemTemplate let-item="data">
2408
- <ng-container *ngIf="item">
2409
- <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2410
- <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
2411
- <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
2412
- <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
2413
- </div>
2414
- <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
2415
- <span
2416
- class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2417
- (click)="clipboard.copy('Phone Number', item.value)"
2418
- >
2419
- <i class="fa-solid fa-copy "></i>
2420
- </span>
2421
- @if(hasLabel){
2422
- <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
2423
- }
2424
- </div>
2425
- </div>
2426
- </ng-container>
2427
- </ng-template>
2428
- </div>
2538
+ template: `
2539
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
2540
+ <ng-container *ngIf="multiple">
2541
+ @for(item of internalValue();track item?.value) {
2542
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
2543
+ }
2544
+ </ng-container>
2545
+
2546
+ <ng-container *ngIf="!multiple">
2547
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
2548
+ </ng-container>
2549
+
2550
+ <ng-template #itemTemplate let-item="data">
2551
+ <ng-container *ngIf="item">
2552
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
2553
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
2554
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
2555
+ <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
2556
+ </div>
2557
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
2558
+ <span
2559
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
2560
+ (click)="clipboard.copy('Phone Number', item.value)"
2561
+ >
2562
+ <i class="fa-solid fa-copy "></i>
2563
+ </span>
2564
+ @if(hasLabel){
2565
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
2566
+ }
2567
+ </div>
2568
+ </div>
2569
+ </ng-container>
2570
+ </ng-template>
2571
+ </div>
2429
2572
  `,
2430
2573
  standalone: true,
2431
2574
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2447,7 +2590,21 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetBase {
2447
2590
  this.clearButton = true;
2448
2591
  this.hasLabel = true;
2449
2592
  this.phoneLabels = ['Mobile', 'Home', 'Work', 'Other'];
2450
- this.internalValue = computed(() => this.getValue() ? (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]) : [{}]);
2593
+ this.internalValue = computed(() => this.getValueAsArrayOfObjects());
2594
+ this._validationRules = [];
2595
+ }
2596
+ get validationRules() {
2597
+ return this._validationRules;
2598
+ }
2599
+ set validationRules(v) {
2600
+ this._validationRules = v;
2601
+ }
2602
+ getValueAsArrayOfObjects() {
2603
+ const value = this.getValue();
2604
+ if (Array.isArray(value)) {
2605
+ return value.map((item) => (typeof item === 'object' ? item : { value: item }));
2606
+ }
2607
+ return typeof value === 'object' ? [value] : [{ value: value || '' }];
2451
2608
  }
2452
2609
  handleValueChange(e, selectedIndex) {
2453
2610
  if (e.isUserInteraction) {
@@ -2476,139 +2633,151 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetBase {
2476
2633
  this.setValue(newValues);
2477
2634
  }
2478
2635
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2479
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2480
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2481
- <ng-container *ngIf="multiple">
2482
- @for(item of internalValue();track $index) {
2483
- <ax-text-box
2484
- [ngModel]="item.value"
2485
- (onValueChanged)="handleValueChange($event, $index)"
2486
- type="text"
2487
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2488
- [class.lg:!ax-col-end-12]="!hasLabel"
2489
- >
2490
- </ax-text-box>
2491
- @if(hasLabel){
2492
- <ax-select-box
2493
- [dataSource]="phoneLabels"
2494
- [ngModel]="item.label"
2495
- (onValueChanged)="handleLabelChange($event, $index)"
2496
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
2497
- >
2498
- </ax-select-box>
2499
- }
2500
- <ax-button
2501
- look="twotone"
2502
- color="danger"
2503
- (onClick)="deleteItem($index)"
2504
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
2505
- >
2506
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
2507
- </ax-button>
2508
- }
2509
- </ng-container>
2510
- <ng-container *ngIf="!multiple">
2511
- <ax-text-box
2512
- [ngModel]="internalValue()[0].value"
2513
- (onValueChanged)="handleValueChange($event, 0)"
2514
- type="text"
2515
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2516
- [class.lg:!ax-col-end-13]="!hasLabel"
2517
- >
2518
- </ax-text-box>
2519
- @if(hasLabel){
2520
- <ax-select-box
2521
- [dataSource]="phoneLabels"
2522
- [ngModel]="internalValue()[0].label"
2523
- (onValueChanged)="handleLabelChange($event, 0)"
2524
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
2525
- >
2526
- </ax-select-box>
2527
- }
2528
- </ng-container>
2529
- <ax-button
2530
- *ngIf="multiple"
2531
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2532
- look="twotone"
2533
- (onClick)="addItem()"
2534
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2535
- >
2536
- <ax-prefix>
2537
- <ax-icon class="fa-solid fa-add"></ax-icon>
2538
- </ax-prefix>
2539
- </ax-button>
2540
- </div>
2541
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2636
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2637
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2638
+ <ng-container *ngIf="multiple">
2639
+ @for(item of internalValue();track $index) {
2640
+ <ax-text-box
2641
+ [ngModel]="item.value"
2642
+ (onValueChanged)="handleValueChange($event, $index)"
2643
+ type="text"
2644
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2645
+ [class.lg:!ax-col-end-12]="!hasLabel"
2646
+ >
2647
+ @for (validation of validationRules; track $index) {
2648
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2649
+ }
2650
+ </ax-text-box>
2651
+ @if(hasLabel){
2652
+ <ax-select-box
2653
+ [dataSource]="phoneLabels"
2654
+ [ngModel]="item.label"
2655
+ (onValueChanged)="handleLabelChange($event, $index)"
2656
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
2657
+ >
2658
+ </ax-select-box>
2659
+ }
2660
+ <ax-button
2661
+ look="twotone"
2662
+ color="danger"
2663
+ (onClick)="deleteItem($index)"
2664
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
2665
+ >
2666
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
2667
+ </ax-button>
2668
+ }
2669
+ </ng-container>
2670
+ <ng-container *ngIf="!multiple">
2671
+ <ax-text-box
2672
+ [ngModel]="internalValue()[0].value"
2673
+ (onValueChanged)="handleValueChange($event, 0)"
2674
+ type="text"
2675
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2676
+ [class.lg:!ax-col-end-13]="!hasLabel"
2677
+ >
2678
+ @for (validation of validationRules; track $index) {
2679
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2680
+ }
2681
+ </ax-text-box>
2682
+ @if(hasLabel){
2683
+ <ax-select-box
2684
+ [dataSource]="phoneLabels"
2685
+ [ngModel]="internalValue()[0].label"
2686
+ (onValueChanged)="handleLabelChange($event, 0)"
2687
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
2688
+ >
2689
+ </ax-select-box>
2690
+ }
2691
+ </ng-container>
2692
+ <ax-button
2693
+ *ngIf="multiple"
2694
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2695
+ look="twotone"
2696
+ (onClick)="addItem()"
2697
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2698
+ >
2699
+ <ax-prefix>
2700
+ <ax-icon class="fa-solid fa-add"></ax-icon>
2701
+ </ax-prefix>
2702
+ </ax-button>
2703
+ </div>
2704
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.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: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { 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: i6.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "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 }); }
2542
2705
  }
2543
2706
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
2544
2707
  type: Component,
2545
2708
  args: [{
2546
- template: `
2547
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2548
- <ng-container *ngIf="multiple">
2549
- @for(item of internalValue();track $index) {
2550
- <ax-text-box
2551
- [ngModel]="item.value"
2552
- (onValueChanged)="handleValueChange($event, $index)"
2553
- type="text"
2554
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2555
- [class.lg:!ax-col-end-12]="!hasLabel"
2556
- >
2557
- </ax-text-box>
2558
- @if(hasLabel){
2559
- <ax-select-box
2560
- [dataSource]="phoneLabels"
2561
- [ngModel]="item.label"
2562
- (onValueChanged)="handleLabelChange($event, $index)"
2563
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
2564
- >
2565
- </ax-select-box>
2566
- }
2567
- <ax-button
2568
- look="twotone"
2569
- color="danger"
2570
- (onClick)="deleteItem($index)"
2571
- class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
2572
- >
2573
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
2574
- </ax-button>
2575
- }
2576
- </ng-container>
2577
- <ng-container *ngIf="!multiple">
2578
- <ax-text-box
2579
- [ngModel]="internalValue()[0].value"
2580
- (onValueChanged)="handleValueChange($event, 0)"
2581
- type="text"
2582
- class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2583
- [class.lg:!ax-col-end-13]="!hasLabel"
2584
- >
2585
- </ax-text-box>
2586
- @if(hasLabel){
2587
- <ax-select-box
2588
- [dataSource]="phoneLabels"
2589
- [ngModel]="internalValue()[0].label"
2590
- (onValueChanged)="handleLabelChange($event, 0)"
2591
- class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
2592
- >
2593
- </ax-select-box>
2594
- }
2595
- </ng-container>
2596
- <ax-button
2597
- *ngIf="multiple"
2598
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2599
- look="twotone"
2600
- (onClick)="addItem()"
2601
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2602
- >
2603
- <ax-prefix>
2604
- <ax-icon class="fa-solid fa-add"></ax-icon>
2605
- </ax-prefix>
2606
- </ax-button>
2607
- </div>
2709
+ template: `
2710
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
2711
+ <ng-container *ngIf="multiple">
2712
+ @for(item of internalValue();track $index) {
2713
+ <ax-text-box
2714
+ [ngModel]="item.value"
2715
+ (onValueChanged)="handleValueChange($event, $index)"
2716
+ type="text"
2717
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2718
+ [class.lg:!ax-col-end-12]="!hasLabel"
2719
+ >
2720
+ @for (validation of validationRules; track $index) {
2721
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2722
+ }
2723
+ </ax-text-box>
2724
+ @if(hasLabel){
2725
+ <ax-select-box
2726
+ [dataSource]="phoneLabels"
2727
+ [ngModel]="item.label"
2728
+ (onValueChanged)="handleLabelChange($event, $index)"
2729
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
2730
+ >
2731
+ </ax-select-box>
2732
+ }
2733
+ <ax-button
2734
+ look="twotone"
2735
+ color="danger"
2736
+ (onClick)="deleteItem($index)"
2737
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
2738
+ >
2739
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
2740
+ </ax-button>
2741
+ }
2742
+ </ng-container>
2743
+ <ng-container *ngIf="!multiple">
2744
+ <ax-text-box
2745
+ [ngModel]="internalValue()[0].value"
2746
+ (onValueChanged)="handleValueChange($event, 0)"
2747
+ type="text"
2748
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
2749
+ [class.lg:!ax-col-end-13]="!hasLabel"
2750
+ >
2751
+ @for (validation of validationRules; track $index) {
2752
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2753
+ }
2754
+ </ax-text-box>
2755
+ @if(hasLabel){
2756
+ <ax-select-box
2757
+ [dataSource]="phoneLabels"
2758
+ [ngModel]="internalValue()[0].label"
2759
+ (onValueChanged)="handleLabelChange($event, 0)"
2760
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
2761
+ >
2762
+ </ax-select-box>
2763
+ }
2764
+ </ng-container>
2765
+ <ax-button
2766
+ *ngIf="multiple"
2767
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
2768
+ look="twotone"
2769
+ (onClick)="addItem()"
2770
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
2771
+ >
2772
+ <ax-prefix>
2773
+ <ax-icon class="fa-solid fa-add"></ax-icon>
2774
+ </ax-prefix>
2775
+ </ax-button>
2776
+ </div>
2608
2777
  `,
2609
2778
  standalone: true,
2610
2779
  changeDetection: ChangeDetectionStrategy.OnPush,
2611
- imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule],
2780
+ imports: [CommonModule, FormsModule, AXFormModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule, AXValidationModule],
2612
2781
  inputs: [],
2613
2782
  }]
2614
2783
  }] });
@@ -2638,18 +2807,65 @@ var phoneBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
2638
2807
  AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent
2639
2808
  });
2640
2809
 
2641
- class AXPPhoneBoxWidgetColumnComponent extends AXPWidgetBase {
2810
+ class AXPPhoneBoxWidgetColumnComponent extends AXPColumnWidgetBase {
2811
+ constructor() {
2812
+ super(...arguments);
2813
+ this.list = computed(() => Array.isArray(this.rawValue) ? this.rawValue.map((c) => this.extractItem(c)) : [this.extractItem(this.rawValue)]);
2814
+ this.text = computed(() => this.list()
2815
+ .map((item) => item.value)
2816
+ .join('\n'));
2817
+ }
2818
+ dot3(text) {
2819
+ console.log(text);
2820
+ if (this.multiple)
2821
+ return text.split('\n')[0] + '...';
2822
+ else
2823
+ return text.split('\n')[0];
2824
+ }
2825
+ extractItem(item) {
2826
+ return typeof item == 'object'
2827
+ ? {
2828
+ value: item.value ?? '-',
2829
+ type: item.type ?? 'primary',
2830
+ label: item.label,
2831
+ }
2832
+ : {
2833
+ value: item,
2834
+ type: 'primary',
2835
+ label: null,
2836
+ };
2837
+ }
2642
2838
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2643
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2839
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `<div>
2840
+ @if(multiple && list.length>1){
2841
+ <div [title]="text()">{{ dot3(text()) }}</div>
2842
+ }@else {
2843
+ <div>
2844
+ @if(list() && list().length){
2845
+ {{ list()[0].value }}
2846
+ }@else { - }
2847
+ </div>
2848
+ }
2849
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2644
2850
  }
2645
2851
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetColumnComponent, decorators: [{
2646
2852
  type: Component,
2647
2853
  args: [{
2648
- template: ``,
2854
+ template: `<div>
2855
+ @if(multiple && list.length>1){
2856
+ <div [title]="text()">{{ dot3(text()) }}</div>
2857
+ }@else {
2858
+ <div>
2859
+ @if(list() && list().length){
2860
+ {{ list()[0].value }}
2861
+ }@else { - }
2862
+ </div>
2863
+ }
2864
+ </div>`,
2649
2865
  standalone: true,
2650
2866
  changeDetection: ChangeDetectionStrategy.OnPush,
2651
2867
  imports: [CommonModule],
2652
- inputs: []
2868
+ inputs: ['rawValue'],
2653
2869
  }]
2654
2870
  }] });
2655
2871
 
@@ -2729,19 +2945,19 @@ class AXPRichTextWidgetViewComponent extends AXPWidgetBase {
2729
2945
  this.innerValue = computed(() => this.getValue());
2730
2946
  }
2731
2947
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2732
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2733
- <div class="ax-border ax-p-3 ax-rounded-lg">
2734
- <div [innerHTML]="innerValue()"></div>
2735
- </div>
2948
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2949
+ <div class="ax-border ax-p-3 ax-rounded-lg">
2950
+ <div [innerHTML]="innerValue()"></div>
2951
+ </div>
2736
2952
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2737
2953
  }
2738
2954
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetViewComponent, decorators: [{
2739
2955
  type: Component,
2740
2956
  args: [{
2741
- template: `
2742
- <div class="ax-border ax-p-3 ax-rounded-lg">
2743
- <div [innerHTML]="innerValue()"></div>
2744
- </div>
2957
+ template: `
2958
+ <div class="ax-border ax-p-3 ax-rounded-lg">
2959
+ <div [innerHTML]="innerValue()"></div>
2960
+ </div>
2745
2961
  `,
2746
2962
  standalone: true,
2747
2963
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2796,18 +3012,18 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetBase {
2796
3012
  });
2797
3013
  }
2798
3014
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2799
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "editorEl", first: true, predicate: ["editor"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
2800
- <div class="ax-h-max">
2801
- <div #editor></div>
2802
- </div>
3015
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "editorEl", first: true, predicate: ["editor"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
3016
+ <div class="ax-h-max">
3017
+ <div #editor></div>
3018
+ </div>
2803
3019
  `, isInline: true, styles: [".ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:\"\\2022\"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:\"\\2611\"}.ql-editor ul[data-checked=false]>li:before{content:\"\\2610\"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) \". \"}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) \". \"}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) \". \"}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) \". \"}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) \". \"}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) \". \"}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) \". \"}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) \". \"}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) \". \"}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) \". \"}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:\"\";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer: coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:\"\";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=\"\"]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{content:\"Heading 1\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{content:\"Heading 2\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{content:\"Heading 3\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{content:\"Heading 4\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{content:\"Heading 5\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{content:\"Heading 6\"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:\"Sans Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:\"Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:\"Monospace\"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:\"Small\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:\"Large\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:\"Huge\"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0px}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:\"Visit URL:\";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:\"Edit\";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:\"Remove\";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0px;content:\"Save\";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:\"Enter link:\"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:\"Enter formula:\"}.ql-snow .ql-tooltip[data-mode=video]:before{content:\"Enter video:\"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-editor{min-height:100px!important}\n/*! Bundled license information:\n\nquill/dist/quill.snow.css:\n (*!\n * Quill Editor v1.3.7\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n *)\n*/\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
2804
3020
  }
2805
3021
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetEditComponent, decorators: [{
2806
3022
  type: Component,
2807
- args: [{ template: `
2808
- <div class="ax-h-max">
2809
- <div #editor></div>
2810
- </div>
3023
+ args: [{ template: `
3024
+ <div class="ax-h-max">
3025
+ <div #editor></div>
3026
+ </div>
2811
3027
  `, standalone: true, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule], inputs: [], styles: [".ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:\"\\2022\"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:\"\\2611\"}.ql-editor ul[data-checked=false]>li:before{content:\"\\2610\"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) \". \"}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) \". \"}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) \". \"}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) \". \"}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) \". \"}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) \". \"}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) \". \"}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) \". \"}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) \". \"}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) \". \"}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:\"\";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer: coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:\"\";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=\"\"]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{content:\"Heading 1\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{content:\"Heading 2\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{content:\"Heading 3\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{content:\"Heading 4\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{content:\"Heading 5\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{content:\"Heading 6\"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:\"Sans Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:\"Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:\"Monospace\"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:\"Small\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:\"Large\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:\"Huge\"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0px}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:\"Visit URL:\";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:\"Edit\";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:\"Remove\";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0px;content:\"Save\";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:\"Enter link:\"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:\"Enter formula:\"}.ql-snow .ql-tooltip[data-mode=video]:before{content:\"Enter video:\"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-editor{min-height:100px!important}\n/*! Bundled license information:\n\nquill/dist/quill.snow.css:\n (*!\n * Quill Editor v1.3.7\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n *)\n*/\n"] }]
2812
3028
  }], propDecorators: { editorEl: [{
2813
3029
  type: ViewChild,
@@ -2944,27 +3160,33 @@ class AXPSelectBoxWidgetViewComponent extends AXPWidgetBase {
2944
3160
  };
2945
3161
  }
2946
3162
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2947
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
2948
- <div>
2949
- @if(multiple){ @for (item of internalValue(); track $index) {
2950
- <p>{{ item.text }}</p>
2951
- } }@else {
2952
- <p>{{ internalValue()[0].text }}</p>
2953
- }
2954
- </div>
3163
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3164
+ <div>
3165
+ @if(multiple)
3166
+ {
3167
+ @for (item of internalValue(); track $index) {
3168
+ <p>{{ item.text }}</p>
3169
+ }
3170
+ }@else {
3171
+ <p>{{ internalValue()[0].text }}</p>
3172
+ }
3173
+ </div>
2955
3174
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2956
3175
  }
2957
3176
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, decorators: [{
2958
3177
  type: Component,
2959
3178
  args: [{
2960
- template: `
2961
- <div>
2962
- @if(multiple){ @for (item of internalValue(); track $index) {
2963
- <p>{{ item.text }}</p>
2964
- } }@else {
2965
- <p>{{ internalValue()[0].text }}</p>
2966
- }
2967
- </div>
3179
+ template: `
3180
+ <div>
3181
+ @if(multiple)
3182
+ {
3183
+ @for (item of internalValue(); track $index) {
3184
+ <p>{{ item.text }}</p>
3185
+ }
3186
+ }@else {
3187
+ <p>{{ internalValue()[0].text }}</p>
3188
+ }
3189
+ </div>
2968
3190
  `,
2969
3191
  standalone: true,
2970
3192
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -2999,36 +3221,36 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetBase {
2999
3221
  this.selectbox?.refresh();
3000
3222
  }
3001
3223
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3002
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", inputs: { dataSource: "dataSource", disabled: "disabled", valueField: "valueField", textField: "textField" }, viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
3003
- <ax-select-box
3004
- #dd
3005
- [dataSource]="dataSource"
3006
- [disabled]="disabled"
3007
- [valueField]="valueField"
3008
- [textField]="textField"
3009
- [ngModel]="getValue()"
3010
- (onValueChanged)="handleValueChange($event);"
3011
- >
3012
- <ax-clear-button></ax-clear-button>
3013
- </ax-select-box>
3014
- `, 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: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "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$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3224
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", inputs: { dataSource: "dataSource", disabled: "disabled", valueField: "valueField", textField: "textField" }, viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
3225
+ <ax-select-box
3226
+ #dd
3227
+ [dataSource]="dataSource"
3228
+ [disabled]="disabled"
3229
+ [valueField]="valueField"
3230
+ [textField]="textField"
3231
+ [ngModel]="getValue()"
3232
+ (onValueChanged)="handleValueChange($event);"
3233
+ >
3234
+ <ax-clear-button></ax-clear-button>
3235
+ </ax-select-box>
3236
+ `, 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: i6.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "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 }); }
3015
3237
  }
3016
3238
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
3017
3239
  type: Component,
3018
3240
  args: [{
3019
3241
  selector: "axp-select-box-widget-edit",
3020
- template: `
3021
- <ax-select-box
3022
- #dd
3023
- [dataSource]="dataSource"
3024
- [disabled]="disabled"
3025
- [valueField]="valueField"
3026
- [textField]="textField"
3027
- [ngModel]="getValue()"
3028
- (onValueChanged)="handleValueChange($event);"
3029
- >
3030
- <ax-clear-button></ax-clear-button>
3031
- </ax-select-box>
3242
+ template: `
3243
+ <ax-select-box
3244
+ #dd
3245
+ [dataSource]="dataSource"
3246
+ [disabled]="disabled"
3247
+ [valueField]="valueField"
3248
+ [textField]="textField"
3249
+ [ngModel]="getValue()"
3250
+ (onValueChanged)="handleValueChange($event);"
3251
+ >
3252
+ <ax-clear-button></ax-clear-button>
3253
+ </ax-select-box>
3032
3254
  `,
3033
3255
  standalone: true,
3034
3256
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3073,9 +3295,9 @@ var selectBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
3073
3295
  AXPSelectBoxWidgetFilterComponent: AXPSelectBoxWidgetFilterComponent
3074
3296
  });
3075
3297
 
3076
- class AXPSelectBoxWidgetColumnComponent extends AXPWidgetBase {
3298
+ class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetBase {
3077
3299
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3078
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3300
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3079
3301
  }
3080
3302
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, decorators: [{
3081
3303
  type: Component,
@@ -3084,7 +3306,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImpor
3084
3306
  standalone: true,
3085
3307
  changeDetection: ChangeDetectionStrategy.OnPush,
3086
3308
  imports: [CommonModule],
3087
- inputs: []
3309
+ inputs: ['rawValue']
3088
3310
  }]
3089
3311
  }] });
3090
3312
 
@@ -3158,17 +3380,37 @@ const AXPSelectBoxWidget = {
3158
3380
  };
3159
3381
 
3160
3382
  class AXPSelectionListWidgetViewComponent extends AXPWidgetBase {
3383
+ constructor() {
3384
+ super(...arguments);
3385
+ this.internalValue = computed(() => this.updateValue());
3386
+ }
3387
+ updateValue() {
3388
+ return this.items.filter((item) => {
3389
+ if (Array.isArray(this.getValue()))
3390
+ return this.getValue().includes(item[this.valueField]);
3391
+ else
3392
+ return this.getValue() == item[this.valueField];
3393
+ });
3394
+ }
3161
3395
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3162
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3396
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", inputs: { items: "items", valueField: "valueField", textField: "textField", direction: "direction" }, usesInheritance: true, ngImport: i0, template: `
3397
+ @for (item of internalValue(); track $index) {
3398
+ <ax-badge [class]="'ax-ms-1'" [look]="'twotone'" [text]="item[this.textField]" color="primary"></ax-badge>
3399
+ }
3400
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3163
3401
  }
3164
3402
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetViewComponent, decorators: [{
3165
3403
  type: Component,
3166
3404
  args: [{
3167
- template: ``,
3405
+ template: `
3406
+ @for (item of internalValue(); track $index) {
3407
+ <ax-badge [class]="'ax-ms-1'" [look]="'twotone'" [text]="item[this.textField]" color="primary"></ax-badge>
3408
+ }
3409
+ `,
3168
3410
  standalone: true,
3169
3411
  changeDetection: ChangeDetectionStrategy.OnPush,
3170
- imports: [CommonModule],
3171
- inputs: []
3412
+ imports: [AXBadgeModule],
3413
+ inputs: ['items', 'valueField', 'textField', 'direction'],
3172
3414
  }]
3173
3415
  }] });
3174
3416
 
@@ -3184,41 +3426,41 @@ class AXPSelectionListWidgetEditComponent extends AXPWidgetBase {
3184
3426
  }
3185
3427
  }
3186
3428
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3187
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3188
- <ax-selection-list
3189
- class="ax-w-max"
3190
- [valueField]="valueField"
3191
- [textField]="textField"
3192
- [ngModel]="this.getValue()"
3193
- (onValueChanged)="handleValueChange($event)"
3194
- [items]="items"
3195
- [multiple]="multiple"
3196
- [direction]="direction"
3197
- >
3198
- <!-- @for(vl of validations;track $index) {
3199
- <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
3200
- } -->
3201
- </ax-selection-list>
3202
- `, 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$5.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3429
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3430
+ <ax-selection-list
3431
+ class="ax-w-max"
3432
+ [valueField]="valueField"
3433
+ [textField]="textField"
3434
+ [ngModel]="this.getValue()"
3435
+ (onValueChanged)="handleValueChange($event)"
3436
+ [items]="items"
3437
+ [multiple]="multiple"
3438
+ [direction]="direction"
3439
+ >
3440
+ <!-- @for(vl of validations;track $index) {
3441
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
3442
+ } -->
3443
+ </ax-selection-list>
3444
+ `, 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$6.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3203
3445
  }
3204
3446
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
3205
3447
  type: Component,
3206
3448
  args: [{
3207
- template: `
3208
- <ax-selection-list
3209
- class="ax-w-max"
3210
- [valueField]="valueField"
3211
- [textField]="textField"
3212
- [ngModel]="this.getValue()"
3213
- (onValueChanged)="handleValueChange($event)"
3214
- [items]="items"
3215
- [multiple]="multiple"
3216
- [direction]="direction"
3217
- >
3218
- <!-- @for(vl of validations;track $index) {
3219
- <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
3220
- } -->
3221
- </ax-selection-list>
3449
+ template: `
3450
+ <ax-selection-list
3451
+ class="ax-w-max"
3452
+ [valueField]="valueField"
3453
+ [textField]="textField"
3454
+ [ngModel]="this.getValue()"
3455
+ (onValueChanged)="handleValueChange($event)"
3456
+ [items]="items"
3457
+ [multiple]="multiple"
3458
+ [direction]="direction"
3459
+ >
3460
+ <!-- @for(vl of validations;track $index) {
3461
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
3462
+ } -->
3463
+ </ax-selection-list>
3222
3464
  `,
3223
3465
  standalone: true,
3224
3466
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3252,18 +3494,38 @@ var selectionListWidgetFilter_component = /*#__PURE__*/Object.freeze({
3252
3494
  AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent
3253
3495
  });
3254
3496
 
3255
- class AXPSelectionListWidgetColumnComponent extends AXPWidgetBase {
3497
+ class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetBase {
3498
+ constructor() {
3499
+ super(...arguments);
3500
+ this.selectedItemIds = computed(() => this.rawValue);
3501
+ this.selectedItems = computed(() => this.items.filter((i) => {
3502
+ return this.selectedItemIds().includes(i[this.valueField]);
3503
+ }));
3504
+ this.firstItem = computed(() => this.selectedItems()[0]);
3505
+ }
3256
3506
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3257
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3507
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSelectionListWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: ` <div class="ax-flex ax-gap-2">
3508
+ @if(multiple){ @for (item of selectedItems(); track $index) {
3509
+ <ax-badge [look]="'twotone'" [text]="item[this.textField]" color="primary"></ax-badge>
3510
+ } }@else {
3511
+ <ax-badge [look]="'twotone'" [text]="firstItem()[this.textField]" color="primary"></ax-badge>
3512
+ }
3513
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3258
3514
  }
3259
3515
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, decorators: [{
3260
3516
  type: Component,
3261
3517
  args: [{
3262
- template: ``,
3518
+ template: ` <div class="ax-flex ax-gap-2">
3519
+ @if(multiple){ @for (item of selectedItems(); track $index) {
3520
+ <ax-badge [look]="'twotone'" [text]="item[this.textField]" color="primary"></ax-badge>
3521
+ } }@else {
3522
+ <ax-badge [look]="'twotone'" [text]="firstItem()[this.textField]" color="primary"></ax-badge>
3523
+ }
3524
+ </div>`,
3263
3525
  standalone: true,
3264
3526
  changeDetection: ChangeDetectionStrategy.OnPush,
3265
- imports: [CommonModule],
3266
- inputs: []
3527
+ imports: [CommonModule, AXBadgeModule],
3528
+ inputs: ['rawValue'],
3267
3529
  }]
3268
3530
  }] });
3269
3531
 
@@ -3425,65 +3687,65 @@ class AXPSignatureWidgetEditComponent extends AXPWidgetBase {
3425
3687
  }
3426
3688
  }
3427
3689
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3428
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "padCanvas", first: true, predicate: ["padCanvas"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
3429
- <div class="ax-flex ax-gap-3">
3430
- @if(editMode()){
3431
- <canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
3432
- <div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
3433
- <ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
3434
- <ax-icon class="fas fa-download"></ax-icon>
3435
- </ax-button>
3436
- <ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
3437
- <ax-icon class="fas fa-rotate-left"></ax-icon>
3438
- </ax-button>
3439
- <ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
3440
- <ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
3441
- </ax-button>
3442
- </div>
3443
- }@else{
3444
- <div class="ax-border ax-rounded">
3445
- <ax-image [src]="this.getValue()">
3446
- <ax-overlay class="ax-flex ax-justify-center">
3447
- <ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
3448
- <ax-icon class="far fa-edit"> </ax-icon>
3449
- </ax-button>
3450
- </ax-overlay>
3451
- </ax-image>
3452
- </div>
3453
- }
3454
- </div>
3455
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3690
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "padCanvas", first: true, predicate: ["padCanvas"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
3691
+ <div class="ax-flex ax-gap-3">
3692
+ @if(editMode()){
3693
+ <canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
3694
+ <div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
3695
+ <ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
3696
+ <ax-icon class="fas fa-download"></ax-icon>
3697
+ </ax-button>
3698
+ <ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
3699
+ <ax-icon class="fas fa-rotate-left"></ax-icon>
3700
+ </ax-button>
3701
+ <ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
3702
+ <ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
3703
+ </ax-button>
3704
+ </div>
3705
+ }@else{
3706
+ <div class="ax-border ax-rounded">
3707
+ <ax-image [src]="this.getValue()">
3708
+ <ax-overlay class="ax-flex ax-justify-center">
3709
+ <ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
3710
+ <ax-icon class="far fa-edit"> </ax-icon>
3711
+ </ax-button>
3712
+ </ax-overlay>
3713
+ </ax-image>
3714
+ </div>
3715
+ }
3716
+ </div>
3717
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { 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 }); }
3456
3718
  }
3457
3719
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetEditComponent, decorators: [{
3458
3720
  type: Component,
3459
3721
  args: [{
3460
- template: `
3461
- <div class="ax-flex ax-gap-3">
3462
- @if(editMode()){
3463
- <canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
3464
- <div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
3465
- <ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
3466
- <ax-icon class="fas fa-download"></ax-icon>
3467
- </ax-button>
3468
- <ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
3469
- <ax-icon class="fas fa-rotate-left"></ax-icon>
3470
- </ax-button>
3471
- <ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
3472
- <ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
3473
- </ax-button>
3474
- </div>
3475
- }@else{
3476
- <div class="ax-border ax-rounded">
3477
- <ax-image [src]="this.getValue()">
3478
- <ax-overlay class="ax-flex ax-justify-center">
3479
- <ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
3480
- <ax-icon class="far fa-edit"> </ax-icon>
3481
- </ax-button>
3482
- </ax-overlay>
3483
- </ax-image>
3484
- </div>
3485
- }
3486
- </div>
3722
+ template: `
3723
+ <div class="ax-flex ax-gap-3">
3724
+ @if(editMode()){
3725
+ <canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
3726
+ <div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
3727
+ <ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
3728
+ <ax-icon class="fas fa-download"></ax-icon>
3729
+ </ax-button>
3730
+ <ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
3731
+ <ax-icon class="fas fa-rotate-left"></ax-icon>
3732
+ </ax-button>
3733
+ <ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
3734
+ <ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
3735
+ </ax-button>
3736
+ </div>
3737
+ }@else{
3738
+ <div class="ax-border ax-rounded">
3739
+ <ax-image [src]="this.getValue()">
3740
+ <ax-overlay class="ax-flex ax-justify-center">
3741
+ <ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
3742
+ <ax-icon class="far fa-edit"> </ax-icon>
3743
+ </ax-button>
3744
+ </ax-overlay>
3745
+ </ax-image>
3746
+ </div>
3747
+ }
3748
+ </div>
3487
3749
  `,
3488
3750
  standalone: true,
3489
3751
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3546,27 +3808,27 @@ class AXPSignatureWidgetViewComponent extends AXPWidgetBase {
3546
3808
  this.internalValue = computed(() => this.getValue());
3547
3809
  }
3548
3810
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3549
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3550
- <div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
3551
- @if(internalValue()){
3552
- <ax-image [src]="internalValue()"></ax-image>
3553
- }@else{
3554
- <span>Not Set!</span>
3555
- }
3556
- </div>
3557
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3811
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3812
+ <div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
3813
+ @if(internalValue()){
3814
+ <ax-image [src]="internalValue()"></ax-image>
3815
+ }@else{
3816
+ <span>Not Set!</span>
3817
+ }
3818
+ </div>
3819
+ `, 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 }); }
3558
3820
  }
3559
3821
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetViewComponent, decorators: [{
3560
3822
  type: Component,
3561
3823
  args: [{
3562
- template: `
3563
- <div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
3564
- @if(internalValue()){
3565
- <ax-image [src]="internalValue()"></ax-image>
3566
- }@else{
3567
- <span>Not Set!</span>
3568
- }
3569
- </div>
3824
+ template: `
3825
+ <div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
3826
+ @if(internalValue()){
3827
+ <ax-image [src]="internalValue()"></ax-image>
3828
+ }@else{
3829
+ <span>Not Set!</span>
3830
+ }
3831
+ </div>
3570
3832
  `,
3571
3833
  standalone: true,
3572
3834
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3610,27 +3872,27 @@ class AXPTextBoxWidgetViewComponent extends AXPWidgetBase {
3610
3872
  this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
3611
3873
  }
3612
3874
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3613
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3614
- <div>
3615
- @if(multiple){ @for (item of internalValue(); track $index) {
3616
- <p>{{ item }}</p>
3617
- } }@else {
3618
- <p>{{ internalValue()[0] }}</p>
3619
- }
3620
- </div>
3875
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3876
+ <div>
3877
+ @if(multiple){ @for (item of internalValue(); track $index) {
3878
+ <p>{{ item }}</p>
3879
+ } }@else {
3880
+ <p>{{ internalValue()[0] }}</p>
3881
+ }
3882
+ </div>
3621
3883
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3622
3884
  }
3623
3885
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetViewComponent, decorators: [{
3624
3886
  type: Component,
3625
3887
  args: [{
3626
- template: `
3627
- <div>
3628
- @if(multiple){ @for (item of internalValue(); track $index) {
3629
- <p>{{ item }}</p>
3630
- } }@else {
3631
- <p>{{ internalValue()[0] }}</p>
3632
- }
3633
- </div>
3888
+ template: `
3889
+ <div>
3890
+ @if(multiple){ @for (item of internalValue(); track $index) {
3891
+ <p>{{ item }}</p>
3892
+ } }@else {
3893
+ <p>{{ internalValue()[0] }}</p>
3894
+ }
3895
+ </div>
3634
3896
  `,
3635
3897
  standalone: true,
3636
3898
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3676,71 +3938,71 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetBase {
3676
3938
  this.setValue(newValues);
3677
3939
  }
3678
3940
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3679
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3680
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
3681
- @for (text of internalValue(); track $index) {
3682
- <ax-text-box class="ax-col-span-12" [ngModel]="text" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
3683
- @for (validation of validationRules; track $index) {
3684
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
3685
- }
3686
- @if(clearButton){
3687
- <ax-clear-button></ax-clear-button>
3688
- } @if(multiple){
3689
- <ax-suffix>
3690
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3691
- <ax-icon class="far fa-trash"> </ax-icon>
3692
- </ax-button>
3693
- </ax-suffix>
3694
- }
3695
- </ax-text-box>
3696
- } @if(multiple){
3697
- <ax-button
3698
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3699
- look="twotone"
3700
- (onClick)="addItem()"
3701
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3702
- >
3703
- <ax-prefix>
3704
- <ax-icon class="fa-solid fa-add"></ax-icon>
3705
- </ax-prefix>
3706
- </ax-button>
3707
- }
3708
- </div>
3709
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3941
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
3942
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
3943
+ @for (text of internalValue(); track $index) {
3944
+ <ax-text-box class="ax-col-span-12" [ngModel]="text" [type]="'text'" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
3945
+ @for (validation of validationRules; track $index) {
3946
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
3947
+ }
3948
+ @if(clearButton){
3949
+ <ax-clear-button></ax-clear-button>
3950
+ } @if(multiple){
3951
+ <ax-suffix>
3952
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3953
+ <ax-icon class="far fa-trash"> </ax-icon>
3954
+ </ax-button>
3955
+ </ax-suffix>
3956
+ }
3957
+ </ax-text-box>
3958
+ } @if(multiple){
3959
+ <ax-button
3960
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3961
+ look="twotone"
3962
+ (onClick)="addItem()"
3963
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3964
+ >
3965
+ <ax-prefix>
3966
+ <ax-icon class="fa-solid fa-add"></ax-icon>
3967
+ </ax-prefix>
3968
+ </ax-button>
3969
+ }
3970
+ </div>
3971
+ `, 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: i3$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: i2$2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3710
3972
  }
3711
3973
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
3712
3974
  type: Component,
3713
3975
  args: [{
3714
- template: `
3715
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
3716
- @for (text of internalValue(); track $index) {
3717
- <ax-text-box class="ax-col-span-12" [ngModel]="text" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
3718
- @for (validation of validationRules; track $index) {
3719
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
3720
- }
3721
- @if(clearButton){
3722
- <ax-clear-button></ax-clear-button>
3723
- } @if(multiple){
3724
- <ax-suffix>
3725
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3726
- <ax-icon class="far fa-trash"> </ax-icon>
3727
- </ax-button>
3728
- </ax-suffix>
3729
- }
3730
- </ax-text-box>
3731
- } @if(multiple){
3732
- <ax-button
3733
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3734
- look="twotone"
3735
- (onClick)="addItem()"
3736
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3737
- >
3738
- <ax-prefix>
3739
- <ax-icon class="fa-solid fa-add"></ax-icon>
3740
- </ax-prefix>
3741
- </ax-button>
3742
- }
3743
- </div>
3976
+ template: `
3977
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
3978
+ @for (text of internalValue(); track $index) {
3979
+ <ax-text-box class="ax-col-span-12" [ngModel]="text" [type]="'text'" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
3980
+ @for (validation of validationRules; track $index) {
3981
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
3982
+ }
3983
+ @if(clearButton){
3984
+ <ax-clear-button></ax-clear-button>
3985
+ } @if(multiple){
3986
+ <ax-suffix>
3987
+ <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
3988
+ <ax-icon class="far fa-trash"> </ax-icon>
3989
+ </ax-button>
3990
+ </ax-suffix>
3991
+ }
3992
+ </ax-text-box>
3993
+ } @if(multiple){
3994
+ <ax-button
3995
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
3996
+ look="twotone"
3997
+ (onClick)="addItem()"
3998
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
3999
+ >
4000
+ <ax-prefix>
4001
+ <ax-icon class="fa-solid fa-add"></ax-icon>
4002
+ </ax-prefix>
4003
+ </ax-button>
4004
+ }
4005
+ </div>
3744
4006
  `,
3745
4007
  standalone: true,
3746
4008
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3774,18 +4036,19 @@ var textBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
3774
4036
  AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent
3775
4037
  });
3776
4038
 
3777
- class AXPTextBoxWidgetColumnComponent extends AXPWidgetBase {
4039
+ class AXPTextBoxWidgetColumnComponent extends AXPColumnWidgetBase {
3778
4040
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3779
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4041
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetColumnComponent, isStandalone: true, selector: "axp-text-box-widget-column", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{ rawValue }}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3780
4042
  }
3781
4043
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetColumnComponent, decorators: [{
3782
4044
  type: Component,
3783
4045
  args: [{
3784
- template: ``,
4046
+ selector: 'axp-text-box-widget-column',
4047
+ template: `{{ rawValue }}`,
3785
4048
  standalone: true,
3786
4049
  changeDetection: ChangeDetectionStrategy.OnPush,
3787
4050
  imports: [CommonModule],
3788
- inputs: []
4051
+ inputs: ['rawValue'],
3789
4052
  }]
3790
4053
  }] });
3791
4054
 
@@ -3848,6 +4111,7 @@ const AXPTextBoxWidget = {
3848
4111
  },
3849
4112
  column: {
3850
4113
  component: () => Promise.resolve().then(function () { return textBoxWidgetColumn_component; }).then((c) => c.AXPTextBoxWidgetColumnComponent),
4114
+ defaultOptions: {}
3851
4115
  },
3852
4116
  print: {
3853
4117
  component: () => Promise.resolve().then(function () { return textBoxWidgetPrint_component; }).then((c) => c.AXPTextBoxWidgetPrintComponent),
@@ -3858,27 +4122,223 @@ const AXPTextBoxWidget = {
3858
4122
  }
3859
4123
  };
3860
4124
 
4125
+ class AXPToggleWidgetViewComponent extends AXPWidgetBase {
4126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4127
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPToggleWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` @if(getValue()){ @if(trulyText){
4128
+ <ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
4129
+ }@else { @if(negative){
4130
+ <ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
4131
+ }@else {
4132
+ <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
4133
+ } } }@else { @if(falsyText){
4134
+ <ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
4135
+ }@else { @if(negative){
4136
+ <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
4137
+ }@else {
4138
+ <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
4139
+ } } }`, 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$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4140
+ }
4141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetViewComponent, decorators: [{
4142
+ type: Component,
4143
+ args: [{
4144
+ template: ` @if(getValue()){ @if(trulyText){
4145
+ <ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
4146
+ }@else { @if(negative){
4147
+ <ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
4148
+ }@else {
4149
+ <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
4150
+ } } }@else { @if(falsyText){
4151
+ <ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
4152
+ }@else { @if(negative){
4153
+ <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
4154
+ }@else {
4155
+ <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
4156
+ } } }`,
4157
+ standalone: true,
4158
+ changeDetection: ChangeDetectionStrategy.OnPush,
4159
+ imports: [CommonModule, AXDecoratorModule, AXBadgeModule],
4160
+ inputs: [],
4161
+ }]
4162
+ }] });
4163
+
4164
+ var toggleWidgetView_component = /*#__PURE__*/Object.freeze({
4165
+ __proto__: null,
4166
+ AXPToggleWidgetViewComponent: AXPToggleWidgetViewComponent
4167
+ });
4168
+
4169
+ class AXPToggleWidgetEditComponent extends AXPWidgetBase {
4170
+ onModelChange(e) {
4171
+ console.log(e);
4172
+ this.setValue(e);
4173
+ }
4174
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4175
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<ax-switch [ngModel]="this.getValue()" (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$7.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4176
+ }
4177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetEditComponent, decorators: [{
4178
+ type: Component,
4179
+ args: [{
4180
+ template: `<ax-switch [ngModel]="this.getValue()" (ngModelChange)="onModelChange($event)"></ax-switch>`,
4181
+ standalone: true,
4182
+ changeDetection: ChangeDetectionStrategy.OnPush,
4183
+ imports: [CommonModule, FormsModule, AXSwitchModule],
4184
+ inputs: [],
4185
+ }]
4186
+ }] });
4187
+
4188
+ var toggleWidgetEdit_component = /*#__PURE__*/Object.freeze({
4189
+ __proto__: null,
4190
+ AXPToggleWidgetEditComponent: AXPToggleWidgetEditComponent
4191
+ });
4192
+
4193
+ class AXPToggleWidgetFilterComponent extends AXPWidgetBase {
4194
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4195
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPToggleWidgetFilterComponent, 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 }); }
4196
+ }
4197
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetFilterComponent, decorators: [{
4198
+ type: Component,
4199
+ args: [{
4200
+ template: ``,
4201
+ standalone: true,
4202
+ changeDetection: ChangeDetectionStrategy.OnPush,
4203
+ imports: [CommonModule, FormsModule],
4204
+ inputs: []
4205
+ }]
4206
+ }] });
4207
+
4208
+ var toggleWidgetFilter_component = /*#__PURE__*/Object.freeze({
4209
+ __proto__: null,
4210
+ AXPToggleWidgetFilterComponent: AXPToggleWidgetFilterComponent
4211
+ });
4212
+
4213
+ class AXPToggleWidgetColumnComponent extends AXPColumnWidgetBase {
4214
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4215
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPToggleWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `@if(rawValue){ @if(trulyText){
4216
+ <ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
4217
+ }@else { @if(negative){
4218
+ <ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
4219
+ }@else {
4220
+ <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
4221
+ } } }@else { @if(falsyText){
4222
+ <ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
4223
+ }@else { @if(negative){
4224
+ <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
4225
+ }@else {
4226
+ <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
4227
+ } } }`, 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$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4228
+ }
4229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetColumnComponent, decorators: [{
4230
+ type: Component,
4231
+ args: [{
4232
+ template: `@if(rawValue){ @if(trulyText){
4233
+ <ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
4234
+ }@else { @if(negative){
4235
+ <ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
4236
+ }@else {
4237
+ <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
4238
+ } } }@else { @if(falsyText){
4239
+ <ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
4240
+ }@else { @if(negative){
4241
+ <ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
4242
+ }@else {
4243
+ <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
4244
+ } } }`,
4245
+ standalone: true,
4246
+ changeDetection: ChangeDetectionStrategy.OnPush,
4247
+ imports: [CommonModule, AXDecoratorModule, AXBadgeModule],
4248
+ inputs: ['rawValue'],
4249
+ }]
4250
+ }] });
4251
+
4252
+ var toggleWidgetColumn_component = /*#__PURE__*/Object.freeze({
4253
+ __proto__: null,
4254
+ AXPToggleWidgetColumnComponent: AXPToggleWidgetColumnComponent
4255
+ });
4256
+
4257
+ class AXPToggleWidgetPrintComponent extends AXPWidgetBase {
4258
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4259
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPToggleWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4260
+ }
4261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetPrintComponent, decorators: [{
4262
+ type: Component,
4263
+ args: [{
4264
+ template: ``,
4265
+ standalone: true,
4266
+ changeDetection: ChangeDetectionStrategy.OnPush,
4267
+ imports: [CommonModule],
4268
+ inputs: []
4269
+ }]
4270
+ }] });
4271
+
4272
+ var toggleWidgetPrint_component = /*#__PURE__*/Object.freeze({
4273
+ __proto__: null,
4274
+ AXPToggleWidgetPrintComponent: AXPToggleWidgetPrintComponent
4275
+ });
4276
+
4277
+ class AXPToggleWidgetDesignerComponent extends AXPWidgetBase {
4278
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4279
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPToggleWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4280
+ }
4281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToggleWidgetDesignerComponent, decorators: [{
4282
+ type: Component,
4283
+ args: [{
4284
+ template: ``,
4285
+ standalone: true,
4286
+ changeDetection: ChangeDetectionStrategy.OnPush,
4287
+ imports: [CommonModule],
4288
+ inputs: []
4289
+ }]
4290
+ }] });
4291
+
4292
+ var toggleWidgetDesigner_component = /*#__PURE__*/Object.freeze({
4293
+ __proto__: null,
4294
+ AXPToggleWidgetDesignerComponent: AXPToggleWidgetDesignerComponent
4295
+ });
4296
+
4297
+ const AXPToggleWidget = {
4298
+ name: "toggle",
4299
+ components: {
4300
+ view: {
4301
+ component: () => Promise.resolve().then(function () { return toggleWidgetView_component; }).then((c) => c.AXPToggleWidgetViewComponent),
4302
+ },
4303
+ edit: {
4304
+ component: () => Promise.resolve().then(function () { return toggleWidgetEdit_component; }).then((c) => c.AXPToggleWidgetEditComponent),
4305
+ },
4306
+ filter: {
4307
+ component: () => Promise.resolve().then(function () { return toggleWidgetFilter_component; }).then((c) => c.AXPToggleWidgetFilterComponent),
4308
+ },
4309
+ column: {
4310
+ component: () => Promise.resolve().then(function () { return toggleWidgetColumn_component; }).then((c) => c.AXPToggleWidgetColumnComponent),
4311
+ },
4312
+ print: {
4313
+ component: () => Promise.resolve().then(function () { return toggleWidgetPrint_component; }).then((c) => c.AXPToggleWidgetPrintComponent),
4314
+ },
4315
+ designer: {
4316
+ component: () => Promise.resolve().then(function () { return toggleWidgetDesigner_component; }).then((c) => c.AXPToggleWidgetDesignerComponent),
4317
+ },
4318
+ }
4319
+ };
4320
+
3861
4321
  class AXPBlockWidgetViewComponent extends AXPWidgetBase {
3862
4322
  get __class() {
3863
4323
  return this.cssClass;
3864
4324
  }
3865
4325
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3866
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPBlockWidgetViewComponent, isStandalone: true, selector: "axp-block-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
3867
- @for (node of children; track $index) {
3868
- <axp-widget-renderer [node]="node" >
3869
- </axp-widget-renderer>
3870
- }
4326
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPBlockWidgetViewComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
4327
+ @for (node of children; track $index) {
4328
+ <axp-widget-renderer [node]="node" >
4329
+ </axp-widget-renderer>
4330
+ }
3871
4331
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$3.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3872
4332
  }
3873
4333
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPBlockWidgetViewComponent, decorators: [{
3874
4334
  type: Component,
3875
4335
  args: [{
3876
- selector: 'axp-block-widget-edit',
3877
- template: `
3878
- @for (node of children; track $index) {
3879
- <axp-widget-renderer [node]="node" >
3880
- </axp-widget-renderer>
3881
- }
4336
+ selector: 'axp-block-widget',
4337
+ template: `
4338
+ @for (node of children; track $index) {
4339
+ <axp-widget-renderer [node]="node" >
4340
+ </axp-widget-renderer>
4341
+ }
3882
4342
  `,
3883
4343
  standalone: true,
3884
4344
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -3926,6 +4386,7 @@ class AXPWidgetsModule {
3926
4386
  AXPFileBoxWidget,
3927
4387
  AXPPasswordBoxWidget,
3928
4388
  AXPGalleryWidget,
4389
+ AXPToggleWidget,
3929
4390
  ],
3930
4391
  })] }); }
3931
4392
  }
@@ -3950,6 +4411,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImpor
3950
4411
  AXPFileBoxWidget,
3951
4412
  AXPPasswordBoxWidget,
3952
4413
  AXPGalleryWidget,
4414
+ AXPToggleWidget,
3953
4415
  ],
3954
4416
  }),
3955
4417
  ],