@lucca-front/ng 20.0.1 → 20.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 (994) hide show
  1. package/a11y/index.d.ts +5 -29
  2. package/a11y/public-api.d.ts +2 -0
  3. package/a11y/skip-links/skip-links.component.d.ts +8 -0
  4. package/a11y/skip-links/skip-links.translate.d.ts +16 -0
  5. package/a11y/skip-links/translations.d.ts +50 -0
  6. package/animations/animation.factory.d.ts +6 -0
  7. package/animations/fade.animation.d.ts +2 -0
  8. package/animations/index.d.ts +5 -16
  9. package/animations/public-api.d.ts +4 -0
  10. package/animations/scale.animation.d.ts +2 -0
  11. package/animations/slide.animation.d.ts +2 -0
  12. package/api/api.model.d.ts +14 -0
  13. package/api/api.module.d.ts +7 -0
  14. package/api/index.d.ts +5 -295
  15. package/api/public-api.d.ts +4 -0
  16. package/api/select/api-select.module.d.ts +10 -0
  17. package/api/select/feeder/api-feeder.component.d.ts +19 -0
  18. package/api/select/feeder/api-feeder.model.d.ts +14 -0
  19. package/api/select/feeder/api-feeder.module.d.ts +7 -0
  20. package/api/select/feeder/index.d.ts +3 -0
  21. package/api/select/index.d.ts +5 -0
  22. package/api/select/input/api-select-input.component.d.ts +32 -0
  23. package/api/select/input/api-select-input.module.d.ts +7 -0
  24. package/api/select/input/index.d.ts +2 -0
  25. package/api/select/pager/api-pager.component.d.ts +18 -0
  26. package/api/select/pager/api-pager.model.d.ts +33 -0
  27. package/api/select/pager/api-pager.module.d.ts +7 -0
  28. package/api/select/pager/index.d.ts +3 -0
  29. package/api/select/searcher/api-searcher.component.d.ts +39 -0
  30. package/api/select/searcher/api-searcher.model.d.ts +34 -0
  31. package/api/select/searcher/api-searcher.module.d.ts +7 -0
  32. package/api/select/searcher/index.d.ts +3 -0
  33. package/api/service/api-hybrid.service.d.ts +25 -0
  34. package/api/service/api-service.model.d.ts +13 -0
  35. package/api/service/api-v3.service.d.ts +26 -0
  36. package/api/service/api-v4.service.d.ts +23 -0
  37. package/api/service/index.d.ts +4 -0
  38. package/app-layout/app-layout.component.d.ts +6 -0
  39. package/app-layout/index.d.ts +5 -0
  40. package/app-layout/public-api.d.ts +1 -0
  41. package/box/box.component.d.ts +8 -0
  42. package/box/index.d.ts +5 -0
  43. package/box/public-api.d.ts +1 -0
  44. package/breadcrumbs/breadcrumbs-link.directive.d.ts +7 -0
  45. package/breadcrumbs/breadcrumbs.component.d.ts +13 -0
  46. package/breadcrumbs/breadcrumbs.translate.d.ts +7 -0
  47. package/breadcrumbs/index.d.ts +5 -26
  48. package/breadcrumbs/public-api.d.ts +1 -0
  49. package/breadcrumbs/translations.d.ts +26 -0
  50. package/button/button.component.d.ts +26 -0
  51. package/button/index.d.ts +5 -29
  52. package/button/public-api.d.ts +1 -0
  53. package/callout/callout/callout.component.d.ts +51 -0
  54. package/callout/callout-disclosure/callout-disclosure.component.d.ts +28 -0
  55. package/callout/callout-feedback-item/callout-feedback-item.component.d.ts +9 -0
  56. package/callout/callout-feedback-list/callout-feedback-list.component.d.ts +11 -0
  57. package/callout/callout-icon.pipe.d.ts +14 -0
  58. package/callout/callout-popover/callout-popover.component.d.ts +66 -0
  59. package/callout/callout-state.d.ts +8 -0
  60. package/callout/callout.translate.d.ts +7 -0
  61. package/callout/callout.utils.d.ts +15 -0
  62. package/callout/index.d.ts +5 -167
  63. package/callout/public-api.d.ts +6 -0
  64. package/callout/translations.d.ts +26 -0
  65. package/chip/chip.component.d.ts +12 -0
  66. package/chip/chip.translate.d.ts +7 -0
  67. package/chip/index.d.ts +5 -19
  68. package/chip/public-api.d.ts +1 -0
  69. package/chip/translations.d.ts +26 -0
  70. package/comment/comment/comment.component.d.ts +16 -0
  71. package/comment/comment-block/comment-block.component.d.ts +22 -0
  72. package/comment/comment-chat/comment-chat.component.d.ts +5 -0
  73. package/comment/index.d.ts +5 -46
  74. package/comment/public-api.d.ts +3 -0
  75. package/comment/token.d.ts +5 -0
  76. package/core/date/date-adapter.class.d.ts +18 -0
  77. package/core/date/date-adapter.interface.d.ts +17 -0
  78. package/core/date/date-granularity.enum.d.ts +8 -0
  79. package/core/date/index.d.ts +5 -0
  80. package/core/date/native/index.d.ts +2 -0
  81. package/core/date/native/native-date.adapter.d.ts +29 -0
  82. package/core/date/native/native-date.option.d.ts +6 -0
  83. package/core/date/string/index.d.ts +1 -0
  84. package/core/date/string/string-date.adapter.d.ts +28 -0
  85. package/core/event/index.d.ts +3 -0
  86. package/core/event/on-close.subscriber.d.ts +6 -0
  87. package/core/event/on-open.subscriber.d.ts +6 -0
  88. package/core/event/on-scroll-bottom.subscriber.d.ts +6 -0
  89. package/core/group/group.interface.d.ts +4 -0
  90. package/core/group/index.d.ts +1 -0
  91. package/core/id/id.generator.d.ts +1 -0
  92. package/core/id/index.d.ts +1 -0
  93. package/core/index.d.ts +3 -233
  94. package/core/misc.d.ts +2 -0
  95. package/core/portal/index.d.ts +2 -0
  96. package/core/portal/portal-content.d.ts +3 -0
  97. package/core/portal/portal.directive.d.ts +27 -0
  98. package/core/public-api.d.ts +11 -0
  99. package/core/signal.d.ts +14 -0
  100. package/core/tools/class.d.ts +11 -0
  101. package/core/translate/index.d.ts +3 -0
  102. package/core/translate/intl-params.pipe.d.ts +8 -0
  103. package/core/translate/intl.model.d.ts +3 -0
  104. package/core/translate/translation.model.d.ts +13 -0
  105. package/core/tree/index.d.ts +1 -0
  106. package/core/tree/tree.model.d.ts +5 -0
  107. package/core/type/enum.d.ts +14 -0
  108. package/core/type/index.d.ts +2 -0
  109. package/core/type/style.d.ts +5 -0
  110. package/core-select/api/api-v3.directive.d.ts +28 -0
  111. package/core-select/api/api-v4.directive.d.ts +21 -0
  112. package/core-select/api/api.directive.d.ts +39 -0
  113. package/core-select/api/index.d.ts +5 -80
  114. package/core-select/api/public-api.d.ts +3 -0
  115. package/core-select/displayer/displayer.directive.d.ts +12 -0
  116. package/core-select/displayer/index.d.ts +1 -0
  117. package/core-select/establishment/establishment-grouping.component.d.ts +7 -0
  118. package/core-select/establishment/establishment-grouping.service.d.ts +13 -0
  119. package/core-select/establishment/establishments.directive.d.ts +27 -0
  120. package/core-select/establishment/index.d.ts +5 -52
  121. package/core-select/establishment/models.d.ts +9 -0
  122. package/core-select/establishment/public-api.d.ts +3 -0
  123. package/core-select/index.d.ts +3 -317
  124. package/core-select/input/index.d.ts +3 -0
  125. package/core-select/input/select-input.component.d.ts +103 -0
  126. package/core-select/input/select-input.models.d.ts +4 -0
  127. package/core-select/input/total-count.directive.d.ts +8 -0
  128. package/core-select/job-qualification/index.d.ts +5 -32
  129. package/core-select/job-qualification/job-qualification-grouping.component.d.ts +7 -0
  130. package/core-select/job-qualification/job-qualifications.directive.d.ts +22 -0
  131. package/core-select/job-qualification/models.d.ts +7 -0
  132. package/core-select/job-qualification/public-api.d.ts +2 -0
  133. package/core-select/no-clue/index.d.ts +1 -0
  134. package/core-select/no-clue/no-clue.directive.d.ts +6 -0
  135. package/core-select/option/default-option.component.d.ts +9 -0
  136. package/core-select/option/disabled.directive.d.ts +7 -0
  137. package/core-select/option/group.directive.d.ts +18 -0
  138. package/core-select/option/group.pipe.d.ts +13 -0
  139. package/core-select/option/index.d.ts +8 -0
  140. package/core-select/option/option-outlet.directive.d.ts +21 -0
  141. package/core-select/option/option.component.d.ts +38 -0
  142. package/core-select/option/option.directive.d.ts +12 -0
  143. package/core-select/option/option.token.d.ts +9 -0
  144. package/core-select/panel/index.d.ts +4 -0
  145. package/core-select/panel/key-manager.d.ts +24 -0
  146. package/core-select/panel/panel-header-template.directive.d.ts +11 -0
  147. package/core-select/panel/panel.models.d.ts +16 -0
  148. package/core-select/panel/panel.utils.d.ts +7 -0
  149. package/core-select/public-api.d.ts +8 -0
  150. package/core-select/select.model.d.ts +21 -0
  151. package/core-select/select.translate.d.ts +7 -0
  152. package/core-select/select.utils.d.ts +1 -0
  153. package/core-select/translations.d.ts +26 -0
  154. package/core-select/user/former-employees.component.d.ts +12 -0
  155. package/core-select/user/index.d.ts +5 -82
  156. package/core-select/user/me.provider.d.ts +3 -0
  157. package/core-select/user/public-api.d.ts +4 -0
  158. package/core-select/user/translations.d.ts +34 -0
  159. package/core-select/user/user-displayer.component.d.ts +10 -0
  160. package/core-select/user/user-homonym.service.d.ts +14 -0
  161. package/core-select/user/user-option.component.d.ts +13 -0
  162. package/core-select/user/user-option.model.d.ts +11 -0
  163. package/core-select/user/user.translate.d.ts +8 -0
  164. package/core-select/user/users.directive.d.ts +58 -0
  165. package/date/adapter/date-adapter.module.d.ts +7 -0
  166. package/date/adapter/date-adapter.pipe.d.ts +10 -0
  167. package/date/adapter/index.d.ts +2 -0
  168. package/date/calendar/calendar-input.component.d.ts +50 -0
  169. package/date/calendar/calendar-input.module.d.ts +7 -0
  170. package/date/calendar/calendar-input.translate.d.ts +8 -0
  171. package/date/calendar/calendar-item.class.d.ts +34 -0
  172. package/date/calendar/calendar-item.factory.d.ts +13 -0
  173. package/date/calendar/calendar-item.interface.d.ts +9 -0
  174. package/date/calendar/index.d.ts +2 -0
  175. package/date/calendar/translations.d.ts +34 -0
  176. package/date/date.module.d.ts +11 -0
  177. package/date/humanize/humanize.formatter.d.ts +8 -0
  178. package/date/humanize/humanize.model.d.ts +13 -0
  179. package/date/humanize/humanize.pipe.d.ts +10 -0
  180. package/date/humanize/humanize.utils.d.ts +4 -0
  181. package/date/humanize/index.d.ts +4 -0
  182. package/date/index.d.ts +5 -274
  183. package/date/input/date-input.directive.d.ts +24 -0
  184. package/date/input/date-input.module.d.ts +7 -0
  185. package/date/input/date-input.translate.d.ts +9 -0
  186. package/date/input/index.d.ts +3 -0
  187. package/date/input/translations.d.ts +42 -0
  188. package/date/picker/date-picker.component.d.ts +29 -0
  189. package/date/picker/date-picker.module.d.ts +7 -0
  190. package/date/picker/index.d.ts +2 -0
  191. package/date/public-api.d.ts +7 -0
  192. package/date/select/date-select-input.component.d.ts +29 -0
  193. package/date/select/date-select-input.module.d.ts +7 -0
  194. package/date/select/date-select-input.translate.d.ts +9 -0
  195. package/date/select/index.d.ts +3 -0
  196. package/date/select/translations.d.ts +42 -0
  197. package/date2/abstract-date-component.d.ts +41 -0
  198. package/date2/calendar.token.d.ts +7 -0
  199. package/date2/calendar2/calendar-cell-info.d.ts +39 -0
  200. package/date2/calendar2/calendar-mode.d.ts +1 -0
  201. package/date2/calendar2/calendar2-cell.directive.d.ts +15 -0
  202. package/date2/calendar2/calendar2.component.d.ts +64 -0
  203. package/date2/calendar2/calendar2.tokens.d.ts +4 -0
  204. package/date2/calendar2/cell-status.d.ts +6 -0
  205. package/date2/calendar2/date-range.d.ts +13 -0
  206. package/date2/date-format.d.ts +2 -0
  207. package/date2/date-input/date-input.component.d.ts +52 -0
  208. package/date2/date-range-input/calendar-shortcut.d.ts +6 -0
  209. package/date2/date-range-input/date-range-input.component.d.ts +75 -0
  210. package/date2/date.const.d.ts +6 -0
  211. package/date2/date2.translate.d.ts +13 -0
  212. package/date2/index.d.ts +5 -320
  213. package/date2/public-api.d.ts +7 -0
  214. package/date2/repeat-times.directive.d.ts +9 -0
  215. package/date2/translations.d.ts +20 -0
  216. package/date2/utils.d.ts +13 -0
  217. package/department/department.model.d.ts +4 -0
  218. package/department/department.module.d.ts +7 -0
  219. package/department/index.d.ts +3 -127
  220. package/department/public-api.d.ts +4 -0
  221. package/department/select/department-select.module.d.ts +8 -0
  222. package/department/select/feeder/department-feeder.component.d.ts +20 -0
  223. package/department/select/feeder/department-feeder.module.d.ts +7 -0
  224. package/department/select/feeder/index.d.ts +2 -0
  225. package/department/select/index.d.ts +3 -0
  226. package/department/select/input/department-select-input.component.d.ts +24 -0
  227. package/department/select/input/department-select-input.module.d.ts +7 -0
  228. package/department/select/input/department-select-input.translate.d.ts +7 -0
  229. package/department/select/input/index.d.ts +3 -0
  230. package/department/select/input/translations.d.ts +26 -0
  231. package/department/service/department-service.model.d.ts +10 -0
  232. package/department/service/department-v3.service.d.ts +27 -0
  233. package/department/service/department-v4.service.d.ts +21 -0
  234. package/department/service/index.d.ts +3 -0
  235. package/dialog/dialog/dialog.component.d.ts +12 -0
  236. package/dialog/dialog-content/dialog-content.component.d.ts +5 -0
  237. package/dialog/dialog-footer/dialog-footer.component.d.ts +5 -0
  238. package/dialog/dialog-header/dialog-header.component.d.ts +11 -0
  239. package/dialog/dialog-header/dialog-header.translate.d.ts +7 -0
  240. package/dialog/dialog-header/translations.d.ts +26 -0
  241. package/dialog/dialog-routing/dialog-routing.component.d.ts +19 -0
  242. package/dialog/dialog-routing/dialog-routing.models.d.ts +20 -0
  243. package/dialog/dialog-routing/dialog-routing.utils.d.ts +25 -0
  244. package/dialog/dialog-routing/index.d.ts +3 -0
  245. package/dialog/dialog-routing/outlet-component-instance.directive.d.ts +9 -0
  246. package/dialog/dialog.providers.d.ts +3 -0
  247. package/dialog/dialog.service.d.ts +8 -0
  248. package/dialog/directives/dialog-close.directive.d.ts +7 -0
  249. package/dialog/directives/dialog-dismiss.directive.d.ts +7 -0
  250. package/dialog/directives/dialog-open.directive.d.ts +11 -0
  251. package/dialog/index.d.ts +5 -252
  252. package/dialog/model/dialog-config.d.ts +83 -0
  253. package/dialog/model/dialog-ref.d.ts +33 -0
  254. package/dialog/model/index.d.ts +3 -0
  255. package/dialog/model/injectors.d.ts +4 -0
  256. package/dialog/public-api.d.ts +12 -0
  257. package/dialog/testing/index.d.ts +5 -9
  258. package/dialog/testing/providers.d.ts +5 -0
  259. package/dialog/testing/public-api.d.ts +1 -0
  260. package/divider/divider.component.d.ts +17 -0
  261. package/divider/index.d.ts +5 -17
  262. package/divider/public-api.d.ts +1 -0
  263. package/dropdown/dropdown.module.d.ts +9 -0
  264. package/dropdown/index.d.ts +3 -137
  265. package/dropdown/item/dropdown-item.directive.d.ts +14 -0
  266. package/dropdown/item/dropdown-item.model.d.ts +9 -0
  267. package/dropdown/item/dropdown-item.module.d.ts +10 -0
  268. package/dropdown/item/index.d.ts +3 -0
  269. package/dropdown/panel/dropdown-panel.component.d.ts +40 -0
  270. package/dropdown/panel/dropdown-panel.model.d.ts +2 -0
  271. package/dropdown/panel/dropdown-panel.module.d.ts +10 -0
  272. package/dropdown/panel/index.d.ts +3 -0
  273. package/dropdown/public-api.d.ts +4 -0
  274. package/dropdown/trigger/dropdown-trigger.directive.d.ts +42 -0
  275. package/dropdown/trigger/dropdown-trigger.module.d.ts +10 -0
  276. package/dropdown/trigger/index.d.ts +2 -0
  277. package/empty-state/empty-state-page/empty-state-page.component.d.ts +36 -0
  278. package/empty-state/empty-state-section/empty-state-section.component.d.ts +21 -0
  279. package/empty-state/empty-state.model.d.ts +1 -0
  280. package/empty-state/index.d.ts +5 -59
  281. package/empty-state/public-api.d.ts +2 -0
  282. package/establishment/establishment.model.d.ts +9 -0
  283. package/establishment/establishment.module.d.ts +10 -0
  284. package/establishment/index.d.ts +3 -208
  285. package/establishment/public-api.d.ts +4 -0
  286. package/establishment/select/establishment-select.module.d.ts +14 -0
  287. package/establishment/select/establishment-select.token.d.ts +4 -0
  288. package/establishment/select/for-legal-units/for-legal-units.directive.d.ts +14 -0
  289. package/establishment/select/for-legal-units/for-legal-units.module.d.ts +7 -0
  290. package/establishment/select/for-legal-units/index.d.ts +2 -0
  291. package/establishment/select/index.d.ts +6 -0
  292. package/establishment/select/input/establishment-select-input.component.d.ts +35 -0
  293. package/establishment/select/input/establishment-select-input.module.d.ts +7 -0
  294. package/establishment/select/input/establishment-select-input.translate.d.ts +7 -0
  295. package/establishment/select/input/index.d.ts +3 -0
  296. package/establishment/select/input/translations.d.ts +26 -0
  297. package/establishment/select/legal-unit-selector/index.d.ts +2 -0
  298. package/establishment/select/legal-unit-selector/legal-unit-selector.directive.d.ts +24 -0
  299. package/establishment/select/legal-unit-selector/legal-unit-selector.module.d.ts +7 -0
  300. package/establishment/select/searcher/establishment-searcher.component.d.ts +33 -0
  301. package/establishment/select/searcher/establishment-searcher.module.d.ts +7 -0
  302. package/establishment/select/searcher/index.d.ts +2 -0
  303. package/establishment/select/select-all/establishment-select-all.component.d.ts +19 -0
  304. package/establishment/select/select-all/establishment-select-all.module.d.ts +7 -0
  305. package/establishment/select/select-all/index.d.ts +2 -0
  306. package/establishment/service/establishment-service.model.d.ts +5 -0
  307. package/establishment/service/establishment.service.d.ts +17 -0
  308. package/establishment/service/index.d.ts +4 -0
  309. package/establishment/service/legal-unit-service.model.d.ts +5 -0
  310. package/establishment/service/legal-unit.service.d.ts +17 -0
  311. package/fancy-box/fancy-box.component.d.ts +11 -0
  312. package/fancy-box/index.d.ts +5 -14
  313. package/fancy-box/public-api.d.ts +1 -0
  314. package/fesm2022/lucca-front-ng-a11y.mjs +5 -5
  315. package/fesm2022/lucca-front-ng-a11y.mjs.map +1 -1
  316. package/fesm2022/lucca-front-ng-api.mjs +51 -51
  317. package/fesm2022/lucca-front-ng-api.mjs.map +1 -1
  318. package/fesm2022/lucca-front-ng-app-layout.mjs +24 -0
  319. package/fesm2022/lucca-front-ng-app-layout.mjs.map +1 -0
  320. package/fesm2022/lucca-front-ng-box.mjs +29 -0
  321. package/fesm2022/lucca-front-ng-box.mjs.map +1 -0
  322. package/fesm2022/lucca-front-ng-breadcrumbs.mjs +10 -10
  323. package/fesm2022/lucca-front-ng-breadcrumbs.mjs.map +1 -1
  324. package/fesm2022/lucca-front-ng-button.mjs +10 -10
  325. package/fesm2022/lucca-front-ng-button.mjs.map +1 -1
  326. package/fesm2022/lucca-front-ng-callout.mjs +31 -32
  327. package/fesm2022/lucca-front-ng-callout.mjs.map +1 -1
  328. package/fesm2022/lucca-front-ng-chip.mjs +5 -5
  329. package/fesm2022/lucca-front-ng-chip.mjs.map +1 -1
  330. package/fesm2022/lucca-front-ng-comment.mjs +13 -13
  331. package/fesm2022/lucca-front-ng-comment.mjs.map +1 -1
  332. package/fesm2022/lucca-front-ng-core-select-api.mjs +15 -21
  333. package/fesm2022/lucca-front-ng-core-select-api.mjs.map +1 -1
  334. package/fesm2022/lucca-front-ng-core-select-establishment.mjs +10 -9
  335. package/fesm2022/lucca-front-ng-core-select-establishment.mjs.map +1 -1
  336. package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs +7 -6
  337. package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs.map +1 -1
  338. package/fesm2022/lucca-front-ng-core-select-user.mjs +33 -29
  339. package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
  340. package/fesm2022/lucca-front-ng-core-select.mjs +45 -46
  341. package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
  342. package/fesm2022/lucca-front-ng-core.mjs +16 -16
  343. package/fesm2022/lucca-front-ng-date.mjs +58 -58
  344. package/fesm2022/lucca-front-ng-date.mjs.map +1 -1
  345. package/fesm2022/lucca-front-ng-date2.mjs +63 -88
  346. package/fesm2022/lucca-front-ng-date2.mjs.map +1 -1
  347. package/fesm2022/lucca-front-ng-department.mjs +31 -31
  348. package/fesm2022/lucca-front-ng-department.mjs.map +1 -1
  349. package/fesm2022/lucca-front-ng-dialog.mjs +35 -51
  350. package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
  351. package/fesm2022/lucca-front-ng-divider.mjs +29 -16
  352. package/fesm2022/lucca-front-ng-divider.mjs.map +1 -1
  353. package/fesm2022/lucca-front-ng-dropdown.mjs +27 -28
  354. package/fesm2022/lucca-front-ng-dropdown.mjs.map +1 -1
  355. package/fesm2022/lucca-front-ng-empty-state.mjs +9 -9
  356. package/fesm2022/lucca-front-ng-empty-state.mjs.map +1 -1
  357. package/fesm2022/lucca-front-ng-establishment.mjs +54 -54
  358. package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
  359. package/fesm2022/lucca-front-ng-fancy-box.mjs +4 -4
  360. package/fesm2022/lucca-front-ng-file-upload.mjs +22 -27
  361. package/fesm2022/lucca-front-ng-file-upload.mjs.map +1 -1
  362. package/fesm2022/lucca-front-ng-filter-pills.mjs +24 -23
  363. package/fesm2022/lucca-front-ng-filter-pills.mjs.map +1 -1
  364. package/fesm2022/lucca-front-ng-footer.mjs +5 -5
  365. package/fesm2022/lucca-front-ng-footer.mjs.map +1 -1
  366. package/fesm2022/lucca-front-ng-form-field.mjs +40 -13
  367. package/fesm2022/lucca-front-ng-form-field.mjs.map +1 -1
  368. package/fesm2022/lucca-front-ng-formly.mjs +66 -66
  369. package/fesm2022/lucca-front-ng-formly.mjs.map +1 -1
  370. package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs +10 -10
  371. package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs.map +1 -1
  372. package/fesm2022/lucca-front-ng-forms-rich-text-input-formatters-html.mjs +1 -1
  373. package/fesm2022/lucca-front-ng-forms-rich-text-input-formatters-html.mjs.map +1 -1
  374. package/fesm2022/lucca-front-ng-forms-rich-text-input.mjs +41 -41
  375. package/fesm2022/lucca-front-ng-forms-rich-text-input.mjs.map +1 -1
  376. package/fesm2022/lucca-front-ng-forms.mjs +205 -166
  377. package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
  378. package/fesm2022/lucca-front-ng-highlight-data.mjs +6 -6
  379. package/fesm2022/lucca-front-ng-highlight-data.mjs.map +1 -1
  380. package/fesm2022/lucca-front-ng-horizontal-navigation.mjs +8 -8
  381. package/fesm2022/lucca-front-ng-horizontal-navigation.mjs.map +1 -1
  382. package/fesm2022/lucca-front-ng-icon.mjs +6 -6
  383. package/fesm2022/lucca-front-ng-icon.mjs.map +1 -1
  384. package/fesm2022/lucca-front-ng-inline-message.mjs +5 -5
  385. package/fesm2022/lucca-front-ng-inline-message.mjs.map +1 -1
  386. package/fesm2022/lucca-front-ng-input.mjs +22 -22
  387. package/fesm2022/lucca-front-ng-link.mjs +5 -5
  388. package/fesm2022/lucca-front-ng-link.mjs.map +1 -1
  389. package/fesm2022/lucca-front-ng-listing.mjs +60 -0
  390. package/fesm2022/lucca-front-ng-listing.mjs.map +1 -0
  391. package/fesm2022/lucca-front-ng-loading.mjs +37 -0
  392. package/fesm2022/lucca-front-ng-loading.mjs.map +1 -0
  393. package/fesm2022/lucca-front-ng-main-layout.mjs +46 -0
  394. package/fesm2022/lucca-front-ng-main-layout.mjs.map +1 -0
  395. package/fesm2022/lucca-front-ng-modal.mjs +27 -27
  396. package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
  397. package/fesm2022/lucca-front-ng-multi-select.mjs +50 -50
  398. package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
  399. package/fesm2022/lucca-front-ng-new-badge.mjs +5 -5
  400. package/fesm2022/lucca-front-ng-new-badge.mjs.map +1 -1
  401. package/fesm2022/lucca-front-ng-number-format.mjs +17 -19
  402. package/fesm2022/lucca-front-ng-number-format.mjs.map +1 -1
  403. package/fesm2022/lucca-front-ng-number.mjs +8 -8
  404. package/fesm2022/lucca-front-ng-numeric-badge.mjs +5 -5
  405. package/fesm2022/lucca-front-ng-numeric-badge.mjs.map +1 -1
  406. package/fesm2022/lucca-front-ng-option.mjs +176 -176
  407. package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
  408. package/fesm2022/lucca-front-ng-page-header.mjs +5 -5
  409. package/fesm2022/lucca-front-ng-page-header.mjs.map +1 -1
  410. package/fesm2022/lucca-front-ng-pagination.mjs +92 -0
  411. package/fesm2022/lucca-front-ng-pagination.mjs.map +1 -0
  412. package/fesm2022/lucca-front-ng-plg-push.mjs +5 -5
  413. package/fesm2022/lucca-front-ng-plg-push.mjs.map +1 -1
  414. package/fesm2022/lucca-front-ng-popover.mjs +28 -28
  415. package/fesm2022/lucca-front-ng-popover.mjs.map +1 -1
  416. package/fesm2022/lucca-front-ng-popover2.mjs +18 -16
  417. package/fesm2022/lucca-front-ng-popover2.mjs.map +1 -1
  418. package/fesm2022/lucca-front-ng-popup.mjs +10 -10
  419. package/fesm2022/lucca-front-ng-qualification.mjs +10 -10
  420. package/fesm2022/lucca-front-ng-qualification.mjs.map +1 -1
  421. package/fesm2022/lucca-front-ng-read-more.mjs +5 -5
  422. package/fesm2022/lucca-front-ng-read-more.mjs.map +1 -1
  423. package/fesm2022/lucca-front-ng-safe-content.mjs +10 -10
  424. package/fesm2022/lucca-front-ng-scroll.mjs +8 -8
  425. package/fesm2022/lucca-front-ng-scrollBox.mjs +13 -21
  426. package/fesm2022/lucca-front-ng-scrollBox.mjs.map +1 -1
  427. package/fesm2022/lucca-front-ng-select.mjs +17 -17
  428. package/fesm2022/lucca-front-ng-select.mjs.map +1 -1
  429. package/fesm2022/lucca-front-ng-sidepanel.mjs +7 -7
  430. package/fesm2022/lucca-front-ng-simple-select.mjs +19 -20
  431. package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
  432. package/fesm2022/lucca-front-ng-skeleton.mjs +28 -30
  433. package/fesm2022/lucca-front-ng-skeleton.mjs.map +1 -1
  434. package/fesm2022/lucca-front-ng-statusBadge.mjs +5 -5
  435. package/fesm2022/lucca-front-ng-statusBadge.mjs.map +1 -1
  436. package/fesm2022/lucca-front-ng-tag.mjs +5 -5
  437. package/fesm2022/lucca-front-ng-tag.mjs.map +1 -1
  438. package/fesm2022/lucca-front-ng-time.mjs +21 -21
  439. package/fesm2022/lucca-front-ng-time.mjs.map +1 -1
  440. package/fesm2022/lucca-front-ng-title.mjs +16 -32
  441. package/fesm2022/lucca-front-ng-title.mjs.map +1 -1
  442. package/fesm2022/lucca-front-ng-toast.mjs +12 -12
  443. package/fesm2022/lucca-front-ng-toast.mjs.map +1 -1
  444. package/fesm2022/lucca-front-ng-tooltip.mjs +26 -25
  445. package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
  446. package/fesm2022/lucca-front-ng-user-popover.mjs +362 -0
  447. package/fesm2022/lucca-front-ng-user-popover.mjs.map +1 -0
  448. package/fesm2022/lucca-front-ng-user.mjs +71 -68
  449. package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
  450. package/file-upload/base-file-upload/base-file-upload.component.d.ts +24 -0
  451. package/file-upload/file-dropzone/file-dropzone.component.d.ts +6 -0
  452. package/file-upload/file-entry/file-entry.component.d.ts +35 -0
  453. package/file-upload/file-upload-entry.d.ts +6 -0
  454. package/file-upload/file-upload.translate.d.ts +34 -0
  455. package/file-upload/formatter.d.ts +3 -0
  456. package/file-upload/index.d.ts +5 -125
  457. package/file-upload/multi/multi-file-upload.component.d.ts +6 -0
  458. package/file-upload/public-api.d.ts +5 -0
  459. package/file-upload/single/single-file-upload.component.d.ts +13 -0
  460. package/file-upload/translations.d.ts +242 -0
  461. package/filter-pills/core/filter-pill-displayer.directive.d.ts +14 -0
  462. package/filter-pills/core/filter-pill-input-component.d.ts +19 -0
  463. package/filter-pills/core/filter-pill-label.directive.d.ts +15 -0
  464. package/filter-pills/core/index.d.ts +4 -0
  465. package/filter-pills/core/tokens.d.ts +5 -0
  466. package/filter-pills/filter-bar/filter-bar.component.d.ts +14 -0
  467. package/filter-pills/filter-bar/filter-pill-addon.directive.d.ts +13 -0
  468. package/filter-pills/filter-pill/filter-pill.component.d.ts +51 -0
  469. package/filter-pills/filter-pills.translate.d.ts +9 -0
  470. package/filter-pills/index.d.ts +5 -132
  471. package/filter-pills/public-api.d.ts +4 -0
  472. package/filter-pills/translations.d.ts +42 -0
  473. package/footer/footer.component.d.ts +13 -0
  474. package/footer/index.d.ts +5 -16
  475. package/footer/public-api.d.ts +1 -0
  476. package/form-field/form-field-size.d.ts +1 -0
  477. package/form-field/form-field.component.d.ts +72 -0
  478. package/form-field/form-field.token.d.ts +3 -0
  479. package/form-field/form-field.translate.d.ts +7 -0
  480. package/form-field/framed-input/framed-input-token.d.ts +3 -0
  481. package/form-field/framed-input/framed-input.component.d.ts +7 -0
  482. package/form-field/index.d.ts +5 -96
  483. package/form-field/input.directive.d.ts +14 -0
  484. package/form-field/public-api.d.ts +7 -0
  485. package/form-field/translations.d.ts +26 -0
  486. package/formly/formly.config.d.ts +2 -0
  487. package/formly/formly.module.d.ts +39 -0
  488. package/formly/formly.utils.d.ts +2 -0
  489. package/formly/index.d.ts +5 -197
  490. package/formly/public-api.d.ts +4 -0
  491. package/formly/types/api.d.ts +13 -0
  492. package/formly/types/checkbox.d.ts +8 -0
  493. package/formly/types/date.d.ts +8 -0
  494. package/formly/types/department.d.ts +8 -0
  495. package/formly/types/establishment.d.ts +8 -0
  496. package/formly/types/index.d.ts +11 -0
  497. package/formly/types/input.d.ts +9 -0
  498. package/formly/types/qualification.d.ts +8 -0
  499. package/formly/types/radios.d.ts +12 -0
  500. package/formly/types/select.d.ts +13 -0
  501. package/formly/types/textarea.d.ts +8 -0
  502. package/formly/types/user.d.ts +8 -0
  503. package/formly/wrappers/checkbox-layout.d.ts +12 -0
  504. package/formly/wrappers/error.d.ts +20 -0
  505. package/formly/wrappers/helper.d.ts +11 -0
  506. package/formly/wrappers/icon.d.ts +11 -0
  507. package/formly/wrappers/index.d.ts +7 -0
  508. package/formly/wrappers/radiosfield-layout.d.ts +12 -0
  509. package/formly/wrappers/suffix.d.ts +11 -0
  510. package/formly/wrappers/textfield-layout.d.ts +15 -0
  511. package/forms/checkbox-input/checkbox-input.component.d.ts +29 -0
  512. package/forms/fieldset/fieldset.component.d.ts +13 -0
  513. package/forms/form-field-id.directive.d.ts +13 -0
  514. package/forms/index.d.ts +5 -261
  515. package/forms/inject-ng-control.d.ts +2 -0
  516. package/forms/multilanguage-input/model/multilanguage-translation.d.ts +4 -0
  517. package/forms/multilanguage-input/multilanguage-input.component.d.ts +28 -0
  518. package/forms/multilanguage-input/multilanguage-input.translate.d.ts +8 -0
  519. package/forms/multilanguage-input/translations.d.ts +12 -0
  520. package/forms/multilanguage-input/validators.d.ts +4 -0
  521. package/forms/noop-value-accessor.directive.d.ts +9 -0
  522. package/forms/number-format-input/number-format-input.component.d.ts +39 -0
  523. package/forms/number-format-input/number-format-input.translate.d.ts +7 -0
  524. package/forms/number-format-input/translations.d.ts +26 -0
  525. package/forms/number-input/number-input.component.d.ts +20 -0
  526. package/forms/number-input/number-input.translate.d.ts +7 -0
  527. package/forms/number-input/translations.d.ts +26 -0
  528. package/forms/phone-number-input/formatter.d.ts +4 -0
  529. package/forms/phone-number-input/index.d.ts +5 -79
  530. package/forms/phone-number-input/phone-number-format.pipe.d.ts +8 -0
  531. package/forms/phone-number-input/phone-number-input.component.d.ts +59 -0
  532. package/forms/phone-number-input/public-api.d.ts +5 -0
  533. package/forms/phone-number-input/types.d.ts +2 -0
  534. package/forms/phone-number-input/validators.d.ts +7 -0
  535. package/forms/public-api.d.ts +17 -0
  536. package/forms/radio-group-input/radio/radio.component.d.ts +21 -0
  537. package/forms/radio-group-input/radio-group-input.component.d.ts +17 -0
  538. package/forms/radio-group-input/radio-group-token.d.ts +3 -0
  539. package/forms/rich-text-input/formatters/html/html-formatter.d.ts +8 -0
  540. package/forms/rich-text-input/formatters/html/index.d.ts +5 -11
  541. package/forms/rich-text-input/formatters/html/public-api.d.ts +1 -0
  542. package/forms/rich-text-input/formatters/index.d.ts +1 -0
  543. package/forms/rich-text-input/formatters/markdown/index.d.ts +5 -14
  544. package/forms/rich-text-input/formatters/markdown/markdown-formatter.d.ts +11 -0
  545. package/forms/rich-text-input/formatters/markdown/public-api.d.ts +1 -0
  546. package/forms/rich-text-input/formatters/rich-text-formatter.d.ts +7 -0
  547. package/forms/rich-text-input/index.d.ts +5 -171
  548. package/forms/rich-text-input/plugins/clear-format/clear-format.command.d.ts +3 -0
  549. package/forms/rich-text-input/plugins/clear-format/clear-format.component.d.ts +18 -0
  550. package/forms/rich-text-input/plugins/clear-format/index.d.ts +1 -0
  551. package/forms/rich-text-input/plugins/headings/headings.command.d.ts +4 -0
  552. package/forms/rich-text-input/plugins/headings/headings.component.d.ts +24 -0
  553. package/forms/rich-text-input/plugins/headings/index.d.ts +1 -0
  554. package/forms/rich-text-input/plugins/link/index.d.ts +1 -0
  555. package/forms/rich-text-input/plugins/link/link-dialog/index.d.ts +1 -0
  556. package/forms/rich-text-input/plugins/link/link-dialog/link-dialog.component.d.ts +14 -0
  557. package/forms/rich-text-input/plugins/link/link.command.d.ts +4 -0
  558. package/forms/rich-text-input/plugins/link/link.component.d.ts +20 -0
  559. package/forms/rich-text-input/plugins/list-format/index.d.ts +1 -0
  560. package/forms/rich-text-input/plugins/list-format/list-format.command.d.ts +5 -0
  561. package/forms/rich-text-input/plugins/list-format/list-format.component.d.ts +23 -0
  562. package/forms/rich-text-input/plugins/list-format/list-style-toolbar.component.d.ts +15 -0
  563. package/forms/rich-text-input/plugins/text-style/index.d.ts +2 -0
  564. package/forms/rich-text-input/plugins/text-style/text-style-toolbar.component.d.ts +11 -0
  565. package/forms/rich-text-input/plugins/text-style/text-style.command.d.ts +2 -0
  566. package/forms/rich-text-input/plugins/text-style/text-style.component.d.ts +22 -0
  567. package/forms/rich-text-input/plugins/toolbar/index.d.ts +1 -0
  568. package/forms/rich-text-input/plugins/toolbar/toolbar.component.d.ts +11 -0
  569. package/forms/rich-text-input/public-api.d.ts +8 -0
  570. package/forms/rich-text-input/rich-text-input.component.d.ts +34 -0
  571. package/forms/rich-text-input/rich-text-input.translate.d.ts +27 -0
  572. package/forms/rich-text-input/translations.d.ts +186 -0
  573. package/forms/rich-text-input/utils/index.d.ts +1 -0
  574. package/forms/rich-text-input/utils/lexical.utils.d.ts +18 -0
  575. package/forms/switch-input/switch-input.component.d.ts +10 -0
  576. package/forms/text-input/text-input-addon.d.ts +10 -0
  577. package/forms/text-input/text-input.component.d.ts +36 -0
  578. package/forms/text-input/text-input.translate.d.ts +8 -0
  579. package/forms/text-input/translations.d.ts +34 -0
  580. package/forms/textarea-input/textarea-input.component.d.ts +20 -0
  581. package/highlight-data/highlight-data.component.d.ts +32 -0
  582. package/highlight-data/index.d.ts +5 -36
  583. package/highlight-data/public-api.d.ts +1 -0
  584. package/horizontal-navigation/horizontal-navigation-link.directive.d.ts +7 -0
  585. package/horizontal-navigation/horizontal-navigation.component.d.ts +14 -0
  586. package/horizontal-navigation/index.d.ts +5 -23
  587. package/horizontal-navigation/public-api.d.ts +2 -0
  588. package/icon/icon.component.d.ts +13 -0
  589. package/icon/index.d.ts +5 -16
  590. package/icon/public-api.d.ts +1 -0
  591. package/index.d.ts +5 -2
  592. package/inline-message/index.d.ts +5 -21
  593. package/inline-message/inline-message-state.d.ts +1 -0
  594. package/inline-message/inline-message.component.d.ts +16 -0
  595. package/inline-message/public-api.d.ts +2 -0
  596. package/input/clearer/clearer.component.d.ts +10 -0
  597. package/input/clearer/clearer.model.d.ts +7 -0
  598. package/input/clearer/clearer.module.d.ts +7 -0
  599. package/input/clearer/clearer.translate.d.ts +7 -0
  600. package/input/clearer/index.d.ts +3 -0
  601. package/input/clearer/translations.d.ts +26 -0
  602. package/input/displayer/index.d.ts +3 -0
  603. package/input/displayer/input-displayer.directive.d.ts +16 -0
  604. package/input/displayer/input-displayer.model.d.ts +9 -0
  605. package/input/displayer/input-displayer.module.d.ts +7 -0
  606. package/input/index.d.ts +3 -102
  607. package/input/input.directive.d.ts +17 -0
  608. package/input/input.model.d.ts +23 -0
  609. package/input/input.module.d.ts +9 -0
  610. package/input/public-api.d.ts +5 -0
  611. package/link/index.d.ts +5 -29
  612. package/link/link.component.d.ts +22 -0
  613. package/link/link.translate.d.ts +7 -0
  614. package/link/public-api.d.ts +1 -0
  615. package/link/translations.d.ts +23 -0
  616. package/listing/index.d.ts +5 -0
  617. package/listing/listing-item/listing-item.component.d.ts +8 -0
  618. package/listing/listing.component.d.ts +15 -0
  619. package/listing/listing.token.d.ts +3 -0
  620. package/listing/public-api.d.ts +2 -0
  621. package/loading/index.d.ts +5 -0
  622. package/loading/loading.component.d.ts +11 -0
  623. package/loading/public-api.d.ts +1 -0
  624. package/main-layout/block/main-layout-block.component.d.ts +6 -0
  625. package/main-layout/index.d.ts +5 -0
  626. package/main-layout/main-layout.component.d.ts +7 -0
  627. package/main-layout/public-api.d.ts +2 -0
  628. package/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.d.ts +37 -0
  629. package/modal/dialog-adapter/dialog-ref-adapter.d.ts +19 -0
  630. package/modal/index.d.ts +3 -159
  631. package/modal/modal-config.default.d.ts +3 -0
  632. package/modal/modal-config.model.d.ts +21 -0
  633. package/modal/modal-panel.component.d.ts +48 -0
  634. package/modal/modal-ref.factory.d.ts +30 -0
  635. package/modal/modal-ref.model.d.ts +15 -0
  636. package/modal/modal.model.d.ts +13 -0
  637. package/modal/modal.module.d.ts +14 -0
  638. package/modal/modal.service.d.ts +15 -0
  639. package/modal/modal.token.d.ts +7 -0
  640. package/modal/modal.translate.d.ts +9 -0
  641. package/modal/modal.utils.d.ts +2 -0
  642. package/modal/public-api.d.ts +11 -0
  643. package/modal/translations.d.ts +42 -0
  644. package/multi-select/displayer/counter-displayer/counter-displayer.component.d.ts +16 -0
  645. package/multi-select/displayer/default-displayer.component.d.ts +20 -0
  646. package/multi-select/displayer/default-displayer.translate.d.ts +10 -0
  647. package/multi-select/displayer/displayer-input.directive.d.ts +22 -0
  648. package/multi-select/displayer/displayer.directive.d.ts +12 -0
  649. package/multi-select/displayer/index.d.ts +5 -0
  650. package/multi-select/displayer/translations.d.ts +50 -0
  651. package/multi-select/index.d.ts +3 -222
  652. package/multi-select/input/index.d.ts +2 -0
  653. package/multi-select/input/panel-ref.factory.d.ts +24 -0
  654. package/multi-select/input/panel.model.d.ts +7 -0
  655. package/multi-select/input/select-all/index.d.ts +1 -0
  656. package/multi-select/input/select-all/multi-select-all-displayer.component.d.ts +18 -0
  657. package/multi-select/input/select-all/multi-select-all-header.component.d.ts +9 -0
  658. package/multi-select/input/select-all/select-all.models.d.ts +10 -0
  659. package/multi-select/input/select-all/with-select-all.directive.d.ts +20 -0
  660. package/multi-select/input/select-input.component.d.ts +47 -0
  661. package/multi-select/panel/index.d.ts +1 -0
  662. package/multi-select/panel/option-group-context.pipe.d.ts +11 -0
  663. package/multi-select/panel/option-selected.pipe.d.ts +9 -0
  664. package/multi-select/panel/panel.component.d.ts +33 -0
  665. package/multi-select/panel/selected-chip.directive.d.ts +10 -0
  666. package/multi-select/public-api.d.ts +6 -0
  667. package/multi-select/select.model.d.ts +23 -0
  668. package/multi-select/select.translate.d.ts +17 -0
  669. package/multi-select/select.utils.d.ts +14 -0
  670. package/multi-select/select.validators.d.ts +5 -0
  671. package/multi-select/translations.d.ts +106 -0
  672. package/new-badge/index.d.ts +5 -10
  673. package/new-badge/new-badge.component.d.ts +7 -0
  674. package/new-badge/public-api.d.ts +1 -0
  675. package/number/index.d.ts +5 -18
  676. package/number/number.module.d.ts +7 -0
  677. package/number/number.pipe.d.ts +9 -0
  678. package/number/public-api.d.ts +2 -0
  679. package/number-format/index.d.ts +5 -78
  680. package/number-format/number-format.d.ts +16 -0
  681. package/number-format/number-format.directive.d.ts +18 -0
  682. package/number-format/number-format.models.d.ts +33 -0
  683. package/number-format/number-format.pipe.d.ts +8 -0
  684. package/number-format/public-api.d.ts +4 -0
  685. package/numeric-badge/index.d.ts +5 -29
  686. package/numeric-badge/numeric-badge.component.d.ts +26 -0
  687. package/numeric-badge/public-api.d.ts +1 -0
  688. package/option/index.d.ts +3 -618
  689. package/option/item/index.d.ts +7 -0
  690. package/option/item/option-item.component.d.ts +22 -0
  691. package/option/item/option-item.model.d.ts +18 -0
  692. package/option/item/option-item.module.d.ts +7 -0
  693. package/option/item/translations.d.ts +34 -0
  694. package/option/item/tree-option-item.component.d.ts +39 -0
  695. package/option/item/tree-option-item.model.d.ts +14 -0
  696. package/option/item/tree-option-item.module.d.ts +7 -0
  697. package/option/item/tree-option-item.translate.d.ts +8 -0
  698. package/option/operator/feeder/index.d.ts +4 -0
  699. package/option/operator/feeder/option-feeder.component.d.ts +9 -0
  700. package/option/operator/feeder/option-feeder.module.d.ts +7 -0
  701. package/option/operator/feeder/tree-option-feeder.component.d.ts +10 -0
  702. package/option/operator/feeder/tree-option-feeder.module.d.ts +7 -0
  703. package/option/operator/for-groups/for-groups.directive.d.ts +31 -0
  704. package/option/operator/for-groups/for-groups.module.d.ts +7 -0
  705. package/option/operator/for-groups/index.d.ts +2 -0
  706. package/option/operator/for-options/for-options.directive.d.ts +16 -0
  707. package/option/operator/for-options/for-options.module.d.ts +7 -0
  708. package/option/operator/for-options/for-tree-options.directive.d.ts +9 -0
  709. package/option/operator/for-options/for-tree-options.module.d.ts +7 -0
  710. package/option/operator/for-options/index.d.ts +4 -0
  711. package/option/operator/index.d.ts +9 -0
  712. package/option/operator/option-operator.model.d.ts +9 -0
  713. package/option/operator/option-operator.module.d.ts +11 -0
  714. package/option/operator/pager/index.d.ts +4 -0
  715. package/option/operator/pager/option-pager.component.d.ts +13 -0
  716. package/option/operator/pager/option-pager.module.d.ts +7 -0
  717. package/option/operator/pager/tree-option-pager.component.d.ts +16 -0
  718. package/option/operator/pager/tree-option-pager.module.d.ts +7 -0
  719. package/option/operator/searcher/index.d.ts +4 -0
  720. package/option/operator/searcher/option-searcher.component.d.ts +19 -0
  721. package/option/operator/searcher/option-searcher.module.d.ts +7 -0
  722. package/option/operator/searcher/tree-option-searcher.component.d.ts +20 -0
  723. package/option/operator/searcher/tree-option-searcher.module.d.ts +7 -0
  724. package/option/operator/tree-option-operator.model.d.ts +5 -0
  725. package/option/operator/tree-option-operator.module.d.ts +10 -0
  726. package/option/option.module.d.ts +16 -0
  727. package/option/picker/index.d.ts +8 -0
  728. package/option/picker/option-picker-advanced.component.d.ts +40 -0
  729. package/option/picker/option-picker.component.d.ts +68 -0
  730. package/option/picker/option-picker.model.d.ts +22 -0
  731. package/option/picker/option-picker.module.d.ts +9 -0
  732. package/option/picker/tree-option-picker-advanced.component.d.ts +40 -0
  733. package/option/picker/tree-option-picker.component.d.ts +35 -0
  734. package/option/picker/tree-option-picker.model.d.ts +5 -0
  735. package/option/picker/tree-option-picker.module.d.ts +12 -0
  736. package/option/placeholder/index.d.ts +3 -0
  737. package/option/placeholder/option-placeholder.component.d.ts +9 -0
  738. package/option/placeholder/option-placeholder.module.d.ts +7 -0
  739. package/option/placeholder/option-placeholder.translate.d.ts +8 -0
  740. package/option/placeholder/translations.d.ts +34 -0
  741. package/option/public-api.d.ts +7 -0
  742. package/option/selector/all/index.d.ts +5 -0
  743. package/option/selector/all/select-all.component.d.ts +19 -0
  744. package/option/selector/all/select-all.module.d.ts +7 -0
  745. package/option/selector/all/select-all.translate.d.ts +8 -0
  746. package/option/selector/all/translations.d.ts +34 -0
  747. package/option/selector/all/tree-select-all.component.d.ts +21 -0
  748. package/option/selector/all/tree-select-all.module.d.ts +7 -0
  749. package/option/selector/index.d.ts +5 -0
  750. package/option/selector/option-selector.model.d.ts +11 -0
  751. package/option/selector/option-selector.module.d.ts +7 -0
  752. package/option/selector/tree-option-selector.model.d.ts +4 -0
  753. package/option/selector/tree-option-selector.module.d.ts +7 -0
  754. package/option/tree-option.module.d.ts +10 -0
  755. package/package.json +68 -44
  756. package/page-header/index.d.ts +5 -14
  757. package/page-header/page-header.component.d.ts +11 -0
  758. package/page-header/public-api.d.ts +1 -0
  759. package/pagination/index.d.ts +5 -0
  760. package/pagination/pagination.component.d.ts +15 -0
  761. package/pagination/pagination.translate.d.ts +10 -0
  762. package/pagination/public-api.d.ts +1 -0
  763. package/pagination/translations.d.ts +50 -0
  764. package/picker/index.d.ts +5 -29
  765. package/picker/input-picker.model.d.ts +25 -0
  766. package/picker/public-api.d.ts +1 -0
  767. package/plg-push/index.d.ts +5 -9
  768. package/plg-push/plg-push.component.d.ts +6 -0
  769. package/plg-push/public-api.d.ts +1 -0
  770. package/popover/animation/index.d.ts +1 -0
  771. package/popover/animation/popover.animation.d.ts +2 -0
  772. package/popover/index.d.ts +3 -438
  773. package/popover/panel/index.d.ts +3 -0
  774. package/popover/panel/popover-panel.component.d.ts +54 -0
  775. package/popover/panel/popover-panel.model.d.ts +86 -0
  776. package/popover/panel/popover-panel.module.d.ts +7 -0
  777. package/popover/popover.module.d.ts +9 -0
  778. package/popover/public-api.d.ts +5 -0
  779. package/popover/target/index.d.ts +3 -0
  780. package/popover/target/popover-target.directive.d.ts +16 -0
  781. package/popover/target/popover-target.model.d.ts +44 -0
  782. package/popover/target/popover-target.module.d.ts +7 -0
  783. package/popover/trigger/index.d.ts +3 -0
  784. package/popover/trigger/popover-trigger.directive.d.ts +57 -0
  785. package/popover/trigger/popover-trigger.model.d.ts +163 -0
  786. package/popover/trigger/popover-trigger.module.d.ts +8 -0
  787. package/popover2/content/popover-content/popover-content.component.d.ts +23 -0
  788. package/popover2/index.d.ts +5 -64
  789. package/popover2/popover-focus-trap.d.ts +10 -0
  790. package/popover2/popover-tokens.d.ts +11 -0
  791. package/popover2/popover.directive.d.ts +48 -0
  792. package/popover2/popover.providers.d.ts +2 -0
  793. package/popover2/popover.translate.d.ts +7 -0
  794. package/popover2/popover2.translate.d.ts +7 -0
  795. package/popover2/public-api.d.ts +4 -0
  796. package/popover2/translations.d.ts +26 -0
  797. package/popup/index.d.ts +5 -106
  798. package/popup/popup-config.default.d.ts +2 -0
  799. package/popup/popup-config.model.d.ts +9 -0
  800. package/popup/popup-ref.factory.d.ts +20 -0
  801. package/popup/popup-ref.model.d.ts +54 -0
  802. package/popup/popup.module.d.ts +7 -0
  803. package/popup/popup.service.d.ts +11 -0
  804. package/popup/popup.token.d.ts +7 -0
  805. package/popup/public-api.d.ts +7 -0
  806. package/public_api.d.ts +2 -0
  807. package/qualification/index.d.ts +3 -53
  808. package/qualification/public-api.d.ts +3 -0
  809. package/qualification/qualification.model.d.ts +7 -0
  810. package/qualification/qualification.module.d.ts +10 -0
  811. package/qualification/select/index.d.ts +1 -0
  812. package/qualification/select/input/index.d.ts +2 -0
  813. package/qualification/select/input/qualification-select-input.component.d.ts +28 -0
  814. package/qualification/select/input/qualification-select-input.translate.d.ts +7 -0
  815. package/qualification/select/input/translations.d.ts +26 -0
  816. package/read-more/index.d.ts +5 -34
  817. package/read-more/public-api.d.ts +1 -0
  818. package/read-more/read-more.component.d.ts +26 -0
  819. package/read-more/read-more.translate.d.ts +8 -0
  820. package/read-more/translations.d.ts +34 -0
  821. package/safe-content/index.d.ts +3 -32
  822. package/safe-content/public-api.d.ts +3 -0
  823. package/safe-content/safe-content.module.d.ts +10 -0
  824. package/safe-content/safe-external-svg.pipe.d.ts +9 -0
  825. package/safe-content/safe-html.pipe.d.ts +16 -0
  826. package/schematics/collection.json +15 -0
  827. package/schematics/lib/html-ast.js +7 -7
  828. package/schematics/lu-button/index.js +24 -0
  829. package/schematics/lu-button/migration.js +122 -0
  830. package/schematics/lu-button/migration.spec.js +23 -0
  831. package/schematics/lu-button/schema.json +23 -0
  832. package/schematics/lu-icon/index.js +24 -0
  833. package/schematics/lu-icon/migration.js +126 -0
  834. package/schematics/lu-icon/migration.spec.js +23 -0
  835. package/schematics/lu-icon/schema.json +23 -0
  836. package/schematics/lu-select/util.js +2 -1
  837. package/schematics/tokens-typo/index.js +33 -0
  838. package/schematics/tokens-typo/migration.spec.js +50 -0
  839. package/schematics/tokens-typo/schema.json +23 -0
  840. package/scroll/index.d.ts +3 -39
  841. package/scroll/public-api.d.ts +3 -0
  842. package/scroll/scroll.directive.d.ts +23 -0
  843. package/scroll/scroll.model.d.ts +8 -0
  844. package/scroll/scroll.module.d.ts +7 -0
  845. package/scrollBox/index.d.ts +5 -19
  846. package/scrollBox/public-api.d.ts +1 -0
  847. package/scrollBox/scroll-box.component.d.ts +13 -0
  848. package/select/index.d.ts +3 -145
  849. package/select/input/index.d.ts +3 -0
  850. package/select/input/select-input.component.d.ts +70 -0
  851. package/select/input/select-input.model.d.ts +61 -0
  852. package/select/input/select-input.module.d.ts +10 -0
  853. package/select/public-api.d.ts +2 -0
  854. package/select/select.module.d.ts +10 -0
  855. package/sidepanel/index.d.ts +3 -41
  856. package/sidepanel/public-api.d.ts +3 -0
  857. package/sidepanel/sidepanel.model.d.ts +18 -0
  858. package/sidepanel/sidepanel.module.d.ts +10 -0
  859. package/sidepanel/sidepanel.service.d.ts +16 -0
  860. package/simple-select/api/api-v4.directive.d.ts +5 -0
  861. package/simple-select/api/api.directive.d.ts +5 -0
  862. package/simple-select/api/index.d.ts +3 -11
  863. package/simple-select/api/public-api.d.ts +2 -0
  864. package/simple-select/index.d.ts +5 -77
  865. package/simple-select/input/index.d.ts +1 -0
  866. package/simple-select/input/panel-ref.factory.d.ts +19 -0
  867. package/simple-select/input/select-input.component.d.ts +18 -0
  868. package/simple-select/panel/index.d.ts +1 -0
  869. package/simple-select/panel/option-selected.pipe.d.ts +8 -0
  870. package/simple-select/panel/panel.component.d.ts +30 -0
  871. package/simple-select/public-api.d.ts +3 -0
  872. package/simple-select/select.model.d.ts +3 -0
  873. package/simple-select/select.translate.d.ts +11 -0
  874. package/simple-select/translations.d.ts +58 -0
  875. package/skeleton/index.d.ts +5 -60
  876. package/skeleton/public-api.d.ts +6 -0
  877. package/skeleton/skeleton-button/skeleton-button.component.d.ts +7 -0
  878. package/skeleton/skeleton-data-table/skeleton-data-table.component.d.ts +12 -0
  879. package/skeleton/skeleton-field/skeleton-field.component.d.ts +7 -0
  880. package/skeleton/skeleton-header/skeleton-header.component.d.ts +7 -0
  881. package/skeleton/skeleton-index-table/skeleton-index-table.component.d.ts +12 -0
  882. package/skeleton/skeleton-table/skeleton-table.component.d.ts +12 -0
  883. package/src/components/_picker.scss +1 -2
  884. package/src/components/_popup.scss +3 -5
  885. package/src/components/cdk/_global.scss +1 -1
  886. package/src/definitions/option/_option-item.scss +3 -4
  887. package/src/definitions/option/_option-selector.scss +1 -1
  888. package/src/definitions/select/_select-input.scss +17 -17
  889. package/statusBadge/index.d.ts +5 -15
  890. package/statusBadge/public-api.d.ts +1 -0
  891. package/statusBadge/statusBadge.component.d.ts +12 -0
  892. package/tag/index.d.ts +5 -37
  893. package/tag/public-api.d.ts +1 -0
  894. package/tag/tag.component.d.ts +34 -0
  895. package/time/core/base-picker.component.d.ts +23 -0
  896. package/time/core/date-primitives.d.ts +2 -0
  897. package/time/core/date.utils.d.ts +14 -0
  898. package/time/core/duration.utils.d.ts +19 -0
  899. package/time/core/math.utils.d.ts +11 -0
  900. package/time/core/misc.utils.d.ts +1 -0
  901. package/time/core/repeat-on-hold.directive.d.ts +19 -0
  902. package/time/core/time-picker-part.component.d.ts +35 -0
  903. package/time/duration-picker/duration-picker.component.d.ts +42 -0
  904. package/time/duration-picker/duration-picker.model.d.ts +12 -0
  905. package/time/duration-picker/duration-picker.translate.d.ts +9 -0
  906. package/time/duration-picker/translations.d.ts +42 -0
  907. package/time/index.d.ts +5 -185
  908. package/time/public-api.d.ts +4 -0
  909. package/time/time-picker/time-picker.component.d.ts +49 -0
  910. package/time/time-picker/time-picker.model.d.ts +13 -0
  911. package/time/time-picker/time-picker.translate.d.ts +9 -0
  912. package/time/time-picker/translations.d.ts +42 -0
  913. package/title/README.md +12 -44
  914. package/title/index.d.ts +3 -79
  915. package/title/public-api.d.ts +5 -0
  916. package/title/title-translate.service.d.ts +6 -0
  917. package/title/title.model.d.ts +7 -0
  918. package/title/title.module.d.ts +10 -0
  919. package/title/title.service.d.ts +22 -0
  920. package/title/title.strategy.d.ts +30 -0
  921. package/toast/index.d.ts +5 -73
  922. package/toast/public-api.d.ts +5 -0
  923. package/toast/toasts.component.d.ts +24 -0
  924. package/toast/toasts.model.d.ts +23 -0
  925. package/toast/toasts.module.d.ts +7 -0
  926. package/toast/toasts.service.d.ts +13 -0
  927. package/toast/toasts.translate.d.ts +7 -0
  928. package/toast/translations.d.ts +26 -0
  929. package/tooltip/animation/index.d.ts +1 -0
  930. package/tooltip/animation/tooltip.animation.d.ts +2 -0
  931. package/tooltip/index.d.ts +5 -85
  932. package/tooltip/panel/index.d.ts +2 -0
  933. package/tooltip/panel/tooltip-panel.component.d.ts +18 -0
  934. package/tooltip/panel/tooltip-panel.module.d.ts +7 -0
  935. package/tooltip/public-api.d.ts +4 -0
  936. package/tooltip/tooltip.module.d.ts +8 -0
  937. package/tooltip/trigger/ellipsis.ruler.d.ts +27 -0
  938. package/tooltip/trigger/index.d.ts +2 -0
  939. package/tooltip/trigger/tooltip-trigger.directive.d.ts +47 -0
  940. package/tooltip/trigger/tooltip-trigger.module.d.ts +8 -0
  941. package/user/display/display-format.model.d.ts +23 -0
  942. package/user/display/index.d.ts +3 -0
  943. package/user/display/user-display.module.d.ts +7 -0
  944. package/user/display/user-display.pipe.d.ts +38 -0
  945. package/user/index.d.ts +3 -375
  946. package/user/picture/index.d.ts +2 -0
  947. package/user/picture/user-picture.component.d.ts +44 -0
  948. package/user/picture/user-picture.module.d.ts +10 -0
  949. package/user/public-api.d.ts +7 -0
  950. package/user/select/homonyms/index.d.ts +3 -0
  951. package/user/select/homonyms/user-homonyms.component.d.ts +14 -0
  952. package/user/select/homonyms/user-homonyms.module.d.ts +7 -0
  953. package/user/select/homonyms/user-homonyms.service.d.ts +23 -0
  954. package/user/select/index.d.ts +5 -0
  955. package/user/select/input/index.d.ts +3 -0
  956. package/user/select/input/translations.d.ts +34 -0
  957. package/user/select/input/user-select-input.component.d.ts +33 -0
  958. package/user/select/input/user-select-input.module.d.ts +10 -0
  959. package/user/select/input/user-select-input.translate.d.ts +8 -0
  960. package/user/select/me/index.d.ts +2 -0
  961. package/user/select/me/me-option.directive.d.ts +30 -0
  962. package/user/select/me/me-option.module.d.ts +7 -0
  963. package/user/select/searcher/index.d.ts +3 -0
  964. package/user/select/searcher/translations.d.ts +26 -0
  965. package/user/select/searcher/user-searcher.component.d.ts +39 -0
  966. package/user/select/searcher/user-searcher.module.d.ts +7 -0
  967. package/user/select/searcher/user-searcher.translate.d.ts +7 -0
  968. package/user/select/user-select.module.d.ts +13 -0
  969. package/user/service/index.d.ts +2 -0
  970. package/user/service/user-service.model.d.ts +9 -0
  971. package/user/service/user-v3.service.d.ts +20 -0
  972. package/user/tile/index.d.ts +2 -0
  973. package/user/tile/user-tile.component.d.ts +39 -0
  974. package/user/tile/user-tile.module.d.ts +10 -0
  975. package/user/user.model.d.ts +11 -0
  976. package/user/user.module.d.ts +10 -0
  977. package/user-popover/card/pipe/is-future.pipe.d.ts +12 -0
  978. package/user-popover/card/pipe/leave-ends-display.pipe.d.ts +9 -0
  979. package/user-popover/card/trigger/lu-user-popover.directive.d.ts +14 -0
  980. package/user-popover/card/trigger/user-popover.component.d.ts +18 -0
  981. package/user-popover/index.d.ts +5 -0
  982. package/user-popover/popup-employee.translate.d.ts +19 -0
  983. package/user-popover/public-api.d.ts +4 -0
  984. package/user-popover/service/user-popover-service.model.d.ts +6 -0
  985. package/user-popover/service/user-popover.store.d.ts +13 -0
  986. package/user-popover/translations.d.ts +122 -0
  987. package/user-popover/user-popover.model.d.ts +37 -0
  988. package/user-popover/user-popover.providers.d.ts +6 -0
  989. package/fesm2022/lucca-front-ng-popup-employee.mjs +0 -595
  990. package/fesm2022/lucca-front-ng-popup-employee.mjs.map +0 -1
  991. package/popup-employee/index.d.ts +0 -161
  992. package/src/definitions/user/user-picture.scss +0 -116
  993. package/src/definitions/user/user-tile.scss +0 -90
  994. /package/{popup-employee → user-popover}/README.md +0 -0
package/a11y/index.d.ts CHANGED
@@ -1,29 +1,5 @@
1
- import * as i0 from '@angular/core';
2
- import { InjectionToken } from '@angular/core';
3
- import { LuTranslation } from '@lucca-front/ng/core';
4
-
5
- declare const LU_SKIP_LINKS_TRANSLATIONS: InjectionToken<LuTranslation<ILuSkipLinksLabel>>;
6
- interface ILuSkipLinksLabel {
7
- Goto: string;
8
- Goto_Nav_Banner: string;
9
- Goto_Nav_Navside: string;
10
- Goto_Content: string;
11
- }
12
- declare abstract class ALuSkipLinksLabel {
13
- Goto: string;
14
- Goto_Nav_Banner: string;
15
- Goto_Nav_Navside: string;
16
- Goto_Content: string;
17
- }
18
- declare const luSkipLinksTranslations: LuTranslation<ILuSkipLinksLabel>;
19
-
20
- declare class LuSkipLinksComponent {
21
- #private;
22
- protected intl: ILuSkipLinksLabel;
23
- anchor(hash: string, e: Event): void;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<LuSkipLinksComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<LuSkipLinksComponent, "lu-skip-links", never, {}, {}, never, never, true, never>;
26
- }
27
-
28
- export { ALuSkipLinksLabel, LU_SKIP_LINKS_TRANSLATIONS, LuSkipLinksComponent, luSkipLinksTranslations };
29
- export type { ILuSkipLinksLabel };
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@lucca-front/ng/a11y" />
5
+ export * from './public-api';
@@ -0,0 +1,2 @@
1
+ export * from './skip-links/skip-links.component';
2
+ export * from './skip-links/skip-links.translate';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LuSkipLinksComponent {
3
+ #private;
4
+ protected intl: import("./skip-links.translate").ILuSkipLinksLabel;
5
+ anchor(hash: string, e: Event): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuSkipLinksComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<LuSkipLinksComponent, "lu-skip-links", never, {}, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1,16 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { LuTranslation } from '@lucca-front/ng/core';
3
+ export declare const LU_SKIP_LINKS_TRANSLATIONS: InjectionToken<LuTranslation<ILuSkipLinksLabel>>;
4
+ export interface ILuSkipLinksLabel {
5
+ Goto: string;
6
+ Goto_Nav_Banner: string;
7
+ Goto_Nav_Navside: string;
8
+ Goto_Content: string;
9
+ }
10
+ export declare abstract class ALuSkipLinksLabel {
11
+ Goto: string;
12
+ Goto_Nav_Banner: string;
13
+ Goto_Nav_Navside: string;
14
+ Goto_Content: string;
15
+ }
16
+ export declare const luSkipLinksTranslations: LuTranslation<ILuSkipLinksLabel>;
@@ -0,0 +1,50 @@
1
+ export declare const Translations: {
2
+ en: {
3
+ Goto: string;
4
+ Goto_Nav_Banner: string;
5
+ Goto_Nav_Navside: string;
6
+ Goto_Content: string;
7
+ };
8
+ de: {
9
+ Goto: string;
10
+ Goto_Nav_Banner: string;
11
+ Goto_Nav_Navside: string;
12
+ Goto_Content: string;
13
+ };
14
+ fr: {
15
+ Goto: string;
16
+ Goto_Nav_Banner: string;
17
+ Goto_Nav_Navside: string;
18
+ Goto_Content: string;
19
+ };
20
+ it: {
21
+ Goto: string;
22
+ Goto_Nav_Banner: string;
23
+ Goto_Nav_Navside: string;
24
+ Goto_Content: string;
25
+ };
26
+ nl: {
27
+ Goto: string;
28
+ Goto_Nav_Banner: string;
29
+ Goto_Nav_Navside: string;
30
+ Goto_Content: string;
31
+ };
32
+ 'nl-BE': {
33
+ Goto: string;
34
+ Goto_Nav_Banner: string;
35
+ Goto_Nav_Navside: string;
36
+ Goto_Content: string;
37
+ };
38
+ es: {
39
+ Goto: string;
40
+ Goto_Nav_Banner: string;
41
+ Goto_Nav_Navside: string;
42
+ Goto_Content: string;
43
+ };
44
+ pt: {
45
+ Goto: string;
46
+ Goto_Nav_Banner: string;
47
+ Goto_Nav_Navside: string;
48
+ Goto_Content: string;
49
+ };
50
+ };
@@ -0,0 +1,6 @@
1
+ import { AnimationTriggerMetadata } from '@angular/animations';
2
+ export type LuAnimationType = 'scale' | 'slide' | 'fade';
3
+ export declare const LU_DEFAULT_ANIMATION_TIMING = "250ms 0ms ease-out";
4
+ export declare function luFadeAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
5
+ export declare function luScaleAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
6
+ export declare function luSlideAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
@@ -0,0 +1,2 @@
1
+ import { AnimationMetadata } from '@angular/animations';
2
+ export declare function luFadingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
@@ -1,16 +1,5 @@
1
- import { AnimationTriggerMetadata, AnimationMetadata } from '@angular/animations';
2
-
3
- type LuAnimationType = 'scale' | 'slide' | 'fade';
4
- declare const LU_DEFAULT_ANIMATION_TIMING = "250ms 0ms ease-out";
5
- declare function luFadeAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
6
- declare function luScaleAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
7
- declare function luSlideAnimationFactory(animationInTiming?: string, animationOutTiming?: string, triggerName?: string): AnimationTriggerMetadata;
8
-
9
- declare function luFadingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
10
-
11
- declare function luScalingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
12
-
13
- declare function luSlidingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
14
-
15
- export { LU_DEFAULT_ANIMATION_TIMING, luFadeAnimationFactory, luFadingAnimation, luScaleAnimationFactory, luScalingAnimation, luSlideAnimationFactory, luSlidingAnimation };
16
- export type { LuAnimationType };
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@lucca-front/ng/animations" />
5
+ export * from './public-api';
@@ -0,0 +1,4 @@
1
+ export * from './animation.factory';
2
+ export * from './fade.animation';
3
+ export * from './scale.animation';
4
+ export * from './slide.animation';
@@ -0,0 +1,2 @@
1
+ import { AnimationMetadata } from '@angular/animations';
2
+ export declare function luScalingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
@@ -0,0 +1,2 @@
1
+ import { AnimationMetadata } from '@angular/animations';
2
+ export declare function luSlidingAnimation(inTiming: string, outTiming: string): AnimationMetadata[];
@@ -0,0 +1,14 @@
1
+ export interface ILuApiSuggestion<T> {
2
+ relevance: unknown;
3
+ item: T;
4
+ }
5
+ export interface ILuApiItem<TId = number> {
6
+ id: TId;
7
+ name?: string;
8
+ }
9
+ export interface ILuApiResponse<D> {
10
+ data: D;
11
+ }
12
+ export type ILuApiCollectionResponse<T> = ILuApiResponse<{
13
+ items: T[];
14
+ }>;
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./select/api-select.module";
3
+ export declare class LuApiModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiModule, never, [typeof i1.LuApiSelectModule], [typeof i1.LuApiSelectModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<LuApiModule>;
7
+ }
package/api/index.d.ts CHANGED
@@ -1,295 +1,5 @@
1
- import * as i0 from '@angular/core';
2
- import { OnInit, ElementRef, AfterViewInit, ChangeDetectorRef, ViewContainerRef, Renderer2 } from '@angular/core';
3
- import { ILuOnOpenSubscriber, ILuOnScrollBottomSubscriber } from '@lucca-front/ng/core';
4
- import { ILuOptionOperator, LuOptionPickerAdvancedComponent, ILuOptionItem, LuOptionComparer } from '@lucca-front/ng/option';
5
- import { Observable, BehaviorSubject, Subject } from 'rxjs';
6
- import { HttpClient } from '@angular/common/http';
7
- import { FormControl, ControlValueAccessor } from '@angular/forms';
8
- import { Overlay } from '@angular/cdk/overlay';
9
- import { ALuSelectInputComponent } from '@lucca-front/ng/select';
10
-
11
- interface ILuApiSuggestion<T> {
12
- relevance: unknown;
13
- item: T;
14
- }
15
- interface ILuApiItem<TId = number> {
16
- id: TId;
17
- name?: string;
18
- }
19
- interface ILuApiResponse<D> {
20
- data: D;
21
- }
22
- type ILuApiCollectionResponse<T> = ILuApiResponse<{
23
- items: T[];
24
- }>;
25
-
26
- interface ILuApiService<T extends ILuApiItem = ILuApiItem> {
27
- getAll(filters?: string[]): Observable<T[]>;
28
- getPaged(page: number, filters?: string[]): Observable<T[]>;
29
- searchAll(clue: string, filters?: string[]): Observable<T[]>;
30
- searchPaged(clue: string, page: number, filters?: string[]): Observable<T[]>;
31
- }
32
- declare abstract class ALuApiService<T extends ILuApiItem = ILuApiItem> implements ILuApiService<T> {
33
- abstract getAll(filters?: string[]): Observable<T[]>;
34
- abstract getPaged(page: number, filters?: string[]): Observable<T[]>;
35
- abstract searchAll(clue: string, filters?: string[]): Observable<T[]>;
36
- abstract searchPaged(clue: string, page: number, filters?: string[]): Observable<T[]>;
37
- }
38
-
39
- declare class LuApiV3Service<T extends ILuApiItem = ILuApiItem> extends ALuApiService<T> {
40
- protected _http: HttpClient;
41
- protected _api: string;
42
- set api(api: string);
43
- protected _fields: string;
44
- set fields(fields: string);
45
- protected _filters: string[];
46
- set filters(filters: string[]);
47
- protected _orderBy: string;
48
- set orderBy(orderBy: string);
49
- get url(): string;
50
- constructor(_http: HttpClient);
51
- getAll(filters?: string[]): Observable<T[]>;
52
- getPaged(page: number, filters?: string[]): Observable<T[]>;
53
- searchAll(clue: string, filters?: string[]): Observable<T[]>;
54
- searchPaged(clue: string, page: number, filters?: string[]): Observable<T[]>;
55
- protected _get(url: string): Observable<T[]>;
56
- protected _clueFilter(clue: string): string;
57
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiV3Service<any>, never>;
58
- static ɵprov: i0.ɵɵInjectableDeclaration<LuApiV3Service<any>>;
59
- }
60
-
61
- declare class LuApiV4Service<T extends ILuApiItem = ILuApiItem> extends ALuApiService<T> {
62
- protected _http: HttpClient;
63
- protected _api: string;
64
- set api(api: string);
65
- protected _filters: string[];
66
- set filters(filters: string[]);
67
- get filters(): string[];
68
- protected _sort: string;
69
- set sort(sort: string);
70
- constructor(_http: HttpClient);
71
- getAll(filters?: string[]): Observable<T[]>;
72
- getPaged(page?: number, filters?: string[]): Observable<T[]>;
73
- searchAll(clue?: string, filters?: string[]): Observable<T[]>;
74
- searchPaged(clue?: string, page?: number, filters?: string[]): Observable<T[]>;
75
- count(): Observable<number>;
76
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiV4Service<any>, never>;
77
- static ɵprov: i0.ɵɵInjectableDeclaration<LuApiV4Service<any>>;
78
- }
79
-
80
- declare class LuApiHybridService<T extends ILuApiItem = ILuApiItem> extends ALuApiService<T> {
81
- private _http;
82
- private _v3Service;
83
- private _v4Service;
84
- private _standard;
85
- set standard(std: 'v3' | 'v4');
86
- set api(api: string);
87
- set filters(filters: string[]);
88
- set fields(fields: string);
89
- set orderBy(orderBy: string);
90
- set sort(sort: string);
91
- private get _service();
92
- constructor(_http: HttpClient);
93
- getAll(filters?: string[]): Observable<T[]>;
94
- getPaged(page: number, filters?: string[]): Observable<T[]>;
95
- searchAll(clue: string, filters?: string[]): Observable<T[]>;
96
- searchPaged(clue: string, page: number, filters?: string[]): Observable<T[]>;
97
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiHybridService<any>, never>;
98
- static ɵprov: i0.ɵɵInjectableDeclaration<LuApiHybridService<any>>;
99
- }
100
-
101
- type ILuApiOptionFeeder<T extends ILuApiItem = ILuApiItem> = ILuOptionOperator<T>;
102
- interface ILuApiFeederService<T extends ILuApiItem = ILuApiItem> {
103
- getAll(): Observable<T[]>;
104
- }
105
- declare abstract class ALuApiOptionFeeder<T extends ILuApiItem = ILuApiItem, S extends ILuApiService<T> = ILuApiService<T>> implements ILuApiOptionFeeder<T> {
106
- outOptions$: BehaviorSubject<T[]>;
107
- protected _service: S;
108
- constructor(service: S);
109
- onOpen(): void;
110
- }
111
-
112
- declare class LuApiFeederComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionFeeder<T, LuApiHybridService<T>> implements ILuOptionOperator<T>, ILuOnOpenSubscriber {
113
- outOptions$: BehaviorSubject<T[]>;
114
- constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
115
- set standard(standard: 'v3' | 'v4');
116
- set api(api: string);
117
- set fields(fields: string);
118
- set filters(filters: string[]);
119
- set orderBy(orderBy: string);
120
- set sort(sort: string);
121
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiFeederComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
122
- static ɵcmp: i0.ɵɵComponentDeclaration<LuApiFeederComponent<any>, "lu-api-feeder", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
123
- }
124
-
125
- declare class LuApiFeederModule {
126
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiFeederModule, never>;
127
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiFeederModule, never, [typeof LuApiFeederComponent], [typeof LuApiFeederComponent]>;
128
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiFeederModule>;
129
- }
130
-
131
- type ILuApiOptionSearcher<T extends ILuApiItem = ILuApiItem> = ILuApiOptionFeeder<T>;
132
- declare abstract class ALuApiOptionSearcher<T extends ILuApiItem = ILuApiItem, S extends ILuApiService<T> = ILuApiService<T>> implements ILuApiOptionFeeder<T>, ILuOnOpenSubscriber {
133
- protected _service: S;
134
- outOptions$: Subject<T[]>;
135
- loading$: Observable<boolean>;
136
- empty$: Observable<boolean>;
137
- protected _clue$: Observable<string>;
138
- set clue$(clue$: Observable<string>);
139
- constructor(_service: S);
140
- init(): void;
141
- onOpen(): void;
142
- onClose(): void;
143
- protected initObservables(): void;
144
- abstract resetClue(): any;
145
- protected clearOptions(): void;
146
- }
147
- type ILuApiOptionPagedSearcher<T extends ILuApiItem = ILuApiItem> = ILuApiOptionSearcher<T>;
148
- declare abstract class ALuApiOptionPagedSearcher<T extends ILuApiItem = ILuApiItem, S extends ILuApiService<T> = ILuApiService<T>> extends ALuApiOptionSearcher<T, S> implements ILuApiOptionPagedSearcher<T>, ILuOnScrollBottomSubscriber {
149
- outOptions$: Subject<T[]>;
150
- loading$: Observable<boolean>;
151
- protected _loading: boolean;
152
- protected _page$: Subject<void>;
153
- protected _isLastPage: boolean;
154
- protected _options: T[];
155
- constructor(service: S);
156
- onOpen(): void;
157
- onScrollBottom(): void;
158
- protected initObservables(): void;
159
- abstract resetClue(): any;
160
- }
161
-
162
- declare class LuApiSearcherComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionSearcher<T, LuApiHybridService<T>> implements OnInit {
163
- searchInput: ElementRef<HTMLElement>;
164
- set standard(standard: 'v3' | 'v4');
165
- set api(api: string);
166
- set fields(fields: string);
167
- set filters(filters: string[]);
168
- set orderBy(orderBy: string);
169
- set sort(sort: string);
170
- debounceTime: number;
171
- clueControl: FormControl;
172
- constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
173
- ngOnInit(): void;
174
- onOpen(): void;
175
- resetClue(): void;
176
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSearcherComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
177
- static ɵcmp: i0.ɵɵComponentDeclaration<LuApiSearcherComponent<any>, "lu-api-searcher", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, never, never, true, never>;
178
- }
179
- declare class LuApiPagedSearcherComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionPagedSearcher<T, LuApiHybridService<T>> implements OnInit {
180
- searchInput: ElementRef<HTMLElement>;
181
- set standard(standard: 'v3' | 'v4');
182
- set api(api: string);
183
- set fields(fields: string);
184
- set filters(filters: string[]);
185
- set orderBy(orderBy: string);
186
- set sort(sort: string);
187
- debounceTime: number;
188
- clueControl: FormControl;
189
- constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
190
- ngOnInit(): void;
191
- onOpen(): void;
192
- resetClue(): void;
193
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiPagedSearcherComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
194
- static ɵcmp: i0.ɵɵComponentDeclaration<LuApiPagedSearcherComponent<any>, "lu-api-paged-searcher", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, never, never, true, never>;
195
- }
196
-
197
- declare enum Strategy {
198
- append = 0,
199
- replace = 1
200
- }
201
- type ILuApiOptionPager<T extends ILuApiItem = ILuApiItem> = ILuOptionOperator<T>;
202
- interface ILuApiPagerService<T extends ILuApiItem = ILuApiItem> {
203
- getPaged(page: number): Observable<T[]>;
204
- }
205
- declare abstract class ALuApiOptionPager<T extends ILuApiItem = ILuApiItem, S extends ILuApiService<T> = ILuApiService<T>> implements ILuApiOptionPager<T>, ILuOnOpenSubscriber, ILuOnScrollBottomSubscriber {
206
- protected _service: S;
207
- outOptions$: Subject<T[]>;
208
- loading$: Observable<boolean>;
209
- protected _loading: boolean;
210
- protected _results$: Observable<{
211
- items: T[];
212
- strategy: Strategy;
213
- }>;
214
- protected _options: T[];
215
- protected _page$: Subject<number>;
216
- protected _page: number;
217
- protected _initialized: boolean;
218
- constructor(_service: S);
219
- protected init(): void;
220
- onOpen(): void;
221
- onScrollBottom(): void;
222
- protected initObservables(): void;
223
- }
224
-
225
- declare class LuApiPagerComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionPager<T, LuApiHybridService<T>> implements ILuOptionOperator<T>, OnInit, ILuOnScrollBottomSubscriber, ILuOnOpenSubscriber {
226
- constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
227
- set standard(standard: 'v3' | 'v4');
228
- set api(api: string);
229
- set fields(fields: string);
230
- set filters(filters: string[]);
231
- set orderBy(orderBy: string);
232
- ngOnInit(): void;
233
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiPagerComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
234
- static ɵcmp: i0.ɵɵComponentDeclaration<LuApiPagerComponent<any>, "lu-api-pager", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; }, {}, never, never, true, never>;
235
- }
236
-
237
- declare class LuApiSelectInputComponent<T extends ILuApiItem = ILuApiItem> extends ALuSelectInputComponent<T, LuOptionPickerAdvancedComponent<T, ILuOptionItem<T>>> implements ControlValueAccessor, AfterViewInit {
238
- protected _changeDetectorRef: ChangeDetectorRef;
239
- protected _overlay: Overlay;
240
- protected _elementRef: ElementRef<HTMLElement>;
241
- protected _viewContainerRef: ViewContainerRef;
242
- protected _renderer: Renderer2;
243
- standard: 'v3' | 'v4';
244
- api: string;
245
- /**
246
- * only works with standard="v3"
247
- */
248
- fields: string;
249
- filters: string[];
250
- /**
251
- * only works with standard="v3", otherwise use sort
252
- */
253
- orderBy: string;
254
- /**
255
- * only works with standard="v4", otherwise use orderBy
256
- */
257
- sort: string;
258
- byId: LuOptionComparer<T>;
259
- constructor(_changeDetectorRef: ChangeDetectorRef, _overlay: Overlay, _elementRef: ElementRef<HTMLElement>, _viewContainerRef: ViewContainerRef, _renderer: Renderer2);
260
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectInputComponent<any>, never>;
261
- static ɵcmp: i0.ɵɵComponentDeclaration<LuApiSelectInputComponent<any>, "lu-api-select", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
262
- }
263
-
264
- declare class LuApiSelectModule {
265
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectModule, never>;
266
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiSelectModule, never, [typeof LuApiFeederComponent, typeof LuApiPagedSearcherComponent, typeof LuApiSearcherComponent, typeof LuApiPagerComponent, typeof LuApiSelectInputComponent], [typeof LuApiFeederComponent, typeof LuApiPagedSearcherComponent, typeof LuApiSearcherComponent, typeof LuApiPagerComponent, typeof LuApiSelectInputComponent]>;
267
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiSelectModule>;
268
- }
269
-
270
- declare class LuApiModule {
271
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiModule, never>;
272
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiModule, never, [typeof LuApiSelectModule], [typeof LuApiSelectModule]>;
273
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiModule>;
274
- }
275
-
276
- declare class LuApiSearcherModule {
277
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSearcherModule, never>;
278
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiSearcherModule, never, [typeof LuApiPagedSearcherComponent, typeof LuApiSearcherComponent], [typeof LuApiPagedSearcherComponent, typeof LuApiSearcherComponent]>;
279
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiSearcherModule>;
280
- }
281
-
282
- declare class LuApiPagerModule {
283
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiPagerModule, never>;
284
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiPagerModule, never, [typeof LuApiPagerComponent], [typeof LuApiPagerComponent]>;
285
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiPagerModule>;
286
- }
287
-
288
- declare class LuApiSelectInputModule {
289
- static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectInputModule, never>;
290
- static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiSelectInputModule, never, [typeof LuApiSelectInputComponent], [typeof LuApiSelectInputComponent]>;
291
- static ɵinj: i0.ɵɵInjectorDeclaration<LuApiSelectInputModule>;
292
- }
293
-
294
- export { ALuApiOptionFeeder, ALuApiOptionPagedSearcher, ALuApiOptionPager, ALuApiOptionSearcher, ALuApiService, LuApiFeederComponent, LuApiFeederModule, LuApiHybridService, LuApiModule, LuApiPagedSearcherComponent, LuApiPagerComponent, LuApiPagerModule, LuApiSearcherComponent, LuApiSearcherModule, LuApiSelectInputComponent, LuApiSelectInputModule, LuApiSelectModule, LuApiV3Service, LuApiV4Service };
295
- export type { ILuApiCollectionResponse, ILuApiFeederService, ILuApiItem, ILuApiOptionFeeder, ILuApiOptionPagedSearcher, ILuApiOptionPager, ILuApiOptionSearcher, ILuApiPagerService, ILuApiResponse, ILuApiService, ILuApiSuggestion };
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@lucca-front/ng/api" />
5
+ export * from './public-api';
@@ -0,0 +1,4 @@
1
+ export * from './api.model';
2
+ export * from './api.module';
3
+ export * from './select/index';
4
+ export * from './service/index';
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./feeder/api-feeder.component";
3
+ import * as i2 from "./searcher/api-searcher.component";
4
+ import * as i3 from "./pager/api-pager.component";
5
+ import * as i4 from "./input/api-select-input.component";
6
+ export declare class LuApiSelectModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiSelectModule, never, [typeof i1.LuApiFeederComponent, typeof i2.LuApiPagedSearcherComponent, typeof i2.LuApiSearcherComponent, typeof i3.LuApiPagerComponent, typeof i4.LuApiSelectInputComponent], [typeof i1.LuApiFeederComponent, typeof i2.LuApiPagedSearcherComponent, typeof i2.LuApiSearcherComponent, typeof i3.LuApiPagerComponent, typeof i4.LuApiSelectInputComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<LuApiSelectModule>;
10
+ }
@@ -0,0 +1,19 @@
1
+ import { ILuOnOpenSubscriber } from '@lucca-front/ng/core';
2
+ import { ILuOptionOperator } from '@lucca-front/ng/option';
3
+ import { BehaviorSubject } from 'rxjs';
4
+ import { ILuApiItem } from '../../api.model';
5
+ import { LuApiHybridService } from '../../service/index';
6
+ import { ALuApiOptionFeeder } from './api-feeder.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class LuApiFeederComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionFeeder<T, LuApiHybridService<T>> implements ILuOptionOperator<T>, ILuOnOpenSubscriber {
9
+ outOptions$: BehaviorSubject<T[]>;
10
+ constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
11
+ set standard(standard: 'v3' | 'v4');
12
+ set api(api: string);
13
+ set fields(fields: string);
14
+ set filters(filters: string[]);
15
+ set orderBy(orderBy: string);
16
+ set sort(sort: string);
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiFeederComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<LuApiFeederComponent<any>, "lu-api-feeder", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
19
+ }
@@ -0,0 +1,14 @@
1
+ import { ILuOptionOperator } from '@lucca-front/ng/option';
2
+ import { BehaviorSubject, Observable } from 'rxjs';
3
+ import { ILuApiItem } from '../../api.model';
4
+ import { ILuApiService } from '../../service/index';
5
+ export type ILuApiOptionFeeder<T extends ILuApiItem = ILuApiItem> = ILuOptionOperator<T>;
6
+ export interface ILuApiFeederService<T extends ILuApiItem = ILuApiItem> {
7
+ getAll(): Observable<T[]>;
8
+ }
9
+ export declare abstract class ALuApiOptionFeeder<T extends ILuApiItem = ILuApiItem, S extends ILuApiService<T> = ILuApiService<T>> implements ILuApiOptionFeeder<T> {
10
+ outOptions$: BehaviorSubject<T[]>;
11
+ protected _service: S;
12
+ constructor(service: S);
13
+ onOpen(): void;
14
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./api-feeder.component";
3
+ export declare class LuApiFeederModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiFeederModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiFeederModule, never, [typeof i1.LuApiFeederComponent], [typeof i1.LuApiFeederComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<LuApiFeederModule>;
7
+ }
@@ -0,0 +1,3 @@
1
+ export * from './api-feeder.model';
2
+ export * from './api-feeder.module';
3
+ export * from './api-feeder.component';
@@ -0,0 +1,5 @@
1
+ export * from './api-select.module';
2
+ export * from './feeder/index';
3
+ export * from './searcher/index';
4
+ export * from './pager/index';
5
+ export * from './input/index';
@@ -0,0 +1,32 @@
1
+ import { Overlay } from '@angular/cdk/overlay';
2
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, Renderer2, ViewContainerRef } from '@angular/core';
3
+ import { ControlValueAccessor } from '@angular/forms';
4
+ import { ILuOptionItem, LuOptionComparer, LuOptionPickerAdvancedComponent } from '@lucca-front/ng/option';
5
+ import { ALuSelectInputComponent } from '@lucca-front/ng/select';
6
+ import * as i0 from "@angular/core";
7
+ export declare class LuApiSelectInputComponent<T extends import('../../api.model').ILuApiItem = import('../../api.model').ILuApiItem> extends ALuSelectInputComponent<T, LuOptionPickerAdvancedComponent<T, ILuOptionItem<T>>> implements ControlValueAccessor, AfterViewInit {
8
+ protected _changeDetectorRef: ChangeDetectorRef;
9
+ protected _overlay: Overlay;
10
+ protected _elementRef: ElementRef<HTMLElement>;
11
+ protected _viewContainerRef: ViewContainerRef;
12
+ protected _renderer: Renderer2;
13
+ standard: 'v3' | 'v4';
14
+ api: string;
15
+ /**
16
+ * only works with standard="v3"
17
+ */
18
+ fields: string;
19
+ filters: string[];
20
+ /**
21
+ * only works with standard="v3", otherwise use sort
22
+ */
23
+ orderBy: string;
24
+ /**
25
+ * only works with standard="v4", otherwise use orderBy
26
+ */
27
+ sort: string;
28
+ byId: LuOptionComparer<T>;
29
+ constructor(_changeDetectorRef: ChangeDetectorRef, _overlay: Overlay, _elementRef: ElementRef<HTMLElement>, _viewContainerRef: ViewContainerRef, _renderer: Renderer2);
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectInputComponent<any>, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<LuApiSelectInputComponent<any>, "lu-api-select", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
32
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./api-select-input.component";
3
+ export declare class LuApiSelectInputModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiSelectInputModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LuApiSelectInputModule, never, [typeof i1.LuApiSelectInputComponent], [typeof i1.LuApiSelectInputComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<LuApiSelectInputModule>;
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from './api-select-input.module';
2
+ export * from './api-select-input.component';
@@ -0,0 +1,18 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ILuOnOpenSubscriber, ILuOnScrollBottomSubscriber } from '@lucca-front/ng/core';
3
+ import { ILuOptionOperator } from '@lucca-front/ng/option';
4
+ import { ILuApiItem } from '../../api.model';
5
+ import { LuApiHybridService } from '../../service/index';
6
+ import { ALuApiOptionPager } from './api-pager.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class LuApiPagerComponent<T extends ILuApiItem = ILuApiItem> extends ALuApiOptionPager<T, LuApiHybridService<T>> implements ILuOptionOperator<T>, OnInit, ILuOnScrollBottomSubscriber, ILuOnOpenSubscriber {
9
+ constructor(hostService: LuApiHybridService<T>, selfService: LuApiHybridService<T>);
10
+ set standard(standard: 'v3' | 'v4');
11
+ set api(api: string);
12
+ set fields(fields: string);
13
+ set filters(filters: string[]);
14
+ set orderBy(orderBy: string);
15
+ ngOnInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuApiPagerComponent<any>, [{ optional: true; skipSelf: true; }, { self: true; }]>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<LuApiPagerComponent<any>, "lu-api-pager", never, { "standard": { "alias": "standard"; "required": false; }; "api": { "alias": "api"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; }, {}, never, never, true, never>;
18
+ }