@lucca-front/ng 19.0.0 → 19.1.0-rc.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 (918) hide show
  1. package/core/portal/portal.directive.d.ts +1 -0
  2. package/core/type/style.d.ts +1 -1
  3. package/core-select/api/api.directive.d.ts +1 -1
  4. package/core-select/input/select-input.component.d.ts +2 -2
  5. package/core-select/input/select-input.models.d.ts +1 -2
  6. package/core-select/panel/panel.utils.d.ts +1 -1
  7. package/core-select/select.utils.d.ts +1 -1
  8. package/core-select/user/users.directive.d.ts +1 -2
  9. package/date2/abstract-date-component.d.ts +36 -0
  10. package/date2/calendar2/calendar-cell-info.d.ts +19 -12
  11. package/date2/calendar2/calendar2.component.d.ts +5 -2
  12. package/date2/date-format.d.ts +1 -0
  13. package/date2/date-input/date-input.component.d.ts +5 -29
  14. package/date2/date-range-input/calendar-shortcut.d.ts +6 -0
  15. package/date2/date-range-input/date-range-input.component.d.ts +63 -0
  16. package/date2/public-api.d.ts +2 -0
  17. package/date2/utils.d.ts +1 -0
  18. package/dialog/dialog-routing/dialog-routing.component.d.ts +1 -1
  19. package/divider/divider.component.d.ts +17 -0
  20. package/divider/index.d.ts +5 -0
  21. package/divider/public-api.d.ts +1 -0
  22. package/dropdown/item/dropdown-item.directive.d.ts +1 -1
  23. package/dropdown/item/dropdown-item.module.d.ts +1 -4
  24. package/dropdown/panel/dropdown-panel.component.d.ts +1 -1
  25. package/dropdown/panel/dropdown-panel.module.d.ts +2 -4
  26. package/dropdown/trigger/dropdown-trigger.directive.d.ts +1 -1
  27. package/dropdown/trigger/dropdown-trigger.module.d.ts +2 -4
  28. package/esm2022/a11y/lucca-front-ng-a11y.mjs +5 -0
  29. package/esm2022/a11y/public-api.mjs +3 -0
  30. package/esm2022/a11y/skip-links/skip-links.component.mjs +24 -0
  31. package/esm2022/a11y/skip-links/skip-links.translate.mjs +9 -0
  32. package/esm2022/a11y/skip-links/translations.mjs +51 -0
  33. package/esm2022/animations/animation.factory.mjs +15 -0
  34. package/esm2022/animations/fade.animation.mjs +8 -0
  35. package/esm2022/animations/lucca-front-ng-animations.mjs +5 -0
  36. package/esm2022/animations/public-api.mjs +5 -0
  37. package/esm2022/animations/scale.animation.mjs +126 -0
  38. package/esm2022/animations/slide.animation.mjs +110 -0
  39. package/esm2022/api/api.model.mjs +2 -0
  40. package/esm2022/api/api.module.mjs +16 -0
  41. package/esm2022/api/lucca-front-ng-api.mjs +5 -0
  42. package/esm2022/api/public-api.mjs +5 -0
  43. package/esm2022/api/select/api-select.module.mjs +19 -0
  44. package/esm2022/api/select/feeder/api-feeder.component.mjs +93 -0
  45. package/esm2022/api/select/feeder/api-feeder.model.mjs +11 -0
  46. package/esm2022/api/select/feeder/api-feeder.module.mjs +16 -0
  47. package/esm2022/api/select/feeder/index.mjs +4 -0
  48. package/esm2022/api/select/index.mjs +6 -0
  49. package/esm2022/api/select/input/api-select-input.component.mjs +52 -0
  50. package/esm2022/api/select/input/api-select-input.module.mjs +16 -0
  51. package/esm2022/api/select/input/index.mjs +3 -0
  52. package/esm2022/api/select/pager/api-pager.component.mjs +99 -0
  53. package/esm2022/api/select/pager/api-pager.model.mjs +56 -0
  54. package/esm2022/api/select/pager/api-pager.module.mjs +16 -0
  55. package/esm2022/api/select/pager/index.mjs +4 -0
  56. package/esm2022/api/select/searcher/api-searcher.component.mjs +235 -0
  57. package/esm2022/api/select/searcher/api-searcher.model.mjs +67 -0
  58. package/esm2022/api/select/searcher/api-searcher.module.mjs +16 -0
  59. package/esm2022/api/select/searcher/index.mjs +4 -0
  60. package/esm2022/api/service/api-hybrid.service.mjs +65 -0
  61. package/esm2022/api/service/api-service.model.mjs +3 -0
  62. package/esm2022/api/service/api-v3.service.mjs +72 -0
  63. package/esm2022/api/service/api-v4.service.mjs +71 -0
  64. package/esm2022/api/service/index.mjs +5 -0
  65. package/esm2022/button/button.component.mjs +90 -0
  66. package/esm2022/button/lucca-front-ng-button.mjs +5 -0
  67. package/esm2022/button/public-api.mjs +2 -0
  68. package/esm2022/callout/callout/callout.component.mjs +88 -0
  69. package/esm2022/callout/callout-disclosure/callout-disclosure.component.mjs +59 -0
  70. package/esm2022/callout/callout-feedback-item/callout-feedback-item.component.mjs +25 -0
  71. package/esm2022/callout/callout-feedback-list/callout-feedback-list.component.mjs +22 -0
  72. package/esm2022/callout/callout-icon.pipe.mjs +23 -0
  73. package/esm2022/callout/callout-popover/callout-popover.component.mjs +182 -0
  74. package/esm2022/callout/callout-state.mjs +16 -0
  75. package/esm2022/callout/callout.translate.mjs +7 -0
  76. package/esm2022/callout/callout.utils.mjs +20 -0
  77. package/esm2022/callout/lucca-front-ng-callout.mjs +5 -0
  78. package/esm2022/callout/public-api.mjs +7 -0
  79. package/esm2022/callout/translations.mjs +27 -0
  80. package/esm2022/comment/comment/comment.component.mjs +54 -0
  81. package/esm2022/comment/comment-block/comment-block.component.mjs +60 -0
  82. package/esm2022/comment/comment-chat/comment-chat.component.mjs +22 -0
  83. package/esm2022/comment/lucca-front-ng-comment.mjs +5 -0
  84. package/esm2022/comment/public-api.mjs +4 -0
  85. package/esm2022/comment/token.mjs +4 -0
  86. package/esm2022/core/date/date-adapter.class.mjs +54 -0
  87. package/esm2022/core/date/date-adapter.interface.mjs +2 -0
  88. package/esm2022/core/date/date-granularity.enum.mjs +8 -0
  89. package/esm2022/core/date/index.mjs +6 -0
  90. package/esm2022/core/date/native/index.mjs +3 -0
  91. package/esm2022/core/date/native/native-date.adapter.mjs +235 -0
  92. package/esm2022/core/date/native/native-date.option.mjs +6 -0
  93. package/esm2022/core/date/string/index.mjs +2 -0
  94. package/esm2022/core/date/string/string-date.adapter.mjs +83 -0
  95. package/esm2022/core/event/index.mjs +4 -0
  96. package/esm2022/core/event/on-close.subscriber.mjs +3 -0
  97. package/esm2022/core/event/on-open.subscriber.mjs +3 -0
  98. package/esm2022/core/event/on-scroll-bottom.subscriber.mjs +3 -0
  99. package/esm2022/core/group/group.interface.mjs +2 -0
  100. package/esm2022/core/group/index.mjs +2 -0
  101. package/esm2022/core/id/id.generator.mjs +9 -0
  102. package/esm2022/core/id/index.mjs +2 -0
  103. package/esm2022/core/lucca-front-ng-core.mjs +5 -0
  104. package/esm2022/core/portal/index.mjs +3 -0
  105. package/esm2022/core/portal/portal-content.mjs +3 -0
  106. package/esm2022/core/portal/portal.directive.mjs +105 -0
  107. package/esm2022/core/public-api.mjs +11 -0
  108. package/esm2022/core/signal.mjs +22 -0
  109. package/esm2022/core/tools/class.mjs +75 -0
  110. package/esm2022/core/translate/index.mjs +4 -0
  111. package/esm2022/core/translate/intl-params.pipe.mjs +20 -0
  112. package/esm2022/core/translate/intl.model.mjs +14 -0
  113. package/esm2022/core/translate/translation.model.mjs +2 -0
  114. package/esm2022/core/tree/index.mjs +2 -0
  115. package/esm2022/core/tree/tree.model.mjs +2 -0
  116. package/esm2022/core/type/enum.mjs +2 -0
  117. package/esm2022/core/type/index.mjs +3 -0
  118. package/esm2022/core/type/style.mjs +2 -0
  119. package/esm2022/core-select/api/api-v3.directive.mjs +81 -0
  120. package/esm2022/core-select/api/api-v4.directive.mjs +70 -0
  121. package/esm2022/core-select/api/api.directive.mjs +53 -0
  122. package/esm2022/core-select/api/lucca-front-ng-core-select-api.mjs +5 -0
  123. package/esm2022/core-select/api/public-api.mjs +4 -0
  124. package/esm2022/core-select/displayer/displayer.directive.mjs +26 -0
  125. package/esm2022/core-select/displayer/index.mjs +2 -0
  126. package/esm2022/core-select/establishment/establishment-grouping.component.mjs +21 -0
  127. package/esm2022/core-select/establishment/establishment-grouping.service.mjs +22 -0
  128. package/esm2022/core-select/establishment/establishments.directive.mjs +96 -0
  129. package/esm2022/core-select/establishment/lucca-front-ng-core-select-establishment.mjs +5 -0
  130. package/esm2022/core-select/establishment/models.mjs +2 -0
  131. package/esm2022/core-select/establishment/public-api.mjs +4 -0
  132. package/esm2022/core-select/input/index.mjs +4 -0
  133. package/esm2022/core-select/input/select-input.component.mjs +310 -0
  134. package/esm2022/core-select/input/select-input.models.mjs +60 -0
  135. package/esm2022/core-select/input/total-count.directive.mjs +33 -0
  136. package/esm2022/core-select/job-qualification/job-qualification-grouping.component.mjs +21 -0
  137. package/esm2022/core-select/job-qualification/job-qualifications.directive.mjs +78 -0
  138. package/esm2022/core-select/job-qualification/lucca-front-ng-core-select-job-qualification.mjs +5 -0
  139. package/esm2022/core-select/job-qualification/models.mjs +2 -0
  140. package/esm2022/core-select/job-qualification/public-api.mjs +3 -0
  141. package/esm2022/core-select/lucca-front-ng-core-select.mjs +5 -0
  142. package/esm2022/core-select/option/default-option.component.mjs +22 -0
  143. package/esm2022/core-select/option/disabled.directive.mjs +26 -0
  144. package/esm2022/core-select/option/group.directive.mjs +29 -0
  145. package/esm2022/core-select/option/group.pipe.mjs +43 -0
  146. package/esm2022/core-select/option/index.mjs +9 -0
  147. package/esm2022/core-select/option/option-outlet.directive.mjs +73 -0
  148. package/esm2022/core-select/option/option.component.mjs +89 -0
  149. package/esm2022/core-select/option/option.directive.mjs +26 -0
  150. package/esm2022/core-select/option/option.token.mjs +22 -0
  151. package/esm2022/core-select/panel/index.mjs +5 -0
  152. package/esm2022/core-select/panel/key-manager.mjs +79 -0
  153. package/esm2022/core-select/panel/panel-header-template.directive.mjs +25 -0
  154. package/esm2022/core-select/panel/panel.models.mjs +22 -0
  155. package/esm2022/core-select/panel/panel.utils.mjs +11 -0
  156. package/esm2022/core-select/public-api.mjs +8 -0
  157. package/esm2022/core-select/select.model.mjs +6 -0
  158. package/esm2022/core-select/select.translate.mjs +7 -0
  159. package/esm2022/core-select/select.utils.mjs +5 -0
  160. package/esm2022/core-select/translations.mjs +27 -0
  161. package/esm2022/core-select/user/former-employees.component.mjs +34 -0
  162. package/esm2022/core-select/user/lucca-front-ng-core-select-user.mjs +5 -0
  163. package/esm2022/core-select/user/me.provider.mjs +9 -0
  164. package/esm2022/core-select/user/public-api.mjs +5 -0
  165. package/esm2022/core-select/user/translations.mjs +35 -0
  166. package/esm2022/core-select/user/user-displayer.component.mjs +32 -0
  167. package/esm2022/core-select/user/user-homonym.service.mjs +63 -0
  168. package/esm2022/core-select/user/user-option.component.mjs +46 -0
  169. package/esm2022/core-select/user/user-option.model.mjs +2 -0
  170. package/esm2022/core-select/user/user.translate.mjs +7 -0
  171. package/esm2022/core-select/user/users.directive.mjs +142 -0
  172. package/esm2022/date/adapter/date-adapter.module.mjs +16 -0
  173. package/esm2022/date/adapter/date-adapter.pipe.mjs +25 -0
  174. package/esm2022/date/adapter/index.mjs +3 -0
  175. package/esm2022/date/calendar/calendar-input.component.mjs +332 -0
  176. package/esm2022/date/calendar/calendar-input.module.mjs +16 -0
  177. package/esm2022/date/calendar/calendar-item.class.mjs +43 -0
  178. package/esm2022/date/calendar/calendar-item.factory.mjs +37 -0
  179. package/esm2022/date/calendar/calendar-item.interface.mjs +2 -0
  180. package/esm2022/date/calendar/index.mjs +3 -0
  181. package/esm2022/date/date.module.mjs +20 -0
  182. package/esm2022/date/humanize/humanize.formatter.mjs +14 -0
  183. package/esm2022/date/humanize/humanize.model.mjs +2 -0
  184. package/esm2022/date/humanize/humanize.pipe.mjs +21 -0
  185. package/esm2022/date/humanize/humanize.utils.mjs +79 -0
  186. package/esm2022/date/humanize/index.mjs +5 -0
  187. package/esm2022/date/input/date-input.directive.mjs +137 -0
  188. package/esm2022/date/input/date-input.module.mjs +16 -0
  189. package/esm2022/date/input/date-input.translate.mjs +7 -0
  190. package/esm2022/date/input/index.mjs +4 -0
  191. package/esm2022/date/input/translations.mjs +43 -0
  192. package/esm2022/date/lucca-front-ng-date.mjs +5 -0
  193. package/esm2022/date/picker/date-picker.component.mjs +109 -0
  194. package/esm2022/date/picker/date-picker.module.mjs +16 -0
  195. package/esm2022/date/picker/index.mjs +3 -0
  196. package/esm2022/date/public-api.mjs +8 -0
  197. package/esm2022/date/select/date-select-input.component.mjs +106 -0
  198. package/esm2022/date/select/date-select-input.module.mjs +16 -0
  199. package/esm2022/date/select/date-select-input.translate.mjs +7 -0
  200. package/esm2022/date/select/index.mjs +4 -0
  201. package/esm2022/date/select/translations.mjs +43 -0
  202. package/esm2022/date2/abstract-date-component.mjs +105 -0
  203. package/esm2022/date2/calendar.token.mjs +22 -0
  204. package/esm2022/date2/calendar2/calendar-cell-info.mjs +2 -0
  205. package/esm2022/date2/calendar2/calendar-mode.mjs +2 -0
  206. package/esm2022/date2/calendar2/calendar2-cell.directive.mjs +111 -0
  207. package/esm2022/date2/calendar2/calendar2.component.mjs +400 -0
  208. package/esm2022/date2/calendar2/calendar2.tokens.mjs +4 -0
  209. package/esm2022/date2/calendar2/cell-status.mjs +2 -0
  210. package/esm2022/date2/calendar2/date-range.mjs +2 -0
  211. package/esm2022/date2/date-format.mjs +44 -0
  212. package/esm2022/date2/date-input/date-input.component.mjs +162 -0
  213. package/esm2022/date2/date-range-input/calendar-shortcut.mjs +65 -0
  214. package/esm2022/date2/date-range-input/date-range-input.component.mjs +389 -0
  215. package/esm2022/date2/date2.translate.mjs +7 -0
  216. package/esm2022/date2/lucca-front-ng-date2.mjs +5 -0
  217. package/esm2022/date2/public-api.mjs +7 -0
  218. package/esm2022/date2/repeat-times.directive.mjs +27 -0
  219. package/esm2022/date2/translations.mjs +17 -0
  220. package/esm2022/date2/utils.mjs +32 -0
  221. package/esm2022/department/department.model.mjs +2 -0
  222. package/esm2022/department/department.module.mjs +16 -0
  223. package/esm2022/department/lucca-front-ng-department.mjs +5 -0
  224. package/esm2022/department/public-api.mjs +5 -0
  225. package/esm2022/department/select/department-select.module.mjs +17 -0
  226. package/esm2022/department/select/feeder/department-feeder.component.mjs +82 -0
  227. package/esm2022/department/select/feeder/department-feeder.module.mjs +16 -0
  228. package/esm2022/department/select/feeder/index.mjs +3 -0
  229. package/esm2022/department/select/index.mjs +4 -0
  230. package/esm2022/department/select/input/department-select-input.component.mjs +67 -0
  231. package/esm2022/department/select/input/department-select-input.module.mjs +16 -0
  232. package/esm2022/department/select/input/department-select-input.translate.mjs +7 -0
  233. package/esm2022/department/select/input/index.mjs +4 -0
  234. package/esm2022/department/select/input/translations.mjs +27 -0
  235. package/esm2022/department/service/department-service.model.mjs +4 -0
  236. package/esm2022/department/service/department-v3.service.mjs +46 -0
  237. package/esm2022/department/service/department-v4.service.mjs +46 -0
  238. package/esm2022/department/service/index.mjs +4 -0
  239. package/esm2022/dialog/dialog/dialog.component.mjs +31 -0
  240. package/esm2022/dialog/dialog-content/dialog-content.component.mjs +20 -0
  241. package/esm2022/dialog/dialog-footer/dialog-footer.component.mjs +13 -0
  242. package/esm2022/dialog/dialog-header/dialog-header.component.mjs +46 -0
  243. package/esm2022/dialog/dialog-header/dialog-header.translate.mjs +7 -0
  244. package/esm2022/dialog/dialog-header/translations.mjs +27 -0
  245. package/esm2022/dialog/dialog-routing/dialog-routing.component.mjs +100 -0
  246. package/esm2022/dialog/dialog-routing/dialog-routing.models.mjs +2 -0
  247. package/esm2022/dialog/dialog-routing/dialog-routing.utils.mjs +46 -0
  248. package/esm2022/dialog/dialog-routing/index.mjs +4 -0
  249. package/esm2022/dialog/dialog.providers.mjs +10 -0
  250. package/esm2022/dialog/dialog.service.mjs +75 -0
  251. package/esm2022/dialog/directives/dialog-close.directive.mjs +22 -0
  252. package/esm2022/dialog/directives/dialog-dismiss.directive.mjs +22 -0
  253. package/esm2022/dialog/directives/dialog-open.directive.mjs +35 -0
  254. package/esm2022/dialog/lucca-front-ng-dialog.mjs +5 -0
  255. package/esm2022/dialog/model/dialog-config.mjs +4 -0
  256. package/esm2022/dialog/model/dialog-ref.mjs +49 -0
  257. package/esm2022/dialog/model/index.mjs +4 -0
  258. package/esm2022/dialog/model/injectors.mjs +10 -0
  259. package/esm2022/dialog/public-api.mjs +13 -0
  260. package/esm2022/dialog/testing/lucca-front-ng-dialog-testing.mjs +5 -0
  261. package/esm2022/dialog/testing/providers.mjs +8 -0
  262. package/esm2022/dialog/testing/public-api.mjs +2 -0
  263. package/esm2022/divider/divider.component.mjs +50 -0
  264. package/esm2022/divider/lucca-front-ng-divider.mjs +5 -0
  265. package/esm2022/divider/public-api.mjs +2 -0
  266. package/esm2022/dropdown/dropdown.module.mjs +18 -0
  267. package/esm2022/dropdown/item/dropdown-item.directive.mjs +55 -0
  268. package/esm2022/dropdown/item/dropdown-item.model.mjs +3 -0
  269. package/esm2022/dropdown/item/dropdown-item.module.mjs +17 -0
  270. package/esm2022/dropdown/item/index.mjs +4 -0
  271. package/esm2022/dropdown/lucca-front-ng-dropdown.mjs +5 -0
  272. package/esm2022/dropdown/panel/dropdown-panel.component.mjs +111 -0
  273. package/esm2022/dropdown/panel/dropdown-panel.model.mjs +2 -0
  274. package/esm2022/dropdown/panel/dropdown-panel.module.mjs +18 -0
  275. package/esm2022/dropdown/panel/index.mjs +4 -0
  276. package/esm2022/dropdown/public-api.mjs +5 -0
  277. package/esm2022/dropdown/trigger/dropdown-trigger.directive.mjs +121 -0
  278. package/esm2022/dropdown/trigger/dropdown-trigger.module.mjs +18 -0
  279. package/esm2022/dropdown/trigger/index.mjs +3 -0
  280. package/esm2022/empty-state/empty-state-page/empty-state-page.component.mjs +62 -0
  281. package/esm2022/empty-state/empty-state-section/empty-state-section.component.mjs +43 -0
  282. package/esm2022/empty-state/lucca-front-ng-empty-state.mjs +5 -0
  283. package/esm2022/empty-state/public-api.mjs +3 -0
  284. package/esm2022/establishment/establishment.model.mjs +2 -0
  285. package/esm2022/establishment/establishment.module.mjs +19 -0
  286. package/esm2022/establishment/lucca-front-ng-establishment.mjs +5 -0
  287. package/esm2022/establishment/public-api.mjs +5 -0
  288. package/esm2022/establishment/select/establishment-select.module.mjs +23 -0
  289. package/esm2022/establishment/select/establishment-select.token.mjs +4 -0
  290. package/esm2022/establishment/select/for-legal-units/for-legal-units.directive.mjs +47 -0
  291. package/esm2022/establishment/select/for-legal-units/for-legal-units.module.mjs +16 -0
  292. package/esm2022/establishment/select/for-legal-units/index.mjs +3 -0
  293. package/esm2022/establishment/select/index.mjs +7 -0
  294. package/esm2022/establishment/select/input/establishment-select-input.component.mjs +126 -0
  295. package/esm2022/establishment/select/input/establishment-select-input.module.mjs +16 -0
  296. package/esm2022/establishment/select/input/establishment-select-input.translate.mjs +7 -0
  297. package/esm2022/establishment/select/input/index.mjs +4 -0
  298. package/esm2022/establishment/select/input/translations.mjs +27 -0
  299. package/esm2022/establishment/select/legal-unit-selector/index.mjs +3 -0
  300. package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.directive.mjs +103 -0
  301. package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.module.mjs +16 -0
  302. package/esm2022/establishment/select/searcher/establishment-searcher.component.mjs +146 -0
  303. package/esm2022/establishment/select/searcher/establishment-searcher.module.mjs +16 -0
  304. package/esm2022/establishment/select/searcher/index.mjs +3 -0
  305. package/esm2022/establishment/select/select-all/establishment-select-all.component.mjs +94 -0
  306. package/esm2022/establishment/select/select-all/establishment-select-all.module.mjs +16 -0
  307. package/esm2022/establishment/select/select-all/index.mjs +3 -0
  308. package/esm2022/establishment/service/establishment-service.model.mjs +4 -0
  309. package/esm2022/establishment/service/establishment.service.mjs +37 -0
  310. package/esm2022/establishment/service/index.mjs +5 -0
  311. package/esm2022/establishment/service/legal-unit-service.model.mjs +4 -0
  312. package/esm2022/establishment/service/legal-unit.service.mjs +37 -0
  313. package/esm2022/fancy-box/fancy-box.component.mjs +39 -0
  314. package/esm2022/fancy-box/lucca-front-ng-fancy-box.mjs +5 -0
  315. package/esm2022/fancy-box/public-api.mjs +2 -0
  316. package/esm2022/form-field/form-field-size.mjs +2 -0
  317. package/esm2022/form-field/form-field.component.mjs +174 -0
  318. package/esm2022/form-field/form-field.token.mjs +3 -0
  319. package/esm2022/form-field/form-field.translate.mjs +7 -0
  320. package/esm2022/form-field/input.directive.mjs +36 -0
  321. package/esm2022/form-field/lucca-front-ng-form-field.mjs +5 -0
  322. package/esm2022/form-field/public-api.mjs +6 -0
  323. package/esm2022/form-field/translations.mjs +27 -0
  324. package/esm2022/formly/formly.config.mjs +79 -0
  325. package/esm2022/formly/formly.module.mjs +108 -0
  326. package/esm2022/formly/formly.utils.mjs +10 -0
  327. package/esm2022/formly/lucca-front-ng-formly.mjs +5 -0
  328. package/esm2022/formly/public-api.mjs +5 -0
  329. package/esm2022/formly/types/api.mjs +37 -0
  330. package/esm2022/formly/types/checkbox.mjs +22 -0
  331. package/esm2022/formly/types/date.mjs +22 -0
  332. package/esm2022/formly/types/department.mjs +22 -0
  333. package/esm2022/formly/types/establishment.mjs +22 -0
  334. package/esm2022/formly/types/index.mjs +12 -0
  335. package/esm2022/formly/types/input.mjs +26 -0
  336. package/esm2022/formly/types/qualification.mjs +22 -0
  337. package/esm2022/formly/types/radios.mjs +25 -0
  338. package/esm2022/formly/types/select.mjs +28 -0
  339. package/esm2022/formly/types/textarea.mjs +22 -0
  340. package/esm2022/formly/types/user.mjs +22 -0
  341. package/esm2022/formly/wrappers/checkbox-layout.mjs +30 -0
  342. package/esm2022/formly/wrappers/error.mjs +57 -0
  343. package/esm2022/formly/wrappers/helper.mjs +19 -0
  344. package/esm2022/formly/wrappers/icon.mjs +19 -0
  345. package/esm2022/formly/wrappers/index.mjs +8 -0
  346. package/esm2022/formly/wrappers/radiosfield-layout.mjs +30 -0
  347. package/esm2022/formly/wrappers/suffix.mjs +19 -0
  348. package/esm2022/formly/wrappers/textfield-layout.mjs +39 -0
  349. package/esm2022/forms/checkbox-input/checkbox-input.component.mjs +34 -0
  350. package/esm2022/forms/form-field-id.directive.mjs +52 -0
  351. package/esm2022/forms/inject-ng-control.mjs +25 -0
  352. package/esm2022/forms/lucca-front-ng-forms.mjs +5 -0
  353. package/esm2022/forms/multilanguage-input/model/multilanguage-translation.mjs +2 -0
  354. package/esm2022/forms/multilanguage-input/multilanguage-input.component.mjs +95 -0
  355. package/esm2022/forms/multilanguage-input/multilanguage-input.translate.mjs +6 -0
  356. package/esm2022/forms/multilanguage-input/translations.mjs +13 -0
  357. package/esm2022/forms/multilanguage-input/validators.mjs +7 -0
  358. package/esm2022/forms/noop-value-accessor.directive.mjs +35 -0
  359. package/esm2022/forms/number-format-input/number-format-input.component.mjs +92 -0
  360. package/esm2022/forms/number-format-input/number-format-input.translate.mjs +7 -0
  361. package/esm2022/forms/number-format-input/translations.mjs +27 -0
  362. package/esm2022/forms/number-input/number-input.component.mjs +55 -0
  363. package/esm2022/forms/number-input/number-input.translate.mjs +7 -0
  364. package/esm2022/forms/number-input/translations.mjs +27 -0
  365. package/esm2022/forms/phone-number-input/formatter.mjs +7 -0
  366. package/esm2022/forms/phone-number-input/lucca-front-ng-forms-phone-number-input.mjs +5 -0
  367. package/esm2022/forms/phone-number-input/phone-number-format.pipe.mjs +18 -0
  368. package/esm2022/forms/phone-number-input/phone-number-input.component.mjs +186 -0
  369. package/esm2022/forms/phone-number-input/public-api.mjs +6 -0
  370. package/esm2022/forms/phone-number-input/types.mjs +2 -0
  371. package/esm2022/forms/phone-number-input/validators.mjs +17 -0
  372. package/esm2022/forms/public-api.mjs +17 -0
  373. package/esm2022/forms/radio-group-input/radio/radio.component.mjs +54 -0
  374. package/esm2022/forms/radio-group-input/radio-group-input.component.mjs +45 -0
  375. package/esm2022/forms/radio-group-input/radio-group-token.mjs +3 -0
  376. package/esm2022/forms/switch-input/switch-input.component.mjs +26 -0
  377. package/esm2022/forms/text-input/text-input-addon.mjs +2 -0
  378. package/esm2022/forms/text-input/text-input.component.mjs +82 -0
  379. package/esm2022/forms/text-input/text-input.translate.mjs +7 -0
  380. package/esm2022/forms/text-input/translations.mjs +35 -0
  381. package/esm2022/forms/textarea-input/textarea-input.component.mjs +53 -0
  382. package/esm2022/icon/icon.component.mjs +29 -0
  383. package/esm2022/icon/lucca-front-ng-icon.mjs +5 -0
  384. package/esm2022/icon/public-api.mjs +2 -0
  385. package/esm2022/inline-message/inline-message-state.mjs +2 -0
  386. package/esm2022/inline-message/inline-message.component.mjs +33 -0
  387. package/esm2022/inline-message/lucca-front-ng-inline-message.mjs +5 -0
  388. package/esm2022/inline-message/public-api.mjs +3 -0
  389. package/esm2022/input/clearer/clearer.component.mjs +35 -0
  390. package/esm2022/input/clearer/clearer.model.mjs +3 -0
  391. package/esm2022/input/clearer/clearer.module.mjs +16 -0
  392. package/esm2022/input/clearer/index.mjs +4 -0
  393. package/esm2022/input/displayer/index.mjs +4 -0
  394. package/esm2022/input/displayer/input-displayer.directive.mjs +59 -0
  395. package/esm2022/input/displayer/input-displayer.model.mjs +6 -0
  396. package/esm2022/input/displayer/input-displayer.module.mjs +16 -0
  397. package/esm2022/input/input.directive.mjs +42 -0
  398. package/esm2022/input/input.model.mjs +54 -0
  399. package/esm2022/input/input.module.mjs +18 -0
  400. package/esm2022/input/lucca-front-ng-input.mjs +5 -0
  401. package/esm2022/input/public-api.mjs +6 -0
  402. package/esm2022/link/link.component.mjs +108 -0
  403. package/esm2022/link/link.translate.mjs +7 -0
  404. package/esm2022/link/lucca-front-ng-link.mjs +5 -0
  405. package/esm2022/link/public-api.mjs +2 -0
  406. package/esm2022/link/translations.mjs +24 -0
  407. package/esm2022/lucca-front-ng.mjs +5 -0
  408. package/esm2022/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.mjs +100 -0
  409. package/esm2022/modal/dialog-adapter/dialog-ref-adapter.mjs +19 -0
  410. package/esm2022/modal/lucca-front-ng-modal.mjs +5 -0
  411. package/esm2022/modal/modal-config.default.mjs +17 -0
  412. package/esm2022/modal/modal-config.model.mjs +5 -0
  413. package/esm2022/modal/modal-panel.component.mjs +123 -0
  414. package/esm2022/modal/modal-ref.factory.mjs +60 -0
  415. package/esm2022/modal/modal-ref.model.mjs +11 -0
  416. package/esm2022/modal/modal.model.mjs +2 -0
  417. package/esm2022/modal/modal.module.mjs +28 -0
  418. package/esm2022/modal/modal.service.mjs +42 -0
  419. package/esm2022/modal/modal.token.mjs +9 -0
  420. package/esm2022/modal/modal.translate.mjs +7 -0
  421. package/esm2022/modal/modal.utils.mjs +9 -0
  422. package/esm2022/modal/public-api.mjs +12 -0
  423. package/esm2022/modal/translations.mjs +43 -0
  424. package/esm2022/multi-select/displayer/counter-displayer/counter-displayer.component.mjs +78 -0
  425. package/esm2022/multi-select/displayer/default-displayer.component.mjs +95 -0
  426. package/esm2022/multi-select/displayer/default-displayer.translate.mjs +7 -0
  427. package/esm2022/multi-select/displayer/displayer-input.directive.mjs +101 -0
  428. package/esm2022/multi-select/displayer/displayer.directive.mjs +26 -0
  429. package/esm2022/multi-select/displayer/index.mjs +6 -0
  430. package/esm2022/multi-select/displayer/translations.mjs +51 -0
  431. package/esm2022/multi-select/input/index.mjs +3 -0
  432. package/esm2022/multi-select/input/panel-ref.factory.mjs +115 -0
  433. package/esm2022/multi-select/input/panel.model.mjs +4 -0
  434. package/esm2022/multi-select/input/select-all/index.mjs +2 -0
  435. package/esm2022/multi-select/input/select-all/multi-select-all-displayer.component.mjs +99 -0
  436. package/esm2022/multi-select/input/select-all/multi-select-all-header.component.mjs +36 -0
  437. package/esm2022/multi-select/input/select-all/select-all.models.mjs +3 -0
  438. package/esm2022/multi-select/input/select-all/with-select-all.directive.mjs +163 -0
  439. package/esm2022/multi-select/input/select-input.component.mjs +109 -0
  440. package/esm2022/multi-select/lucca-front-ng-multi-select.mjs +5 -0
  441. package/esm2022/multi-select/panel/index.mjs +2 -0
  442. package/esm2022/multi-select/panel/option-group-context.pipe.mjs +24 -0
  443. package/esm2022/multi-select/panel/option-selected.pipe.mjs +19 -0
  444. package/esm2022/multi-select/panel/panel.component.mjs +108 -0
  445. package/esm2022/multi-select/panel/selected-chip.directive.mjs +26 -0
  446. package/esm2022/multi-select/public-api.mjs +5 -0
  447. package/esm2022/multi-select/select.model.mjs +23 -0
  448. package/esm2022/multi-select/select.translate.mjs +7 -0
  449. package/esm2022/multi-select/select.validators.mjs +10 -0
  450. package/esm2022/multi-select/translations.mjs +107 -0
  451. package/esm2022/new-badge/lucca-front-ng-new-badge.mjs +5 -0
  452. package/esm2022/new-badge/new-badge.component.mjs +20 -0
  453. package/esm2022/new-badge/public-api.mjs +2 -0
  454. package/esm2022/number/lucca-front-ng-number.mjs +5 -0
  455. package/esm2022/number/number.module.mjs +16 -0
  456. package/esm2022/number/number.pipe.mjs +36 -0
  457. package/esm2022/number/public-api.mjs +3 -0
  458. package/esm2022/number-format/lucca-front-ng-number-format.mjs +5 -0
  459. package/esm2022/number-format/number-format.directive.mjs +91 -0
  460. package/esm2022/number-format/number-format.mjs +175 -0
  461. package/esm2022/number-format/number-format.models.mjs +7 -0
  462. package/esm2022/number-format/number-format.pipe.mjs +18 -0
  463. package/esm2022/number-format/public-api.mjs +5 -0
  464. package/esm2022/numeric-badge/lucca-front-ng-numeric-badge.mjs +5 -0
  465. package/esm2022/numeric-badge/numeric-badge.component.mjs +55 -0
  466. package/esm2022/numeric-badge/public-api.mjs +2 -0
  467. package/esm2022/option/item/index.mjs +8 -0
  468. package/esm2022/option/item/option-item.component.mjs +76 -0
  469. package/esm2022/option/item/option-item.model.mjs +3 -0
  470. package/esm2022/option/item/option-item.module.mjs +16 -0
  471. package/esm2022/option/item/translations.mjs +35 -0
  472. package/esm2022/option/item/tree-option-item.component.mjs +136 -0
  473. package/esm2022/option/item/tree-option-item.model.mjs +7 -0
  474. package/esm2022/option/item/tree-option-item.module.mjs +16 -0
  475. package/esm2022/option/item/tree-option-item.translate.mjs +7 -0
  476. package/esm2022/option/lucca-front-ng-option.mjs +5 -0
  477. package/esm2022/option/operator/feeder/index.mjs +5 -0
  478. package/esm2022/option/operator/feeder/option-feeder.component.mjs +33 -0
  479. package/esm2022/option/operator/feeder/option-feeder.module.mjs +16 -0
  480. package/esm2022/option/operator/feeder/tree-option-feeder.component.mjs +33 -0
  481. package/esm2022/option/operator/feeder/tree-option-feeder.module.mjs +16 -0
  482. package/esm2022/option/operator/for-groups/for-groups.directive.mjs +89 -0
  483. package/esm2022/option/operator/for-groups/for-groups.module.mjs +16 -0
  484. package/esm2022/option/operator/for-groups/index.mjs +3 -0
  485. package/esm2022/option/operator/for-options/for-options.directive.mjs +50 -0
  486. package/esm2022/option/operator/for-options/for-options.module.mjs +16 -0
  487. package/esm2022/option/operator/for-options/for-tree-options.directive.mjs +29 -0
  488. package/esm2022/option/operator/for-options/for-tree-options.module.mjs +16 -0
  489. package/esm2022/option/operator/for-options/index.mjs +5 -0
  490. package/esm2022/option/operator/index.mjs +10 -0
  491. package/esm2022/option/operator/option-operator.model.mjs +3 -0
  492. package/esm2022/option/operator/option-operator.module.mjs +20 -0
  493. package/esm2022/option/operator/pager/index.mjs +5 -0
  494. package/esm2022/option/operator/pager/option-pager.component.mjs +53 -0
  495. package/esm2022/option/operator/pager/option-pager.module.mjs +16 -0
  496. package/esm2022/option/operator/pager/tree-option-pager.component.mjs +71 -0
  497. package/esm2022/option/operator/pager/tree-option-pager.module.mjs +16 -0
  498. package/esm2022/option/operator/searcher/index.mjs +5 -0
  499. package/esm2022/option/operator/searcher/option-searcher.component.mjs +66 -0
  500. package/esm2022/option/operator/searcher/option-searcher.module.mjs +16 -0
  501. package/esm2022/option/operator/searcher/tree-option-searcher.component.mjs +83 -0
  502. package/esm2022/option/operator/searcher/tree-option-searcher.module.mjs +16 -0
  503. package/esm2022/option/operator/tree-option-operator.model.mjs +4 -0
  504. package/esm2022/option/operator/tree-option-operator.module.mjs +19 -0
  505. package/esm2022/option/option.module.mjs +63 -0
  506. package/esm2022/option/picker/index.mjs +9 -0
  507. package/esm2022/option/picker/option-picker-advanced.component.mjs +150 -0
  508. package/esm2022/option/picker/option-picker.component.mjs +319 -0
  509. package/esm2022/option/picker/option-picker.model.mjs +69 -0
  510. package/esm2022/option/picker/option-picker.module.mjs +18 -0
  511. package/esm2022/option/picker/tree-option-picker-advanced.component.mjs +140 -0
  512. package/esm2022/option/picker/tree-option-picker.component.mjs +173 -0
  513. package/esm2022/option/picker/tree-option-picker.model.mjs +4 -0
  514. package/esm2022/option/picker/tree-option-picker.module.mjs +21 -0
  515. package/esm2022/option/placeholder/index.mjs +4 -0
  516. package/esm2022/option/placeholder/option-placeholder.component.mjs +23 -0
  517. package/esm2022/option/placeholder/option-placeholder.module.mjs +16 -0
  518. package/esm2022/option/placeholder/option-placeholder.translate.mjs +7 -0
  519. package/esm2022/option/placeholder/translations.mjs +35 -0
  520. package/esm2022/option/public-api.mjs +8 -0
  521. package/esm2022/option/selector/all/index.mjs +6 -0
  522. package/esm2022/option/selector/all/select-all.component.mjs +64 -0
  523. package/esm2022/option/selector/all/select-all.module.mjs +16 -0
  524. package/esm2022/option/selector/all/select-all.translate.mjs +7 -0
  525. package/esm2022/option/selector/all/translations.mjs +35 -0
  526. package/esm2022/option/selector/all/tree-select-all.component.mjs +67 -0
  527. package/esm2022/option/selector/all/tree-select-all.module.mjs +16 -0
  528. package/esm2022/option/selector/index.mjs +6 -0
  529. package/esm2022/option/selector/option-selector.model.mjs +3 -0
  530. package/esm2022/option/selector/option-selector.module.mjs +16 -0
  531. package/esm2022/option/selector/tree-option-selector.model.mjs +4 -0
  532. package/esm2022/option/selector/tree-option-selector.module.mjs +16 -0
  533. package/esm2022/option/tree-option.module.mjs +19 -0
  534. package/esm2022/picker/input-picker.model.mjs +4 -0
  535. package/esm2022/picker/lucca-front-ng-picker.mjs +5 -0
  536. package/esm2022/picker/public-api.mjs +2 -0
  537. package/esm2022/plg-push/lucca-front-ng-plg-push.mjs +5 -0
  538. package/esm2022/plg-push/plg-push.component.mjs +17 -0
  539. package/esm2022/plg-push/public-api.mjs +2 -0
  540. package/esm2022/popover/animation/index.mjs +2 -0
  541. package/esm2022/popover/animation/popover.animation.mjs +16 -0
  542. package/esm2022/popover/lucca-front-ng-popover.mjs +5 -0
  543. package/esm2022/popover/panel/index.mjs +4 -0
  544. package/esm2022/popover/panel/popover-panel.component.mjs +126 -0
  545. package/esm2022/popover/panel/popover-panel.model.mjs +120 -0
  546. package/esm2022/popover/panel/popover-panel.module.mjs +16 -0
  547. package/esm2022/popover/popover.module.mjs +18 -0
  548. package/esm2022/popover/public-api.mjs +6 -0
  549. package/esm2022/popover/target/index.mjs +4 -0
  550. package/esm2022/popover/target/popover-target.directive.mjs +53 -0
  551. package/esm2022/popover/target/popover-target.model.mjs +65 -0
  552. package/esm2022/popover/target/popover-target.module.mjs +16 -0
  553. package/esm2022/popover/trigger/index.mjs +4 -0
  554. package/esm2022/popover/trigger/popover-trigger.directive.mjs +186 -0
  555. package/esm2022/popover/trigger/popover-trigger.model.mjs +470 -0
  556. package/esm2022/popover/trigger/popover-trigger.module.mjs +17 -0
  557. package/esm2022/popover2/content/popover-content/popover-content.component.mjs +78 -0
  558. package/esm2022/popover2/lucca-front-ng-popover2.mjs +5 -0
  559. package/esm2022/popover2/popover-focus-trap.mjs +24 -0
  560. package/esm2022/popover2/popover-tokens.mjs +3 -0
  561. package/esm2022/popover2/popover.directive.mjs +264 -0
  562. package/esm2022/popover2/popover.providers.mjs +6 -0
  563. package/esm2022/popover2/popover.translate.mjs +7 -0
  564. package/esm2022/popover2/popover2.translate.mjs +19 -0
  565. package/esm2022/popover2/public-api.mjs +4 -0
  566. package/esm2022/popover2/translations.mjs +27 -0
  567. package/esm2022/popup/lucca-front-ng-popup.mjs +5 -0
  568. package/esm2022/popup/popup-config.default.mjs +9 -0
  569. package/esm2022/popup/popup-config.model.mjs +2 -0
  570. package/esm2022/popup/popup-ref.factory.mjs +28 -0
  571. package/esm2022/popup/popup-ref.model.mjs +139 -0
  572. package/esm2022/popup/popup.module.mjs +21 -0
  573. package/esm2022/popup/popup.service.mjs +21 -0
  574. package/esm2022/popup/popup.token.mjs +8 -0
  575. package/esm2022/popup/public-api.mjs +8 -0
  576. package/esm2022/popup-employee/card/panel/user-popover-panel.component.mjs +153 -0
  577. package/esm2022/popup-employee/card/panel/user-popover-panel.model.mjs +2 -0
  578. package/esm2022/popup-employee/card/pipe/inject-parameter.pipe.mjs +18 -0
  579. package/esm2022/popup-employee/card/pipe/is-future.pipe.mjs +32 -0
  580. package/esm2022/popup-employee/card/pipe/leave-ends-display.pipe.mjs +44 -0
  581. package/esm2022/popup-employee/card/trigger/user-popover-trigger.directive.mjs +178 -0
  582. package/esm2022/popup-employee/lucca-front-ng-popup-employee.mjs +5 -0
  583. package/esm2022/popup-employee/popup-employee.translate.mjs +7 -0
  584. package/esm2022/popup-employee/public-api.mjs +5 -0
  585. package/esm2022/popup-employee/service/user-popover-service.model.mjs +2 -0
  586. package/esm2022/popup-employee/service/user-popover.store.mjs +59 -0
  587. package/esm2022/popup-employee/translations.mjs +107 -0
  588. package/esm2022/popup-employee/user-popover.model.mjs +2 -0
  589. package/esm2022/popup-employee/user-popover.providers.mjs +14 -0
  590. package/esm2022/public_api.mjs +2 -0
  591. package/esm2022/qualification/lucca-front-ng-qualification.mjs +5 -0
  592. package/esm2022/qualification/public-api.mjs +4 -0
  593. package/esm2022/qualification/qualification.model.mjs +2 -0
  594. package/esm2022/qualification/qualification.module.mjs +19 -0
  595. package/esm2022/qualification/select/index.mjs +3 -0
  596. package/esm2022/qualification/select/input/index.mjs +4 -0
  597. package/esm2022/qualification/select/input/qualification-select-input.component.mjs +60 -0
  598. package/esm2022/qualification/select/input/qualification-select-input.module.mjs +19 -0
  599. package/esm2022/qualification/select/input/qualification-select-input.translate.mjs +7 -0
  600. package/esm2022/qualification/select/input/translations.mjs +27 -0
  601. package/esm2022/qualification/select/qualification-select.module.mjs +19 -0
  602. package/esm2022/safe-content/lucca-front-ng-safe-content.mjs +5 -0
  603. package/esm2022/safe-content/public-api.mjs +4 -0
  604. package/esm2022/safe-content/safe-content.module.mjs +18 -0
  605. package/esm2022/safe-content/safe-external-svg.pipe.mjs +42 -0
  606. package/esm2022/safe-content/safe-html.pipe.mjs +19 -0
  607. package/esm2022/scroll/lucca-front-ng-scroll.mjs +5 -0
  608. package/esm2022/scroll/public-api.mjs +4 -0
  609. package/esm2022/scroll/scroll.directive.mjs +77 -0
  610. package/esm2022/scroll/scroll.model.mjs +2 -0
  611. package/esm2022/scroll/scroll.module.mjs +16 -0
  612. package/esm2022/select/input/index.mjs +4 -0
  613. package/esm2022/select/input/select-input.component.mjs +249 -0
  614. package/esm2022/select/input/select-input.model.mjs +179 -0
  615. package/esm2022/select/input/select-input.module.mjs +19 -0
  616. package/esm2022/select/lucca-front-ng-select.mjs +5 -0
  617. package/esm2022/select/public-api.mjs +3 -0
  618. package/esm2022/select/select.module.mjs +19 -0
  619. package/esm2022/sidepanel/lucca-front-ng-sidepanel.mjs +5 -0
  620. package/esm2022/sidepanel/public-api.mjs +4 -0
  621. package/esm2022/sidepanel/sidepanel.model.mjs +32 -0
  622. package/esm2022/sidepanel/sidepanel.module.mjs +20 -0
  623. package/esm2022/sidepanel/sidepanel.service.mjs +25 -0
  624. package/esm2022/simple-select/api/api-v3.directive.mjs +6 -0
  625. package/esm2022/simple-select/api/api-v4.directive.mjs +6 -0
  626. package/esm2022/simple-select/api/api.directive.mjs +6 -0
  627. package/esm2022/simple-select/api/lucca-front-ng-simple-select-api.mjs +5 -0
  628. package/esm2022/simple-select/api/public-api.mjs +4 -0
  629. package/esm2022/simple-select/input/index.mjs +2 -0
  630. package/esm2022/simple-select/input/panel-ref.factory.mjs +103 -0
  631. package/esm2022/simple-select/input/select-input.component.mjs +62 -0
  632. package/esm2022/simple-select/lucca-front-ng-simple-select.mjs +5 -0
  633. package/esm2022/simple-select/panel/index.mjs +2 -0
  634. package/esm2022/simple-select/panel/option-selected.pipe.mjs +17 -0
  635. package/esm2022/simple-select/panel/panel.component.mjs +69 -0
  636. package/esm2022/simple-select/public-api.mjs +4 -0
  637. package/esm2022/simple-select/select.model.mjs +3 -0
  638. package/esm2022/simple-select/select.translate.mjs +7 -0
  639. package/esm2022/simple-select/translations.mjs +59 -0
  640. package/esm2022/skeleton/lucca-front-ng-skeleton.mjs +5 -0
  641. package/esm2022/skeleton/public-api.mjs +7 -0
  642. package/esm2022/skeleton/skeleton-button/skeleton-button.component.mjs +17 -0
  643. package/esm2022/skeleton/skeleton-data-table/skeleton-data-table.component.mjs +23 -0
  644. package/esm2022/skeleton/skeleton-field/skeleton-field.component.mjs +17 -0
  645. package/esm2022/skeleton/skeleton-header/skeleton-header.component.mjs +17 -0
  646. package/esm2022/skeleton/skeleton-index-table/skeleton-index-table.component.mjs +23 -0
  647. package/esm2022/skeleton/skeleton-table/skeleton-table.component.mjs +23 -0
  648. package/esm2022/statusBadge/lucca-front-ng-statusBadge.mjs +5 -0
  649. package/esm2022/statusBadge/public-api.mjs +2 -0
  650. package/esm2022/statusBadge/statusBadge.component.mjs +30 -0
  651. package/esm2022/tag/lucca-front-ng-tag.mjs +5 -0
  652. package/esm2022/tag/public-api.mjs +2 -0
  653. package/esm2022/tag/tag.component.mjs +61 -0
  654. package/esm2022/time/core/base-picker.component.mjs +47 -0
  655. package/esm2022/time/core/date-primitives.mjs +2 -0
  656. package/esm2022/time/core/date.utils.mjs +54 -0
  657. package/esm2022/time/core/duration.utils.mjs +55 -0
  658. package/esm2022/time/core/math.utils.mjs +17 -0
  659. package/esm2022/time/core/misc.utils.mjs +3 -0
  660. package/esm2022/time/core/repeat-on-hold.directive.mjs +73 -0
  661. package/esm2022/time/core/time-picker-part.component.mjs +148 -0
  662. package/esm2022/time/duration-picker/duration-picker.component.mjs +197 -0
  663. package/esm2022/time/duration-picker/duration-picker.model.mjs +2 -0
  664. package/esm2022/time/duration-picker/duration-picker.translate.mjs +7 -0
  665. package/esm2022/time/duration-picker/translations.mjs +43 -0
  666. package/esm2022/time/lucca-front-ng-time.mjs +5 -0
  667. package/esm2022/time/public-api.mjs +5 -0
  668. package/esm2022/time/time-picker/time-picker.component.mjs +230 -0
  669. package/esm2022/time/time-picker/time-picker.model.mjs +3 -0
  670. package/esm2022/time/time-picker/time-picker.translate.mjs +7 -0
  671. package/esm2022/time/time-picker/translations.mjs +43 -0
  672. package/esm2022/title/lucca-front-ng-title.mjs +5 -0
  673. package/esm2022/title/public-api.mjs +6 -0
  674. package/esm2022/title/title-translate.service.mjs +3 -0
  675. package/esm2022/title/title.model.mjs +2 -0
  676. package/esm2022/title/title.module.mjs +20 -0
  677. package/esm2022/title/title.service.mjs +55 -0
  678. package/esm2022/title/title.strategy.mjs +60 -0
  679. package/esm2022/toast/lucca-front-ng-toast.mjs +5 -0
  680. package/esm2022/toast/public-api.mjs +9 -0
  681. package/esm2022/toast/toasts.component.mjs +62 -0
  682. package/esm2022/toast/toasts.model.mjs +2 -0
  683. package/esm2022/toast/toasts.module.mjs +16 -0
  684. package/esm2022/toast/toasts.service.mjs +37 -0
  685. package/esm2022/toast/toasts.translate.mjs +7 -0
  686. package/esm2022/toast/translations.mjs +27 -0
  687. package/esm2022/tooltip/animation/index.mjs +2 -0
  688. package/esm2022/tooltip/animation/tooltip.animation.mjs +16 -0
  689. package/esm2022/tooltip/lucca-front-ng-tooltip.mjs +5 -0
  690. package/esm2022/tooltip/panel/index.mjs +3 -0
  691. package/esm2022/tooltip/panel/tooltip-panel.component.mjs +44 -0
  692. package/esm2022/tooltip/panel/tooltip-panel.module.mjs +16 -0
  693. package/esm2022/tooltip/public-api.mjs +5 -0
  694. package/esm2022/tooltip/tooltip.module.mjs +17 -0
  695. package/esm2022/tooltip/trigger/index.mjs +3 -0
  696. package/esm2022/tooltip/trigger/tooltip-trigger.directive.mjs +350 -0
  697. package/esm2022/tooltip/trigger/tooltip-trigger.module.mjs +17 -0
  698. package/esm2022/user/display/display-format.model.mjs +25 -0
  699. package/esm2022/user/display/index.mjs +4 -0
  700. package/esm2022/user/display/user-display.module.mjs +17 -0
  701. package/esm2022/user/display/user-display.pipe.mjs +72 -0
  702. package/esm2022/user/lucca-front-ng-user.mjs +5 -0
  703. package/esm2022/user/picture/index.mjs +3 -0
  704. package/esm2022/user/picture/user-picture.component.mjs +85 -0
  705. package/esm2022/user/picture/user-picture.module.mjs +19 -0
  706. package/esm2022/user/public-api.mjs +8 -0
  707. package/esm2022/user/select/homonyms/index.mjs +4 -0
  708. package/esm2022/user/select/homonyms/user-homonyms.component.mjs +72 -0
  709. package/esm2022/user/select/homonyms/user-homonyms.module.mjs +16 -0
  710. package/esm2022/user/select/homonyms/user-homonyms.service.mjs +53 -0
  711. package/esm2022/user/select/index.mjs +6 -0
  712. package/esm2022/user/select/input/index.mjs +4 -0
  713. package/esm2022/user/select/input/translations.mjs +35 -0
  714. package/esm2022/user/select/input/user-select-input.component.mjs +89 -0
  715. package/esm2022/user/select/input/user-select-input.module.mjs +19 -0
  716. package/esm2022/user/select/input/user-select-input.translate.mjs +7 -0
  717. package/esm2022/user/select/me/index.mjs +3 -0
  718. package/esm2022/user/select/me/me-option.directive.mjs +123 -0
  719. package/esm2022/user/select/me/me-option.module.mjs +16 -0
  720. package/esm2022/user/select/searcher/index.mjs +4 -0
  721. package/esm2022/user/select/searcher/translations.mjs +27 -0
  722. package/esm2022/user/select/searcher/user-searcher.component.mjs +187 -0
  723. package/esm2022/user/select/searcher/user-searcher.module.mjs +16 -0
  724. package/esm2022/user/select/searcher/user-searcher.translate.mjs +7 -0
  725. package/esm2022/user/select/user-select.module.mjs +22 -0
  726. package/esm2022/user/service/index.mjs +3 -0
  727. package/esm2022/user/service/user-service.model.mjs +4 -0
  728. package/esm2022/user/service/user-v3.service.mjs +51 -0
  729. package/esm2022/user/tile/index.mjs +3 -0
  730. package/esm2022/user/tile/user-tile.component.mjs +63 -0
  731. package/esm2022/user/tile/user-tile.module.mjs +20 -0
  732. package/esm2022/user/user.model.mjs +2 -0
  733. package/esm2022/user/user.module.mjs +19 -0
  734. package/fancy-box/fancy-box.component.d.ts +11 -0
  735. package/fancy-box/index.d.ts +5 -0
  736. package/fancy-box/public-api.d.ts +1 -0
  737. package/fesm2022/lucca-front-ng-a11y.mjs +3 -3
  738. package/fesm2022/lucca-front-ng-a11y.mjs.map +1 -1
  739. package/fesm2022/lucca-front-ng-animations.mjs.map +1 -1
  740. package/fesm2022/lucca-front-ng-api.mjs +48 -48
  741. package/fesm2022/lucca-front-ng-api.mjs.map +1 -1
  742. package/fesm2022/lucca-front-ng-button.mjs +4 -4
  743. package/fesm2022/lucca-front-ng-button.mjs.map +1 -1
  744. package/fesm2022/lucca-front-ng-callout.mjs +25 -25
  745. package/fesm2022/lucca-front-ng-callout.mjs.map +1 -1
  746. package/fesm2022/lucca-front-ng-comment.mjs +9 -9
  747. package/fesm2022/lucca-front-ng-comment.mjs.map +1 -1
  748. package/fesm2022/lucca-front-ng-core-select-api.mjs +11 -11
  749. package/fesm2022/lucca-front-ng-core-select-api.mjs.map +1 -1
  750. package/fesm2022/lucca-front-ng-core-select-establishment.mjs +11 -11
  751. package/fesm2022/lucca-front-ng-core-select-establishment.mjs.map +1 -1
  752. package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs +8 -8
  753. package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs.map +1 -1
  754. package/fesm2022/lucca-front-ng-core-select-user.mjs +46 -53
  755. package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
  756. package/fesm2022/lucca-front-ng-core-select.mjs +77 -60
  757. package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
  758. package/fesm2022/lucca-front-ng-core.mjs +20 -22
  759. package/fesm2022/lucca-front-ng-core.mjs.map +1 -1
  760. package/fesm2022/lucca-front-ng-date.mjs +48 -48
  761. package/fesm2022/lucca-front-ng-date.mjs.map +1 -1
  762. package/fesm2022/lucca-front-ng-date2.mjs +775 -197
  763. package/fesm2022/lucca-front-ng-date2.mjs.map +1 -1
  764. package/fesm2022/lucca-front-ng-department.mjs +30 -31
  765. package/fesm2022/lucca-front-ng-department.mjs.map +1 -1
  766. package/fesm2022/lucca-front-ng-dialog-testing.mjs.map +1 -1
  767. package/fesm2022/lucca-front-ng-dialog.mjs +35 -42
  768. package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
  769. package/fesm2022/lucca-front-ng-divider.mjs +57 -0
  770. package/fesm2022/lucca-front-ng-divider.mjs.map +1 -0
  771. package/fesm2022/lucca-front-ng-dropdown.mjs +35 -39
  772. package/fesm2022/lucca-front-ng-dropdown.mjs.map +1 -1
  773. package/fesm2022/lucca-front-ng-empty-state.mjs +8 -8
  774. package/fesm2022/lucca-front-ng-empty-state.mjs.map +1 -1
  775. package/fesm2022/lucca-front-ng-establishment.mjs +49 -49
  776. package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
  777. package/fesm2022/lucca-front-ng-fancy-box.mjs +46 -0
  778. package/fesm2022/lucca-front-ng-fancy-box.mjs.map +1 -0
  779. package/fesm2022/lucca-front-ng-form-field.mjs +90 -164
  780. package/fesm2022/lucca-front-ng-form-field.mjs.map +1 -1
  781. package/fesm2022/lucca-front-ng-formly.mjs +79 -81
  782. package/fesm2022/lucca-front-ng-formly.mjs.map +1 -1
  783. package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs +10 -10
  784. package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs.map +1 -1
  785. package/fesm2022/lucca-front-ng-forms.mjs +72 -55
  786. package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
  787. package/fesm2022/lucca-front-ng-icon.mjs +4 -4
  788. package/fesm2022/lucca-front-ng-icon.mjs.map +1 -1
  789. package/fesm2022/lucca-front-ng-inline-message.mjs +3 -3
  790. package/fesm2022/lucca-front-ng-inline-message.mjs.map +1 -1
  791. package/fesm2022/lucca-front-ng-input.mjs +21 -21
  792. package/fesm2022/lucca-front-ng-input.mjs.map +1 -1
  793. package/fesm2022/lucca-front-ng-link.mjs +143 -0
  794. package/fesm2022/lucca-front-ng-link.mjs.map +1 -0
  795. package/fesm2022/lucca-front-ng-modal.mjs +22 -22
  796. package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
  797. package/fesm2022/lucca-front-ng-multi-select.mjs +83 -108
  798. package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
  799. package/fesm2022/lucca-front-ng-new-badge.mjs +3 -3
  800. package/fesm2022/lucca-front-ng-new-badge.mjs.map +1 -1
  801. package/fesm2022/lucca-front-ng-number-format.mjs +7 -7
  802. package/fesm2022/lucca-front-ng-number-format.mjs.map +1 -1
  803. package/fesm2022/lucca-front-ng-number.mjs +7 -7
  804. package/fesm2022/lucca-front-ng-number.mjs.map +1 -1
  805. package/fesm2022/lucca-front-ng-numeric-badge.mjs +17 -5
  806. package/fesm2022/lucca-front-ng-numeric-badge.mjs.map +1 -1
  807. package/fesm2022/lucca-front-ng-option.mjs +154 -154
  808. package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
  809. package/fesm2022/lucca-front-ng-plg-push.mjs +3 -3
  810. package/fesm2022/lucca-front-ng-plg-push.mjs.map +1 -1
  811. package/fesm2022/lucca-front-ng-popover.mjs +26 -31
  812. package/fesm2022/lucca-front-ng-popover.mjs.map +1 -1
  813. package/fesm2022/lucca-front-ng-popover2.mjs +19 -12
  814. package/fesm2022/lucca-front-ng-popover2.mjs.map +1 -1
  815. package/fesm2022/lucca-front-ng-popup-employee.mjs +26 -41
  816. package/fesm2022/lucca-front-ng-popup-employee.mjs.map +1 -1
  817. package/fesm2022/lucca-front-ng-popup.mjs +10 -10
  818. package/fesm2022/lucca-front-ng-popup.mjs.map +1 -1
  819. package/fesm2022/lucca-front-ng-qualification.mjs +15 -15
  820. package/fesm2022/lucca-front-ng-qualification.mjs.map +1 -1
  821. package/fesm2022/lucca-front-ng-safe-content.mjs +12 -13
  822. package/fesm2022/lucca-front-ng-safe-content.mjs.map +1 -1
  823. package/fesm2022/lucca-front-ng-scroll.mjs +7 -7
  824. package/fesm2022/lucca-front-ng-scroll.mjs.map +1 -1
  825. package/fesm2022/lucca-front-ng-select.mjs +14 -14
  826. package/fesm2022/lucca-front-ng-select.mjs.map +1 -1
  827. package/fesm2022/lucca-front-ng-sidepanel.mjs +7 -7
  828. package/fesm2022/lucca-front-ng-sidepanel.mjs.map +1 -1
  829. package/fesm2022/lucca-front-ng-simple-select.mjs +18 -20
  830. package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
  831. package/fesm2022/lucca-front-ng-skeleton.mjs +77 -16
  832. package/fesm2022/lucca-front-ng-skeleton.mjs.map +1 -1
  833. package/fesm2022/lucca-front-ng-statusBadge.mjs +37 -0
  834. package/fesm2022/lucca-front-ng-statusBadge.mjs.map +1 -0
  835. package/fesm2022/lucca-front-ng-tag.mjs +3 -3
  836. package/fesm2022/lucca-front-ng-tag.mjs.map +1 -1
  837. package/fesm2022/lucca-front-ng-time.mjs +21 -22
  838. package/fesm2022/lucca-front-ng-time.mjs.map +1 -1
  839. package/fesm2022/lucca-front-ng-title.mjs +10 -10
  840. package/fesm2022/lucca-front-ng-title.mjs.map +1 -1
  841. package/fesm2022/lucca-front-ng-toast.mjs +12 -12
  842. package/fesm2022/lucca-front-ng-toast.mjs.map +1 -1
  843. package/fesm2022/lucca-front-ng-tooltip.mjs +104 -141
  844. package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
  845. package/fesm2022/lucca-front-ng-user.mjs +85 -94
  846. package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
  847. package/form-field/form-field.component.d.ts +29 -33
  848. package/forms/number-input/number-input.component.d.ts +13 -10
  849. package/link/index.d.ts +5 -0
  850. package/link/link.component.d.ts +23 -0
  851. package/link/link.translate.d.ts +7 -0
  852. package/link/public-api.d.ts +1 -0
  853. package/link/translations.d.ts +23 -0
  854. package/modal/modal-panel.component.d.ts +1 -1
  855. package/multi-select/displayer/displayer-input.directive.d.ts +2 -2
  856. package/multi-select/input/panel-ref.factory.d.ts +0 -2
  857. package/multi-select/input/select-input.component.d.ts +1 -3
  858. package/multi-select/panel/panel.component.d.ts +0 -1
  859. package/multi-select/public-api.d.ts +1 -2
  860. package/multi-select/select.validators.d.ts +5 -0
  861. package/numeric-badge/numeric-badge.component.d.ts +3 -1
  862. package/option/picker/option-picker-advanced.component.d.ts +1 -1
  863. package/option/picker/option-picker.component.d.ts +1 -1
  864. package/option/picker/tree-option-picker-advanced.component.d.ts +1 -1
  865. package/option/picker/tree-option-picker.component.d.ts +1 -1
  866. package/package.json +156 -21
  867. package/popover2/popover.directive.d.ts +8 -2
  868. package/popup-employee/popup-employee.translate.d.ts +0 -2
  869. package/popup-employee/translations.d.ts +0 -16
  870. package/safe-content/safe-content.module.d.ts +0 -3
  871. package/safe-content/safe-html.pipe.d.ts +1 -0
  872. package/schematics/action-icon/index.js +2 -3
  873. package/schematics/action-icon/migration.js +3 -2
  874. package/schematics/empty-state-title/index.js +1 -2
  875. package/schematics/lib/angular-template.js +7 -6
  876. package/schematics/lib/css-mapper.js +4 -4
  877. package/schematics/lib/file-update.js +3 -2
  878. package/schematics/lib/html-ast.js +4 -4
  879. package/schematics/lib/local-deps/installer.js +2 -1
  880. package/schematics/lib/local-deps/package-lock.json +30 -30
  881. package/schematics/lib/local-deps/package.json +2 -2
  882. package/schematics/lib/local-deps/postcss-selector-parser.js +0 -1
  883. package/schematics/lib/local-deps/postcss-value-parser.js +0 -1
  884. package/schematics/lib/migration-test.js +5 -4
  885. package/schematics/lib/schematics.js +2 -1
  886. package/schematics/lib/scss-ast.js +11 -10
  887. package/schematics/lib/typescript-ast.js +2 -1
  888. package/schematics/new-icons/index.js +3 -4
  889. package/schematics/new-icons/migration.js +4 -3
  890. package/schematics/ng-add/index.js +2 -1
  891. package/schematics/ng-add/tasks.js +5 -4
  892. package/schematics/palettes/index.js +0 -1
  893. package/schematics/tokens-spacing/index.js +0 -1
  894. package/select/input/select-input.component.d.ts +1 -1
  895. package/simple-select/input/panel-ref.factory.d.ts +0 -2
  896. package/simple-select/panel/panel.component.d.ts +0 -1
  897. package/skeleton/public-api.d.ts +4 -1
  898. package/skeleton/skeleton-data-table/skeleton-data-table.component.d.ts +12 -0
  899. package/skeleton/skeleton-index-table/skeleton-index-table.component.d.ts +12 -0
  900. package/skeleton/skeleton-table/skeleton-table.component.d.ts +12 -0
  901. package/src/components/_dropdown.scss +6 -0
  902. package/src/components/_popup.scss +1 -1
  903. package/src/components/_sidepanel.scss +0 -4
  904. package/src/components/cdk/_overlay.scss +0 -4
  905. package/statusBadge/index.d.ts +5 -0
  906. package/statusBadge/public-api.d.ts +1 -0
  907. package/statusBadge/statusBadge.component.d.ts +12 -0
  908. package/time/core/base-picker.component.d.ts +1 -1
  909. package/time/core/date.utils.d.ts +4 -4
  910. package/time/core/misc.utils.d.ts +1 -1
  911. package/tooltip/panel/tooltip-panel.component.d.ts +2 -2
  912. package/tooltip/trigger/tooltip-trigger.directive.d.ts +19 -4
  913. package/user/picture/user-picture.component.d.ts +1 -1
  914. package/user/picture/user-picture.module.d.ts +3 -4
  915. package/user/tile/user-tile.component.d.ts +1 -1
  916. package/user/tile/user-tile.module.d.ts +4 -4
  917. package/multi-select/select.utils.d.ts +0 -14
  918. package/tooltip/trigger/ellipsis.ruler.d.ts +0 -27
@@ -21,6 +21,7 @@ export declare class PortalDirective<T = unknown> implements OnChanges, OnDestro
21
21
  * @see https://github.com/angular/angular/pull/51887
22
22
  */
23
23
  private updateEmbeddedViewContext;
24
+ static ngTemplateContextGuard<T>(_dir: PortalDirective<T>, ctx: unknown): ctx is void;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<PortalDirective<any>, never>;
25
26
  static ɵdir: i0.ɵɵDirectiveDeclaration<PortalDirective<any>, "[luPortal]", never, { "luPortal": { "alias": "luPortal"; "required": true; }; "luPortalContext": { "alias": "luPortalContext"; "required": false; }; }, {}, never, never, true, never>;
26
27
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Available CSS palettes
3
3
  */
4
- export type Palette = 'success' | 'warning' | 'error' | 'product' | 'brand' | 'neutral' | 'none' | 'primary' | 'grey';
4
+ export type Palette = 'success' | 'warning' | 'error' | 'product' | 'neutral' | 'none' | 'primary' | 'grey';
5
5
  export type DecorativePalette = 'kiwi' | 'lime' | 'cucumber' | 'mint' | 'glacier' | 'lagoon' | 'blueberry' | 'lavender' | 'grape' | 'watermelon' | 'pumpkin' | 'pineapple';
@@ -35,5 +35,5 @@ export declare abstract class ALuCoreSelectApiDirective<TOption, TParams = Recor
35
35
  }>;
36
36
  ngOnDestroy(): void;
37
37
  static ɵfac: i0.ɵɵFactoryDeclaration<ALuCoreSelectApiDirective<any, any>, never>;
38
- static ɵdir: i0.ɵɵDirectiveDeclaration<ALuCoreSelectApiDirective<any, any>, never, never, {}, {}, never, never, true, never>;
38
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ALuCoreSelectApiDirective<any, any>, never, never, {}, {}, never, never, false, never>;
39
39
  }
@@ -76,8 +76,8 @@ export declare abstract class ALuSelectInputComponent<TOption, TValue> implement
76
76
  protected emptyClue(): void;
77
77
  closePanel(): void;
78
78
  writeValue(value: TValue): void;
79
- updateValue(value: TValue, skipPanelOpen?: boolean, noClear?: boolean): void;
79
+ updateValue(value: TValue, skipPanelOpen?: boolean): void;
80
80
  static ɵfac: i0.ɵɵFactoryDeclaration<ALuSelectInputComponent<any, any>, never>;
81
- static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "addOptionLabel": { "alias": "addOptionLabel"; "required": false; }; "addOptionStrategy": { "alias": "addOptionStrategy"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionKey": { "alias": "optionKey"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; "isSignal": true; }; "valueTpl": { "alias": "valueTpl"; "required": false; "isSignal": true; }; "panelHeaderTpl": { "alias": "panelHeaderTpl"; "required": false; "isSignal": true; }; }, { "optionTpl": "optionTplChange"; "valueTpl": "valueTplChange"; "panelHeaderTpl": "panelHeaderTplChange"; "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "addOption": "addOption"; }, never, never, true, never>;
81
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "addOptionLabel": { "alias": "addOptionLabel"; "required": false; }; "addOptionStrategy": { "alias": "addOptionStrategy"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionKey": { "alias": "optionKey"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; "isSignal": true; }; "valueTpl": { "alias": "valueTpl"; "required": false; "isSignal": true; }; "panelHeaderTpl": { "alias": "panelHeaderTpl"; "required": false; "isSignal": true; }; }, { "optionTpl": "optionTplChange"; "valueTpl": "valueTplChange"; "panelHeaderTpl": "panelHeaderTplChange"; "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "addOption": "addOption"; }, never, never, false, never>;
82
82
  static ngAcceptInputType_clearable: unknown;
83
83
  }
@@ -1,4 +1,3 @@
1
- import { OverlayRef } from '@angular/cdk/overlay';
2
1
  import { Provider } from '@angular/core';
3
2
  export declare function provideLuSelectLabelsAndIds(): Provider[];
4
- export declare function addAttributesOnCdkContainer(overlayRef: OverlayRef, selectLabelId: string, selectId: number): void;
3
+ export declare function provideLuSelectOverlayContainer(): Provider[];
@@ -4,4 +4,4 @@ export type GroupTemplateLocation = 'group-header' | 'option' | 'none';
4
4
  * In order to avoid a blinking when we go from empty clue to a clue
5
5
  * We need to delay the change of group displayer location by waiting for the options to be updated.
6
6
  */
7
- export declare function getGroupTemplateLocation(hasGrouping: boolean, clueChange$: Observable<string>, options$: Observable<unknown[]>, searchable?: boolean): Observable<GroupTemplateLocation>;
7
+ export declare function getGroupTemplateLocation(hasGrouping: boolean, clueChange$: Observable<string>, options$: Observable<unknown[]>): Observable<GroupTemplateLocation>;
@@ -1 +1 @@
1
- export declare const applySearchDelimiter: (clue: string, delimiter: string) => string;
1
+ export declare const sanitizeClueFilter: (clue: string, delimiter: string) => string;
@@ -1,12 +1,10 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
- import { Provider, Type } from '@angular/core';
3
2
  import { CoreSelectApiTotalCountProvider } from '@lucca-front/ng/core-select';
4
3
  import { ALuCoreSelectApiDirective } from '@lucca-front/ng/core-select/api';
5
4
  import { LuDisplayFormat } from '@lucca-front/ng/user';
6
5
  import { Observable } from 'rxjs';
7
6
  import { LuCoreSelectUser, LuCoreSelectWithAdditionnalInformation } from './user-option.model';
8
7
  import * as i0 from "@angular/core";
9
- export declare function provideCoreSelectUsersContext(directiveFn: () => Type<LuCoreSelectUsersDirective>): Provider[];
10
8
  export declare class LuCoreSelectUsersDirective<T extends LuCoreSelectUser = LuCoreSelectUser> extends ALuCoreSelectApiDirective<LuCoreSelectWithAdditionnalInformation<T>> implements CoreSelectApiTotalCountProvider {
11
9
  #private;
12
10
  protected httpClient: HttpClient;
@@ -23,6 +21,7 @@ export declare class LuCoreSelectUsersDirective<T extends LuCoreSelectUser = LuC
23
21
  searchDelimiter: import("@angular/core").InputSignal<string>;
24
22
  constructor();
25
23
  protected defaultUrl: import("@angular/core").Signal<string>;
24
+ protected displayMeOption$: Observable<boolean>;
26
25
  protected urlOrDefault: import("@angular/core").Signal<string>;
27
26
  protected clue: import("@angular/core").Signal<string>;
28
27
  protected params$: Observable<Record<string, string | number | boolean>>;
@@ -0,0 +1,36 @@
1
+ import { CalendarMode } from './calendar2/calendar-mode';
2
+ import { CellStatus } from './calendar2/cell-status';
3
+ import { DateRange } from './calendar2/date-range';
4
+ import * as i0 from "@angular/core";
5
+ export declare abstract class AbstractDateComponent {
6
+ protected locale: string;
7
+ protected dateFormat: string;
8
+ intlDateTimeFormat: Intl.DateTimeFormat;
9
+ intlDateTimeFormatMonth: Intl.DateTimeFormat;
10
+ intlDateTimeFormatYear: Intl.DateTimeFormat;
11
+ intl: import("./date2.translate").Date2Translate;
12
+ onTouched?: () => void;
13
+ disabled: boolean;
14
+ ranges: import("@angular/core").InputSignal<DateRange[]>;
15
+ hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
16
+ hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
17
+ clearable: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
18
+ mode: import("@angular/core").InputSignal<CalendarMode>;
19
+ hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
20
+ getCellInfo: import("@angular/core").InputSignal<(day: Date, mode: CalendarMode) => CellStatus>;
21
+ min: import("@angular/core").InputSignal<Date>;
22
+ max: import("@angular/core").InputSignal<Date>;
23
+ calendarMode: import("@angular/core").WritableSignal<CalendarMode>;
24
+ dateFormatLocalized: import("@angular/core").Signal<string>;
25
+ protected currentDate: import("@angular/core").WritableSignal<Date>;
26
+ protected tabbableDate: import("@angular/core").WritableSignal<Date>;
27
+ isInMinMax(date: Date, mode: CalendarMode): boolean;
28
+ isValidDate(date: Date): boolean;
29
+ prev(mode: CalendarMode): void;
30
+ next(mode: CalendarMode): void;
31
+ registerOnTouched(fn: () => void): void;
32
+ setDisabledState?(isDisabled: boolean): void;
33
+ move(direction: 1 | -1, mode: CalendarMode): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDateComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<AbstractDateComponent, "ng-component", never, { "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
36
+ }
@@ -1,21 +1,24 @@
1
- import { DateRange } from './date-range';
2
1
  import { CellStatus } from './cell-status';
2
+ import { DateRange } from './date-range';
3
+ export interface RangeInfo {
4
+ range?: DateRange;
5
+ isStart: boolean;
6
+ isEnd: boolean;
7
+ label?: string;
8
+ }
3
9
  export interface CalendarCellInfo {
4
10
  day: number;
5
- isWeekend: boolean;
6
- isOverflow: boolean;
7
11
  date: Date;
8
12
  status: CellStatus;
9
- isCurrent: boolean;
10
- classes: string[];
11
13
  disabled: boolean;
14
+ isWeekend: boolean;
15
+ isCurrent: boolean;
16
+ isOverflow: boolean;
17
+ isSelected: boolean;
18
+ noButton: boolean;
12
19
  label?: string;
13
- rangeInfo: {
14
- range?: DateRange;
15
- isStart: boolean;
16
- isEnd: boolean;
17
- label?: string;
18
- };
20
+ rangeInfo: RangeInfo;
21
+ ngClasses: Record<string, boolean>;
19
22
  }
20
23
  export interface CalendarMonthInfo {
21
24
  date: Date;
@@ -23,10 +26,14 @@ export interface CalendarMonthInfo {
23
26
  long: string;
24
27
  isCurrent: boolean;
25
28
  status: CellStatus;
29
+ rangeInfo: RangeInfo;
30
+ ngClasses: Record<string, boolean>;
26
31
  }
27
32
  export interface CalendarYearInfo {
28
33
  date: Date;
29
- label: string;
34
+ name: string;
30
35
  isCurrent: boolean;
31
36
  status: CellStatus;
37
+ rangeInfo: RangeInfo;
38
+ ngClasses: Record<string, boolean>;
32
39
  }
@@ -11,9 +11,11 @@ export declare class Calendar2Component implements OnInit {
11
11
  intl: import("../date2.translate").Date2Translate;
12
12
  showOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
13
13
  enableOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
14
+ removeYearOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
14
15
  hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
15
16
  hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
16
17
  hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
18
+ disableModeChange: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
17
19
  date: import("@angular/core").ModelSignal<Date>;
18
20
  tabbableDate: import("@angular/core").ModelSignal<Date>;
19
21
  mode: import("@angular/core").ModelSignal<CalendarMode>;
@@ -28,6 +30,7 @@ export declare class Calendar2Component implements OnInit {
28
30
  nextPage: import("@angular/core").OutputEmitterRef<void>;
29
31
  previousPage: import("@angular/core").OutputEmitterRef<void>;
30
32
  dateClicked: import("@angular/core").OutputEmitterRef<Date>;
33
+ dateHovered: import("@angular/core").ModelSignal<Date>;
31
34
  todayLabel: string;
32
35
  thisMonthLabel: string;
33
36
  thisYearLabel: string;
@@ -49,7 +52,7 @@ export declare class Calendar2Component implements OnInit {
49
52
  ngOnInit(): void;
50
53
  onCellClicked(date: Date): void;
51
54
  dateToCellInfo(date: Date, isOverflow?: boolean): CalendarCellInfo;
52
- getRangeInfo(date: Date, scope: CalendarMode): {
55
+ getRangeInfo(date: Date, scope: CalendarMode, isOverflow?: boolean): {
53
56
  range: DateRange;
54
57
  isStart: boolean;
55
58
  isEnd: boolean;
@@ -57,5 +60,5 @@ export declare class Calendar2Component implements OnInit {
57
60
  class: string;
58
61
  };
59
62
  static ɵfac: i0.ɵɵFactoryDeclaration<Calendar2Component, never>;
60
- static ɵcmp: i0.ɵɵComponentDeclaration<Calendar2Component, "lu-calendar2", never, { "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "tabbableDate": { "alias": "tabbableDate"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; }, { "date": "dateChange"; "tabbableDate": "tabbableDateChange"; "mode": "modeChange"; "displayMode": "displayModeChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "dateClicked": "dateClicked"; }, never, never, true, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<Calendar2Component, "lu-calendar2", never, { "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "removeYearOverflow": { "alias": "removeYearOverflow"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "disableModeChange": { "alias": "disableModeChange"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "tabbableDate": { "alias": "tabbableDate"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; "dateHovered": { "alias": "dateHovered"; "required": false; "isSignal": true; }; }, { "date": "dateChange"; "tabbableDate": "tabbableDateChange"; "mode": "modeChange"; "displayMode": "displayModeChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "dateClicked": "dateClicked"; "dateHovered": "dateHoveredChange"; }, never, never, true, never>;
61
64
  }
@@ -1 +1,2 @@
1
1
  export declare function getDateFormat(locale: string): string;
2
+ export declare function getLocalizedDateFormat(locale: string, period?: 'year' | 'month' | 'day'): string;
@@ -2,35 +2,19 @@ import { ConnectionPositionPair } from '@angular/cdk/overlay';
2
2
  import { ElementRef } from '@angular/core';
3
3
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
4
4
  import { PopoverDirective } from '@lucca-front/ng/popover2';
5
+ import { AbstractDateComponent } from '../abstract-date-component';
5
6
  import { CalendarMode } from '../calendar2/calendar-mode';
6
7
  import { Calendar2Component } from '../calendar2/calendar2.component';
7
8
  import { CellStatus } from '../calendar2/cell-status';
8
- import { DateRange } from '../calendar2/date-range';
9
9
  import * as i0 from "@angular/core";
10
- export declare class DateInputComponent implements ControlValueAccessor, Validator {
10
+ export declare class DateInputComponent extends AbstractDateComponent implements ControlValueAccessor, Validator {
11
11
  #private;
12
- intl: import("../date2.translate").Date2Translate;
13
- onTouched?: () => void;
14
- disabled: boolean;
15
- min: import("@angular/core").InputSignal<Date>;
16
- max: import("@angular/core").InputSignal<Date>;
17
- ranges: import("@angular/core").InputSignal<DateRange[]>;
18
- disableOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
19
- hideOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
20
- hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
21
- hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
22
- clearable: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
23
12
  placeholder: import("@angular/core").InputSignal<string>;
24
- mode: import("@angular/core").InputSignal<CalendarMode>;
25
- hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
26
- getCellInfo: import("@angular/core").InputSignal<(day: Date, mode: CalendarMode) => CellStatus>;
13
+ enableOverflow: import("@angular/core").InputSignal<boolean>;
14
+ showOverflow: import("@angular/core").InputSignal<boolean>;
27
15
  popoverPositions: ConnectionPositionPair[];
28
- calendarMode: import("@angular/core").WritableSignal<CalendarMode>;
29
16
  inputFocused: import("@angular/core").WritableSignal<boolean>;
30
- protected currentDate: import("@angular/core").WritableSignal<Date>;
31
- protected tabbableDate: import("@angular/core").WritableSignal<Date>;
32
17
  selectedDate: import("@angular/core").WritableSignal<Date>;
33
- dateFromWriteValue: import("@angular/core").WritableSignal<Date>;
34
18
  calendar: import("@angular/core").Signal<Calendar2Component>;
35
19
  displayValue: import("@angular/core").Signal<string>;
36
20
  userTextInput: import("@angular/core").WritableSignal<string>;
@@ -40,19 +24,11 @@ export declare class DateInputComponent implements ControlValueAccessor, Validat
40
24
  get isNavigationButtonFocused(): boolean;
41
25
  constructor();
42
26
  openPopover(ref: PopoverDirective): void;
43
- arrowDown(popoverRef: PopoverDirective): void;
44
27
  validate(control: AbstractControl<Date, Date>): ValidationErrors;
45
- isValidDate(date: Date): boolean;
46
- isInMinMax(date: Date, mode: CalendarMode): boolean;
47
28
  writeValue(date: Date): void;
48
29
  registerOnChange(fn: (value: Date) => void): void;
49
- registerOnTouched(fn: () => void): void;
50
- setDisabledState?(isDisabled: boolean): void;
51
- prev(): void;
52
- next(): void;
53
30
  clear(input: HTMLInputElement): void;
54
31
  currentDateChangeFromCalendar(date: Date): void;
55
- move(direction: 1 | -1): void;
56
32
  static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, never>;
57
- static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "lu-date-input", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "disableOverflow": { "alias": "disableOverflow"; "required": false; "isSignal": true; }; "hideOverflow": { "alias": "hideOverflow"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "lu-date-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
58
34
  }
@@ -0,0 +1,6 @@
1
+ import { DateRange } from '../calendar2/date-range';
2
+ export interface CalendarShortcut {
3
+ label: string;
4
+ range: DateRange;
5
+ }
6
+ export declare const PremadeShortcuts: Record<string, (locale: string) => DateRange>;
@@ -0,0 +1,63 @@
1
+ import { ConnectionPositionPair } from '@angular/cdk/overlay';
2
+ import { ElementRef, Signal } from '@angular/core';
3
+ import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
4
+ import { PortalContent } from '@lucca-front/ng/core';
5
+ import { PopoverDirective } from '@lucca-front/ng/popover2';
6
+ import { AbstractDateComponent } from '../abstract-date-component';
7
+ import { CalendarMode } from '../calendar2/calendar-mode';
8
+ import { Calendar2Component } from '../calendar2/calendar2.component';
9
+ import { CellStatus } from '../calendar2/cell-status';
10
+ import { DateRange } from '../calendar2/date-range';
11
+ import { CalendarShortcut } from './calendar-shortcut';
12
+ import * as i0 from "@angular/core";
13
+ export declare class DateRangeInputComponent extends AbstractDateComponent implements ControlValueAccessor, Validator {
14
+ #private;
15
+ hasTwoCalendars: Signal<boolean>;
16
+ idSuffix: number;
17
+ startTextInputRef: Signal<ElementRef<HTMLInputElement>>;
18
+ endTextInputRef: Signal<ElementRef<HTMLInputElement>>;
19
+ selectedRange: import("@angular/core").WritableSignal<DateRange>;
20
+ dateHovered: import("@angular/core").WritableSignal<Date>;
21
+ placeholder: import("@angular/core").InputSignal<string>;
22
+ label: PortalContent;
23
+ popoverPositions: ConnectionPositionPair[];
24
+ inputFocused: import("@angular/core").WritableSignal<boolean>;
25
+ editedField: import("@angular/core").WritableSignal<0 | 1 | -1>;
26
+ highlightedField: import("@angular/core").WritableSignal<0 | 1 | -1>;
27
+ shortcuts: import("@angular/core").InputSignal<CalendarShortcut[]>;
28
+ autocomplete: string;
29
+ protected currentRightDate: Signal<Date>;
30
+ protected currentStartDisplayDate: Signal<Date>;
31
+ protected currentEndDisplayDate: Signal<Date>;
32
+ calendars: Signal<readonly Calendar2Component[]>;
33
+ combinedGetCellInfo: (date: Date, mode: CalendarMode) => CellStatus;
34
+ calendarRanges: Signal<DateRange[]>;
35
+ startLabel: Signal<string>;
36
+ startTextInput: import("@angular/core").WritableSignal<string>;
37
+ endLabel: Signal<string>;
38
+ endTextInput: import("@angular/core").WritableSignal<string>;
39
+ previousButton: Signal<ElementRef<Element>>;
40
+ nextButton: Signal<ElementRef<Element>>;
41
+ focusedCalendarIndex: import("@angular/core").WritableSignal<number>;
42
+ focusedCalendar: Signal<Calendar2Component>;
43
+ get isNavigationButtonFocused(): boolean;
44
+ constructor();
45
+ getNextCalendarDate(date: Date): Date;
46
+ popoverClosed(): void;
47
+ setupInputEffect(inputSignal: Signal<string | null>, rangeProperty: 'start' | 'end'): void;
48
+ inputBlur(): void;
49
+ fixOrderIfNeeded(): void;
50
+ tabbableDateChange(date: Date, calendarIndex: number): void;
51
+ openPopover(ref: PopoverDirective, propertyToFocus?: 'start' | 'end', focusTabbableDate?: boolean): void;
52
+ dateClicked(date: Date, popoverRef: PopoverDirective): void;
53
+ arrowDown(popoverRef: PopoverDirective, fieldToFocus: 'start' | 'end'): void;
54
+ validate(control: AbstractControl<DateRange, DateRange>): ValidationErrors;
55
+ writeValue(value: DateRange): void;
56
+ registerOnChange(fn: (value: DateRange) => void): void;
57
+ clear(start: HTMLInputElement, end: HTMLInputElement): void;
58
+ currentDateChangeFromCalendar(date: Date): void;
59
+ getDateLabelForInput(date: Date): string;
60
+ selectShortcut(shortcut: CalendarShortcut, popover: PopoverDirective): void;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeInputComponent, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputComponent, "lu-date-range-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "shortcuts": { "alias": "shortcuts"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, {}, never, never, true, never>;
63
+ }
@@ -1,4 +1,6 @@
1
1
  export * from './calendar2/calendar2.component';
2
2
  export * from './calendar2/cell-status';
3
3
  export * from './date-input/date-input.component';
4
+ export * from './date-range-input/date-range-input.component';
5
+ export * from './date-range-input/calendar-shortcut';
4
6
  export * from './date-format';
package/date2/utils.d.ts CHANGED
@@ -4,4 +4,5 @@ import { CalendarMode } from './calendar2/calendar-mode';
4
4
  export declare function getIntlWeekDay(date: Date): CalendarWeekDay;
5
5
  export declare function getJSFirstDayOfWeek(weekInfo: CalendarWeekInfo): Day;
6
6
  export declare function comparePeriods(mode: CalendarMode, a: Date, b: Date): boolean;
7
+ export declare function compareCalendarPeriods(mode: CalendarMode, a: Date, b: Date): boolean;
7
8
  export declare function startOfPeriod(mode: CalendarMode, date: Date): Date;
@@ -11,7 +11,7 @@ export declare class DialogRoutingComponent<C> implements OnInit {
11
11
  readonly dialogComponentContent: import("@angular/core").Signal<import("@angular/cdk/portal").ComponentType<C>>;
12
12
  protected readonly dialogTemplate: import("@angular/core").Signal<TemplateRef<any>>;
13
13
  readonly customInjector: Injector;
14
- ngOnInit(): void;
14
+ ngOnInit(): Promise<void>;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogRoutingComponent<any>, never>;
16
16
  static ɵcmp: i0.ɵɵComponentDeclaration<DialogRoutingComponent<any>, "lu-dialog-routing", never, {}, {}, never, never, true, never>;
17
17
  }
@@ -0,0 +1,17 @@
1
+ import { ElementRef, OnChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DividerComponent implements OnChanges {
4
+ #private;
5
+ content: ElementRef;
6
+ divider: boolean;
7
+ withRole: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
8
+ role: import("@angular/core").Signal<string>;
9
+ get attrRole(): string;
10
+ vertical: false;
11
+ size: 'M' | 'S';
12
+ ngOnChanges(): void;
13
+ updateClasses(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "lu-divider", never, { "withRole": { "alias": "withRole"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
16
+ static ngAcceptInputType_vertical: unknown;
17
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@lucca-front/ng/divider" />
5
+ export * from './public-api';
@@ -0,0 +1 @@
1
+ export * from './divider.component';
@@ -10,5 +10,5 @@ export declare class LuDropdownItemDirective extends ALuDropdownItem implements
10
10
  focus(): void;
11
11
  ngOnDestroy(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownItemDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownItemDirective, "[luDropdownItem]", ["LuDropdownItem"], {}, { "onSelect": "onSelect"; }, never, never, true, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownItemDirective, "[luDropdownItem]", ["LuDropdownItem"], {}, { "onSelect": "onSelect"; }, never, never, false, never>;
14
14
  }
@@ -1,10 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./dropdown-item.directive";
3
- /**
4
- * @deprecated use `LuDropdownItemDirective` instead
5
- */
6
3
  export declare class LuDropdownItemModule {
7
4
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownItemModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownItemModule, never, [typeof i1.LuDropdownItemDirective], [typeof i1.LuDropdownItemDirective]>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownItemModule, [typeof i1.LuDropdownItemDirective], never, [typeof i1.LuDropdownItemDirective]>;
9
6
  static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownItemModule>;
10
7
  }
@@ -36,5 +36,5 @@ export declare class LuDropdownPanelComponent extends ALuPopoverPanel implements
36
36
  onOpen(): void;
37
37
  private focusFirstItem;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownPanelComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<LuDropdownPanelComponent, "lu-dropdown", ["LuDropdownPanel"], { "inputPanelClasses": { "alias": "panel-classes"; "required": false; }; "inputContentClasses": { "alias": "content-classes"; "required": false; }; }, { "close": "close"; "open": "open"; "hovered": "hovered"; }, ["optionsQL"], ["*"], true, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<LuDropdownPanelComponent, "lu-dropdown", ["LuDropdownPanel"], { "inputPanelClasses": { "alias": "panel-classes"; "required": false; }; "inputContentClasses": { "alias": "content-classes"; "required": false; }; }, { "close": "close"; "open": "open"; "hovered": "hovered"; }, ["optionsQL"], ["*"], false, never>;
40
40
  }
@@ -1,10 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./dropdown-panel.component";
3
- /**
4
- * @deprecated use `LuDropdownPanelComponent` instead
5
- */
3
+ import * as i2 from "@angular/common";
6
4
  export declare class LuDropdownPanelModule {
7
5
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownPanelModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownPanelModule, never, [typeof i1.LuDropdownPanelComponent], [typeof i1.LuDropdownPanelComponent]>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownPanelModule, [typeof i1.LuDropdownPanelComponent], [typeof i2.CommonModule], [typeof i1.LuDropdownPanelComponent]>;
9
7
  static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownPanelModule>;
10
8
  }
@@ -38,5 +38,5 @@ export declare class LuDropdownTriggerDirective<TPanel extends ILuDropdownPanel
38
38
  protected _emitOpen(): void;
39
39
  protected _emitClose(): void;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownTriggerDirective<any>, never>;
41
- static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownTriggerDirective<any>, "[luDropdown]", ["LuDropdownTrigger"], { "inputPanel": { "alias": "luDropdown"; "required": false; }; "inputPosition": { "alias": "luDropdownPosition"; "required": false; }; "inputAlignment": { "alias": "luDropdownAlignment"; "required": false; }; "inputDisabled": { "alias": "luDropdownDisabled"; "required": false; }; "inputOverlap": { "alias": "luDropdownOverlap"; "required": false; }; }, { "onOpen": "luDropdownOnOpen"; "onClose": "luDropdownOnClose"; }, never, never, true, never>;
41
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownTriggerDirective<any>, "[luDropdown]", ["LuDropdownTrigger"], { "inputPanel": { "alias": "luDropdown"; "required": false; }; "inputPosition": { "alias": "luDropdownPosition"; "required": false; }; "inputAlignment": { "alias": "luDropdownAlignment"; "required": false; }; "inputDisabled": { "alias": "luDropdownDisabled"; "required": false; }; "inputOverlap": { "alias": "luDropdownOverlap"; "required": false; }; }, { "onOpen": "luDropdownOnOpen"; "onClose": "luDropdownOnClose"; }, never, never, false, never>;
42
42
  }
@@ -1,10 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./dropdown-trigger.directive";
3
- /**
4
- * @deprecated use `LuDropdownTriggerDirective` instead
5
- */
3
+ import * as i2 from "@angular/cdk/overlay";
6
4
  export declare class LuDropdownTriggerModule {
7
5
  static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownTriggerModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownTriggerModule, never, [typeof i1.LuDropdownTriggerDirective], [typeof i1.LuDropdownTriggerDirective]>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownTriggerModule, [typeof i1.LuDropdownTriggerDirective], [typeof i2.OverlayModule], [typeof i1.LuDropdownTriggerDirective]>;
9
7
  static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownTriggerModule>;
10
8
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibHVjY2EtZnJvbnQtbmctYTExeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2ExMXkvbHVjY2EtZnJvbnQtbmctYTExeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,3 @@
1
+ export * from './skip-links/skip-links.component';
2
+ export * from './skip-links/skip-links.translate';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2ExMXkvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9za2lwLWxpbmtzL3NraXAtbGlua3MudHJhbnNsYXRlJztcbiJdfQ==
@@ -0,0 +1,24 @@
1
+ import { DOCUMENT } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
3
+ import { getIntl } from '@lucca-front/ng/core';
4
+ import { LU_SKIP_LINKS_TRANSLATIONS } from './skip-links.translate';
5
+ import * as i0 from "@angular/core";
6
+ export class LuSkipLinksComponent {
7
+ constructor() {
8
+ this.#document = inject(DOCUMENT);
9
+ this.intl = getIntl(LU_SKIP_LINKS_TRANSLATIONS);
10
+ }
11
+ #document;
12
+ anchor(hash, e) {
13
+ e.preventDefault();
14
+ this.#document.location.hash = '';
15
+ this.#document.location.hash = hash;
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: LuSkipLinksComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: LuSkipLinksComponent, isStandalone: true, selector: "lu-skip-links", ngImport: i0, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-neutral mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\"\n\t\t>{{ intl.Goto_Content }}</a\n\t>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:var(--pr-t-spacings-150);bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--pr-t-spacings-50) var(--pr-t-spacings-100);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-neutral-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--palettes-neutral-0);cursor:pointer}.skipLinks-action:focus-visible{outline:2px solid var(--palettes-product-700);outline-offset:2px}.skipLinks-action:not(:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
19
+ }
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: LuSkipLinksComponent, decorators: [{
21
+ type: Component,
22
+ args: [{ selector: 'lu-skip-links', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, encapsulation: ViewEncapsulation.None, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-neutral mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\"\n\t\t>{{ intl.Goto_Content }}</a\n\t>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:var(--pr-t-spacings-150);bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--pr-t-spacings-50) var(--pr-t-spacings-100);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-neutral-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--palettes-neutral-0);cursor:pointer}.skipLinks-action:focus-visible{outline:2px solid var(--palettes-product-700);outline-offset:2px}.skipLinks-action:not(:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}\n"] }]
23
+ }] });
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQy9DLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQVVwRSxNQUFNLE9BQU8sb0JBQW9CO0lBUmpDO1FBU0MsY0FBUyxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUVuQixTQUFJLEdBQUcsT0FBTyxDQUFDLDBCQUEwQixDQUFDLENBQUM7S0FPckQ7SUFUQSxTQUFTLENBQW9CO0lBSTdCLE1BQU0sQ0FBQyxJQUFZLEVBQUUsQ0FBUTtRQUM1QixDQUFDLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDbkIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNsQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUM7OEdBVFcsb0JBQW9CO2tHQUFwQixvQkFBb0IseUVDYmpDLGluQkFZQTs7MkZEQ2Esb0JBQW9CO2tCQVJoQyxTQUFTOytCQUNDLGVBQWUsbUJBR1IsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLGlCQUNELGlCQUFpQixDQUFDLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBET0NVTUVOVCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBnZXRJbnRsIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL2NvcmUnO1xuaW1wb3J0IHsgTFVfU0tJUF9MSU5LU19UUkFOU0xBVElPTlMgfSBmcm9tICcuL3NraXAtbGlua3MudHJhbnNsYXRlJztcblxuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiAnbHUtc2tpcC1saW5rcycsXG5cdHRlbXBsYXRlVXJsOiAnLi9za2lwLWxpbmtzLmNvbXBvbmVudC5odG1sJyxcblx0c3R5bGVVcmxzOiBbJy4vc2tpcC1saW5rcy5jb21wb25lbnQuc2NzcyddLFxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcblx0c3RhbmRhbG9uZTogdHJ1ZSxcblx0ZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgTHVTa2lwTGlua3NDb21wb25lbnQge1xuXHQjZG9jdW1lbnQgPSBpbmplY3QoRE9DVU1FTlQpO1xuXG5cdHByb3RlY3RlZCBpbnRsID0gZ2V0SW50bChMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyk7XG5cblx0YW5jaG9yKGhhc2g6IHN0cmluZywgZTogRXZlbnQpIHtcblx0XHRlLnByZXZlbnREZWZhdWx0KCk7XG5cdFx0dGhpcy4jZG9jdW1lbnQubG9jYXRpb24uaGFzaCA9ICcnO1xuXHRcdHRoaXMuI2RvY3VtZW50LmxvY2F0aW9uLmhhc2ggPSBoYXNoO1xuXHR9XG59XG4iLCI8bmF2IHJvbGU9XCJuYXZpZ2F0aW9uXCIgaWQ9XCJ0b3BcIiBjbGFzcz1cInNraXBMaW5rc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiaW50bC5Hb3RvXCI+XG5cdDxhXG5cdFx0Y2xhc3M9XCJza2lwTGlua3MtYWN0aW9uIHBhbGV0dGUtbmV1dHJhbCBtb2QtWFNcIlxuXHRcdGhyZWY9XCIjbHVjY2EtYmFubmVyLXNvbHV0aW9ucy1jb250YWluZXJcIlxuXHRcdChjbGljayk9XCJhbmNob3IoJyNsdWNjYS1iYW5uZXItc29sdXRpb25zLWNvbnRhaW5lcicsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fTmF2X0Jhbm5lciB9fTwvYVxuXHQ+XG5cdDxhIGNsYXNzPVwic2tpcExpbmtzLWFjdGlvbiBwYWxldHRlLW5ldXRyYWwgbW9kLVhTXCIgaHJlZj1cIiNuYXZTaWRlXCIgKGNsaWNrKT1cImFuY2hvcignI25hdlNpZGUnLCAkZXZlbnQpXCI+e3sgaW50bC5Hb3RvX05hdl9OYXZzaWRlIH19PC9hPlxuXHQ8YSBjbGFzcz1cInNraXBMaW5rcy1hY3Rpb24gcGFsZXR0ZS1uZXV0cmFsIG1vZC1YU1wiIGhyZWY9XCIjbWFpbi1jb250ZW50XCIgKGNsaWNrKT1cImFuY2hvcignI21haW4tY29udGVudCcsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fQ29udGVudCB9fTwvYVxuXHQ+XG48L25hdj5cbiJdfQ==
@@ -0,0 +1,9 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { Translations } from './translations';
3
+ export const LU_SKIP_LINKS_TRANSLATIONS = new InjectionToken('LuModalTranslations', {
4
+ factory: () => luSkipLinksTranslations,
5
+ });
6
+ export class ALuSkipLinksLabel {
7
+ }
8
+ export const luSkipLinksTranslations = Translations;
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy50cmFuc2xhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy50cmFuc2xhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUvQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFOUMsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQUcsSUFBSSxjQUFjLENBQW1DLHFCQUFxQixFQUFFO0lBQ3JILE9BQU8sRUFBRSxHQUFHLEVBQUUsQ0FBQyx1QkFBdUI7Q0FDdEMsQ0FBQyxDQUFDO0FBUUgsTUFBTSxPQUFnQixpQkFBaUI7Q0FLdEM7QUFFRCxNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBcUMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEx1VHJhbnNsYXRpb24gfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvY29yZSc7XG5pbXBvcnQgeyBUcmFuc2xhdGlvbnMgfSBmcm9tICcuL3RyYW5zbGF0aW9ucyc7XG5cbmV4cG9ydCBjb25zdCBMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxMdVRyYW5zbGF0aW9uPElMdVNraXBMaW5rc0xhYmVsPj4oJ0x1TW9kYWxUcmFuc2xhdGlvbnMnLCB7XG5cdGZhY3Rvcnk6ICgpID0+IGx1U2tpcExpbmtzVHJhbnNsYXRpb25zLFxufSk7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUx1U2tpcExpbmtzTGFiZWwge1xuXHRHb3RvOiBzdHJpbmc7XG5cdEdvdG9fTmF2X0Jhbm5lcjogc3RyaW5nO1xuXHRHb3RvX05hdl9OYXZzaWRlOiBzdHJpbmc7XG5cdEdvdG9fQ29udGVudDogc3RyaW5nO1xufVxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEFMdVNraXBMaW5rc0xhYmVsIHtcblx0R290bzogc3RyaW5nO1xuXHRHb3RvX05hdl9CYW5uZXI6IHN0cmluZztcblx0R290b19OYXZfTmF2c2lkZTogc3RyaW5nO1xuXHRHb3RvX0NvbnRlbnQ6IHN0cmluZztcbn1cblxuZXhwb3J0IGNvbnN0IGx1U2tpcExpbmtzVHJhbnNsYXRpb25zOiBMdVRyYW5zbGF0aW9uPElMdVNraXBMaW5rc0xhYmVsPiA9IFRyYW5zbGF0aW9ucztcbiJdfQ==
@@ -0,0 +1,51 @@
1
+ export const Translations = {
2
+ en: {
3
+ Goto: 'Quick access',
4
+ Goto_Nav_Banner: 'Go to the main navigation menu',
5
+ Goto_Nav_Navside: 'Go to the internal navigation menu',
6
+ Goto_Content: 'Go to content',
7
+ },
8
+ de: {
9
+ Goto: 'Schnellzugriff',
10
+ Goto_Nav_Banner: 'Zur Hauptnavigation',
11
+ Goto_Nav_Navside: 'Zur internen Navigation',
12
+ Goto_Content: 'Zum Inhalt',
13
+ },
14
+ fr: {
15
+ Goto: 'Accès rapides',
16
+ Goto_Nav_Banner: 'Aller à la navigation principale',
17
+ Goto_Nav_Navside: 'Aller à la navigation interne',
18
+ Goto_Content: 'Aller au contenu',
19
+ },
20
+ it: {
21
+ Goto: 'Accesso rapido',
22
+ Goto_Nav_Banner: 'Vai alla navigazione principale',
23
+ Goto_Nav_Navside: 'Vai alla navigazione interna',
24
+ Goto_Content: 'Vai al contenuto',
25
+ },
26
+ nl: {
27
+ Goto: 'Snelle toegang',
28
+ Goto_Nav_Banner: 'Ga naar hoofdnavigatie',
29
+ Goto_Nav_Navside: 'Ga naar interne navigatie',
30
+ Goto_Content: 'Ga naar inhoud',
31
+ },
32
+ 'nl-BE': {
33
+ Goto: 'Snelle toegang',
34
+ Goto_Nav_Banner: 'Ga naar hoofdnavigatie',
35
+ Goto_Nav_Navside: 'Ga naar interne navigatie',
36
+ Goto_Content: 'Ga naar inhoud',
37
+ },
38
+ es: {
39
+ Goto: 'Accesos rápidos',
40
+ Goto_Nav_Banner: 'Ir a la navegación principal',
41
+ Goto_Nav_Navside: 'Ir a la navegación interna',
42
+ Goto_Content: 'Ir al contenido',
43
+ },
44
+ pt: {
45
+ Goto: 'Acesso rápido',
46
+ Goto_Nav_Banner: 'Ir para a navegação principal',
47
+ Goto_Nav_Navside: 'Ir para a navegação interna',
48
+ Goto_Content: 'Ir para o conteúdo',
49
+ },
50
+ };
51
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNsYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvbmcvYTExeS9za2lwLWxpbmtzL3RyYW5zbGF0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUc7SUFDM0IsRUFBRSxFQUFFO1FBQ0gsSUFBSSxFQUFFLGNBQWM7UUFDcEIsZUFBZSxFQUFFLGdDQUFnQztRQUNqRCxnQkFBZ0IsRUFBRSxvQ0FBb0M7UUFDdEQsWUFBWSxFQUFFLGVBQWU7S0FDN0I7SUFDRCxFQUFFLEVBQUU7UUFDSCxJQUFJLEVBQUUsZ0JBQWdCO1FBQ3RCLGVBQWUsRUFBRSxxQkFBcUI7UUFDdEMsZ0JBQWdCLEVBQUUseUJBQXlCO1FBQzNDLFlBQVksRUFBRSxZQUFZO0tBQzFCO0lBQ0QsRUFBRSxFQUFFO1FBQ0gsSUFBSSxFQUFFLGVBQWU7UUFDckIsZUFBZSxFQUFFLGtDQUFrQztRQUNuRCxnQkFBZ0IsRUFBRSwrQkFBK0I7UUFDakQsWUFBWSxFQUFFLGtCQUFrQjtLQUNoQztJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLGlDQUFpQztRQUNsRCxnQkFBZ0IsRUFBRSw4QkFBOEI7UUFDaEQsWUFBWSxFQUFFLGtCQUFrQjtLQUNoQztJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLHdCQUF3QjtRQUN6QyxnQkFBZ0IsRUFBRSwyQkFBMkI7UUFDN0MsWUFBWSxFQUFFLGdCQUFnQjtLQUM5QjtJQUNELE9BQU8sRUFBRTtRQUNSLElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLHdCQUF3QjtRQUN6QyxnQkFBZ0IsRUFBRSwyQkFBMkI7UUFDN0MsWUFBWSxFQUFFLGdCQUFnQjtLQUM5QjtJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxpQkFBaUI7UUFDdkIsZUFBZSxFQUFFLDhCQUE4QjtRQUMvQyxnQkFBZ0IsRUFBRSw0QkFBNEI7UUFDOUMsWUFBWSxFQUFFLGlCQUFpQjtLQUMvQjtJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxlQUFlO1FBQ3JCLGVBQWUsRUFBRSwrQkFBK0I7UUFDaEQsZ0JBQWdCLEVBQUUsNkJBQTZCO1FBQy9DLFlBQVksRUFBRSxvQkFBb0I7S0FDbEM7Q0FDRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFRyYW5zbGF0aW9ucyA9IHtcblx0ZW46IHtcblx0XHRHb3RvOiAnUXVpY2sgYWNjZXNzJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdHbyB0byB0aGUgbWFpbiBuYXZpZ2F0aW9uIG1lbnUnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdHbyB0byB0aGUgaW50ZXJuYWwgbmF2aWdhdGlvbiBtZW51Jyxcblx0XHRHb3RvX0NvbnRlbnQ6ICdHbyB0byBjb250ZW50Jyxcblx0fSxcblx0ZGU6IHtcblx0XHRHb3RvOiAnU2NobmVsbHp1Z3JpZmYnLFxuXHRcdEdvdG9fTmF2X0Jhbm5lcjogJ1p1ciBIYXVwdG5hdmlnYXRpb24nLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdadXIgaW50ZXJuZW4gTmF2aWdhdGlvbicsXG5cdFx0R290b19Db250ZW50OiAnWnVtIEluaGFsdCcsXG5cdH0sXG5cdGZyOiB7XG5cdFx0R290bzogJ0FjY8OocyByYXBpZGVzJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdBbGxlciDDoCBsYSBuYXZpZ2F0aW9uIHByaW5jaXBhbGUnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdBbGxlciDDoCBsYSBuYXZpZ2F0aW9uIGludGVybmUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0FsbGVyIGF1IGNvbnRlbnUnLFxuXHR9LFxuXHRpdDoge1xuXHRcdEdvdG86ICdBY2Nlc3NvIHJhcGlkbycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnVmFpIGFsbGEgbmF2aWdhemlvbmUgcHJpbmNpcGFsZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ1ZhaSBhbGxhIG5hdmlnYXppb25lIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ1ZhaSBhbCBjb250ZW51dG8nLFxuXHR9LFxuXHRubDoge1xuXHRcdEdvdG86ICdTbmVsbGUgdG9lZ2FuZycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnR2EgbmFhciBob29mZG5hdmlnYXRpZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ0dhIG5hYXIgaW50ZXJuZSBuYXZpZ2F0aWUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0dhIG5hYXIgaW5ob3VkJyxcblx0fSxcblx0J25sLUJFJzoge1xuXHRcdEdvdG86ICdTbmVsbGUgdG9lZ2FuZycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnR2EgbmFhciBob29mZG5hdmlnYXRpZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ0dhIG5hYXIgaW50ZXJuZSBuYXZpZ2F0aWUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0dhIG5hYXIgaW5ob3VkJyxcblx0fSxcblx0ZXM6IHtcblx0XHRHb3RvOiAnQWNjZXNvcyByw6FwaWRvcycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnSXIgYSBsYSBuYXZlZ2FjacOzbiBwcmluY2lwYWwnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdJciBhIGxhIG5hdmVnYWNpw7NuIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ0lyIGFsIGNvbnRlbmlkbycsXG5cdH0sXG5cdHB0OiB7XG5cdFx0R290bzogJ0FjZXNzbyByw6FwaWRvJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdJciBwYXJhIGEgbmF2ZWdhw6fDo28gcHJpbmNpcGFsJyxcblx0XHRHb3RvX05hdl9OYXZzaWRlOiAnSXIgcGFyYSBhIG5hdmVnYcOnw6NvIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ0lyIHBhcmEgbyBjb250ZcO6ZG8nLFxuXHR9LFxufTtcbiJdfQ==