@ng-atomic/components 18.2.0 → 18.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (302) hide show
  1. package/atoms/smart-menu-button/smart-menu-button.atom.d.ts +3 -3
  2. package/components.module.d.ts +6 -1
  3. package/esm2022/atoms/icon/icon.atom.mjs +2 -2
  4. package/esm2022/atoms/smart-menu-button/smart-menu-button.atom.mjs +77 -114
  5. package/esm2022/components.module.mjs +7 -3
  6. package/esm2022/extras/editor/editor.component.mjs +78 -46
  7. package/esm2022/frames/app/app.frame.mjs +130 -70
  8. package/esm2022/frames/auto-layout/auto-layout.frame.mjs +29 -7
  9. package/esm2022/frames/columns/columns.frame.mjs +2 -2
  10. package/esm2022/frames/divider/divider.frame.mjs +2 -2
  11. package/esm2022/frames/drawer/drawer.frame.mjs +2 -2
  12. package/esm2022/frames/entrance/entrance.frame.mjs +2 -2
  13. package/esm2022/frames/fab/fab.frame.mjs +2 -2
  14. package/esm2022/frames/frames.module.mjs +3 -3
  15. package/esm2022/frames/line-up/line-up.animations.mjs +3 -7
  16. package/esm2022/frames/line-up/line-up.frame.mjs +2 -2
  17. package/esm2022/frames/loading/loading.frame.mjs +2 -2
  18. package/esm2022/frames/progress-bar/index.mjs +2 -0
  19. package/esm2022/frames/progress-bar/ng-atomic-components-frames-progress-bar.mjs +5 -0
  20. package/esm2022/frames/progress-bar/progress-bar.frame.mjs +53 -0
  21. package/esm2022/frames/router-outlet/router-outlet.frame.mjs +96 -41
  22. package/esm2022/frames/scroll/scroll.frame.mjs +32 -14
  23. package/esm2022/frames/scroll-v2/index.mjs +2 -2
  24. package/esm2022/frames/side-app/index.mjs +2 -0
  25. package/esm2022/frames/side-app/ng-atomic-components-frames-side-app.mjs +5 -0
  26. package/esm2022/frames/side-app/side-app.frame.mjs +74 -0
  27. package/esm2022/frames/side-nav/side-nav.frame.mjs +27 -21
  28. package/esm2022/frames/smart-menu/smart-menu.frame.mjs +2 -2
  29. package/esm2022/frames/tabs/tabs.frame.mjs +13 -7
  30. package/esm2022/frames/vertical-hide/vertical-hide.frame.mjs +11 -18
  31. package/esm2022/molecules/action-input-field/action-input-field.molecule.mjs +2 -2
  32. package/esm2022/molecules/actions-column/actions-column.molecule.mjs +13 -7
  33. package/esm2022/molecules/checkbox-column/checkbox-column.molecule.mjs +48 -21
  34. package/esm2022/molecules/date-input-field/date-input-field.molecule.mjs +2 -2
  35. package/esm2022/molecules/date-range-input-field/date-range-input-field.molecule.mjs +2 -2
  36. package/esm2022/molecules/file-input-field/file-input-field.molecule.mjs +2 -2
  37. package/esm2022/molecules/grid-item/grid-item.molecule.mjs +2 -2
  38. package/esm2022/molecules/list-item/index.mjs +2 -0
  39. package/esm2022/molecules/list-item/list-item.molecule.mjs +198 -0
  40. package/esm2022/molecules/list-item/ng-atomic-components-molecules-list-item.mjs +5 -0
  41. package/esm2022/molecules/loading-box/loading-box.molecule.mjs +2 -2
  42. package/esm2022/molecules/molecules.module.mjs +4 -1
  43. package/esm2022/molecules/navigation-list-item/navigation-list-item.molecule.mjs +2 -2
  44. package/esm2022/molecules/select-input-field/select-input-field.molecule.mjs +9 -5
  45. package/esm2022/molecules/smart-column/smart-column.molecule.mjs +129 -43
  46. package/esm2022/molecules/tree-column/tree-column.molecule.mjs +37 -25
  47. package/esm2022/organisms/action-buttons-section/action-buttons-section.organism.mjs +2 -2
  48. package/esm2022/organisms/action-input-section/action-input-section.organism.mjs +2 -2
  49. package/esm2022/organisms/agreement-input-section/agreement-input-section.organism.mjs +3 -3
  50. package/esm2022/organisms/card-input-section/card-input-section.organism.mjs +2 -2
  51. package/esm2022/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.mjs +2 -2
  52. package/esm2022/organisms/date-input-section/date-input-section.organism.mjs +4 -4
  53. package/esm2022/organisms/date-range-input-section/date-range-input-section.organism.mjs +4 -4
  54. package/esm2022/organisms/definition-list/definition-list.organism.mjs +2 -2
  55. package/esm2022/organisms/file-input-section/file-input-section.organism.mjs +2 -2
  56. package/esm2022/organisms/filters-section/filters-section.organism.mjs +5 -5
  57. package/esm2022/organisms/graphql-editor/graphql-editor.organism.mjs +1 -1
  58. package/esm2022/organisms/grid-cards-section/grid-cards-section.organism.mjs +2 -2
  59. package/esm2022/organisms/heading/heading.organism.mjs +2 -2
  60. package/esm2022/{sheets/actions → organisms/list}/index.mjs +2 -2
  61. package/esm2022/organisms/list/list.organism.mjs +161 -0
  62. package/esm2022/{sheets/actions/ng-atomic-components-sheets-actions.mjs → organisms/list/ng-atomic-components-organisms-list.mjs} +1 -1
  63. package/esm2022/organisms/menu-footer/menu-footer.organism.mjs +2 -2
  64. package/esm2022/organisms/menu-header/menu-header.organism.mjs +2 -2
  65. package/esm2022/organisms/mermaid-section/mermaid-section.organism.mjs +39 -33
  66. package/esm2022/organisms/messages-section/messages-section.organism.mjs +2 -2
  67. package/esm2022/organisms/navigation-list/navigation-list.organism.mjs +2 -2
  68. package/esm2022/organisms/navigator/navigator.organism.mjs +49 -19
  69. package/esm2022/organisms/number-input-section/number-input-section.organism.mjs +2 -2
  70. package/esm2022/organisms/organisms.module.mjs +5 -5
  71. package/esm2022/organisms/paginator/paginator.organism.mjs +2 -2
  72. package/esm2022/organisms/password-input-section/password-input-section.organism.mjs +2 -2
  73. package/esm2022/organisms/select-input-section/select-input-section.organism.mjs +4 -4
  74. package/esm2022/organisms/selection-list/selection-list.organism.mjs +1 -1
  75. package/esm2022/organisms/slider-input-section/slider-input-section.organism.mjs +4 -4
  76. package/esm2022/organisms/social-login-section/social-login-section.organism.mjs +2 -2
  77. package/esm2022/organisms/table/index.mjs +2 -1
  78. package/esm2022/organisms/table/table.helpers.mjs +4 -4
  79. package/esm2022/organisms/table/table.organism.mjs +152 -141
  80. package/esm2022/organisms/text-input-section/text-input-section.organism.mjs +4 -4
  81. package/esm2022/organisms/textarea-section/textarea-section.organism.mjs +2 -2
  82. package/esm2022/organisms/thread-messages-section/thread-messages-section.organism.mjs +2 -2
  83. package/esm2022/organisms/tree-list/index.mjs +2 -0
  84. package/esm2022/organisms/tree-list/ng-atomic-components-organisms-tree-list.mjs +5 -0
  85. package/esm2022/organisms/tree-list/tree-list.organism.mjs +125 -0
  86. package/esm2022/pages/_index/index.page.mjs +169 -62
  87. package/esm2022/pages/columns/columns.page.mjs +10 -9
  88. package/esm2022/pages/form/form.page.mjs +27 -12
  89. package/esm2022/pages/terms/terms.page.mjs +2 -2
  90. package/esm2022/templates/_index/index.template.mjs +276 -155
  91. package/esm2022/templates/background/background.template.mjs +2 -2
  92. package/esm2022/templates/code-editor/code-editor.template.mjs +52 -15
  93. package/esm2022/templates/columns/columns.template.mjs +6 -4
  94. package/esm2022/templates/entrance/entrance.template.mjs +12 -11
  95. package/esm2022/templates/form/form.builder.mjs +93 -71
  96. package/esm2022/templates/form/form.template.mjs +47 -28
  97. package/esm2022/templates/icon-button-menu/icon-button-menu.template.mjs +69 -16
  98. package/esm2022/templates/menu/menu.template.mjs +2 -2
  99. package/esm2022/templates/messages/messages.template.mjs +71 -65
  100. package/esm2022/templates/selection/selection.template.mjs +2 -2
  101. package/esm2022/templates/settings/settings.template.mjs +2 -2
  102. package/extras/editor/editor.component.d.ts +19 -10
  103. package/fesm2022/ng-atomic-components-atoms-icon.mjs +2 -2
  104. package/fesm2022/ng-atomic-components-atoms-smart-menu-button.mjs +76 -113
  105. package/fesm2022/ng-atomic-components-atoms-smart-menu-button.mjs.map +1 -1
  106. package/fesm2022/ng-atomic-components-extras-editor.mjs +79 -47
  107. package/fesm2022/ng-atomic-components-extras-editor.mjs.map +1 -1
  108. package/fesm2022/ng-atomic-components-frames-app.mjs +129 -69
  109. package/fesm2022/ng-atomic-components-frames-app.mjs.map +1 -1
  110. package/fesm2022/ng-atomic-components-frames-auto-layout.mjs +29 -7
  111. package/fesm2022/ng-atomic-components-frames-auto-layout.mjs.map +1 -1
  112. package/fesm2022/ng-atomic-components-frames-columns.mjs +2 -2
  113. package/fesm2022/ng-atomic-components-frames-divider.mjs +2 -2
  114. package/fesm2022/ng-atomic-components-frames-drawer.mjs +2 -2
  115. package/fesm2022/ng-atomic-components-frames-entrance.mjs +2 -2
  116. package/fesm2022/ng-atomic-components-frames-fab.mjs +2 -2
  117. package/fesm2022/ng-atomic-components-frames-line-up.mjs +4 -8
  118. package/fesm2022/ng-atomic-components-frames-line-up.mjs.map +1 -1
  119. package/fesm2022/ng-atomic-components-frames-loading.mjs +2 -2
  120. package/fesm2022/ng-atomic-components-frames-progress-bar.mjs +60 -0
  121. package/fesm2022/ng-atomic-components-frames-progress-bar.mjs.map +1 -0
  122. package/fesm2022/ng-atomic-components-frames-router-outlet.mjs +96 -41
  123. package/fesm2022/ng-atomic-components-frames-router-outlet.mjs.map +1 -1
  124. package/fesm2022/ng-atomic-components-frames-scroll-v2.mjs +1 -48
  125. package/fesm2022/ng-atomic-components-frames-scroll-v2.mjs.map +1 -1
  126. package/fesm2022/ng-atomic-components-frames-scroll.mjs +31 -13
  127. package/fesm2022/ng-atomic-components-frames-scroll.mjs.map +1 -1
  128. package/fesm2022/ng-atomic-components-frames-side-app.mjs +81 -0
  129. package/fesm2022/ng-atomic-components-frames-side-app.mjs.map +1 -0
  130. package/fesm2022/ng-atomic-components-frames-side-nav.mjs +26 -20
  131. package/fesm2022/ng-atomic-components-frames-side-nav.mjs.map +1 -1
  132. package/fesm2022/ng-atomic-components-frames-smart-menu.mjs +2 -2
  133. package/fesm2022/ng-atomic-components-frames-tabs.mjs +12 -6
  134. package/fesm2022/ng-atomic-components-frames-tabs.mjs.map +1 -1
  135. package/fesm2022/ng-atomic-components-frames-vertical-hide.mjs +10 -17
  136. package/fesm2022/ng-atomic-components-frames-vertical-hide.mjs.map +1 -1
  137. package/fesm2022/ng-atomic-components-frames.mjs +2 -2
  138. package/fesm2022/ng-atomic-components-frames.mjs.map +1 -1
  139. package/fesm2022/ng-atomic-components-molecules-action-input-field.mjs +1 -1
  140. package/fesm2022/ng-atomic-components-molecules-action-input-field.mjs.map +1 -1
  141. package/fesm2022/ng-atomic-components-molecules-actions-column.mjs +12 -6
  142. package/fesm2022/ng-atomic-components-molecules-actions-column.mjs.map +1 -1
  143. package/fesm2022/ng-atomic-components-molecules-checkbox-column.mjs +47 -21
  144. package/fesm2022/ng-atomic-components-molecules-checkbox-column.mjs.map +1 -1
  145. package/fesm2022/ng-atomic-components-molecules-date-input-field.mjs +2 -2
  146. package/fesm2022/ng-atomic-components-molecules-date-range-input-field.mjs +2 -2
  147. package/fesm2022/ng-atomic-components-molecules-file-input-field.mjs +1 -1
  148. package/fesm2022/ng-atomic-components-molecules-file-input-field.mjs.map +1 -1
  149. package/fesm2022/ng-atomic-components-molecules-grid-item.mjs +2 -2
  150. package/fesm2022/ng-atomic-components-molecules-list-item.mjs +203 -0
  151. package/fesm2022/ng-atomic-components-molecules-list-item.mjs.map +1 -0
  152. package/fesm2022/ng-atomic-components-molecules-loading-box.mjs +2 -2
  153. package/fesm2022/ng-atomic-components-molecules-navigation-list-item.mjs +2 -2
  154. package/fesm2022/ng-atomic-components-molecules-select-input-field.mjs +8 -4
  155. package/fesm2022/ng-atomic-components-molecules-select-input-field.mjs.map +1 -1
  156. package/fesm2022/ng-atomic-components-molecules-smart-column.mjs +128 -43
  157. package/fesm2022/ng-atomic-components-molecules-smart-column.mjs.map +1 -1
  158. package/fesm2022/ng-atomic-components-molecules-tree-column.mjs +36 -24
  159. package/fesm2022/ng-atomic-components-molecules-tree-column.mjs.map +1 -1
  160. package/fesm2022/ng-atomic-components-molecules.mjs +3 -0
  161. package/fesm2022/ng-atomic-components-molecules.mjs.map +1 -1
  162. package/fesm2022/ng-atomic-components-organisms-action-buttons-section.mjs +2 -2
  163. package/fesm2022/ng-atomic-components-organisms-action-input-section.mjs +2 -2
  164. package/fesm2022/ng-atomic-components-organisms-agreement-input-section.mjs +2 -2
  165. package/fesm2022/ng-atomic-components-organisms-agreement-input-section.mjs.map +1 -1
  166. package/fesm2022/ng-atomic-components-organisms-card-input-section.mjs +2 -2
  167. package/fesm2022/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +2 -2
  168. package/fesm2022/ng-atomic-components-organisms-date-input-section.mjs +3 -3
  169. package/fesm2022/ng-atomic-components-organisms-date-input-section.mjs.map +1 -1
  170. package/fesm2022/ng-atomic-components-organisms-date-range-input-section.mjs +3 -3
  171. package/fesm2022/ng-atomic-components-organisms-date-range-input-section.mjs.map +1 -1
  172. package/fesm2022/ng-atomic-components-organisms-definition-list.mjs +2 -2
  173. package/fesm2022/ng-atomic-components-organisms-file-input-section.mjs +2 -2
  174. package/fesm2022/ng-atomic-components-organisms-filters-section.mjs +4 -4
  175. package/fesm2022/ng-atomic-components-organisms-filters-section.mjs.map +1 -1
  176. package/fesm2022/ng-atomic-components-organisms-graphql-editor.mjs +1 -1
  177. package/fesm2022/ng-atomic-components-organisms-graphql-editor.mjs.map +1 -1
  178. package/fesm2022/ng-atomic-components-organisms-grid-cards-section.mjs +2 -2
  179. package/fesm2022/ng-atomic-components-organisms-heading.mjs +2 -2
  180. package/fesm2022/ng-atomic-components-organisms-list.mjs +166 -0
  181. package/fesm2022/ng-atomic-components-organisms-list.mjs.map +1 -0
  182. package/fesm2022/ng-atomic-components-organisms-menu-footer.mjs +2 -2
  183. package/fesm2022/ng-atomic-components-organisms-menu-header.mjs +2 -2
  184. package/fesm2022/ng-atomic-components-organisms-mermaid-section.mjs +38 -32
  185. package/fesm2022/ng-atomic-components-organisms-mermaid-section.mjs.map +1 -1
  186. package/fesm2022/ng-atomic-components-organisms-messages-section.mjs +2 -2
  187. package/fesm2022/ng-atomic-components-organisms-navigation-list.mjs +2 -2
  188. package/fesm2022/ng-atomic-components-organisms-navigator.mjs +48 -18
  189. package/fesm2022/ng-atomic-components-organisms-navigator.mjs.map +1 -1
  190. package/fesm2022/ng-atomic-components-organisms-number-input-section.mjs +2 -2
  191. package/fesm2022/ng-atomic-components-organisms-number-input-section.mjs.map +1 -1
  192. package/fesm2022/ng-atomic-components-organisms-paginator.mjs +2 -2
  193. package/fesm2022/ng-atomic-components-organisms-password-input-section.mjs +2 -2
  194. package/fesm2022/ng-atomic-components-organisms-password-input-section.mjs.map +1 -1
  195. package/fesm2022/ng-atomic-components-organisms-select-input-section.mjs +3 -3
  196. package/fesm2022/ng-atomic-components-organisms-select-input-section.mjs.map +1 -1
  197. package/fesm2022/ng-atomic-components-organisms-selection-list.mjs +1 -1
  198. package/fesm2022/ng-atomic-components-organisms-selection-list.mjs.map +1 -1
  199. package/fesm2022/ng-atomic-components-organisms-slider-input-section.mjs +3 -3
  200. package/fesm2022/ng-atomic-components-organisms-slider-input-section.mjs.map +1 -1
  201. package/fesm2022/ng-atomic-components-organisms-social-login-section.mjs +2 -2
  202. package/fesm2022/ng-atomic-components-organisms-table.mjs +156 -145
  203. package/fesm2022/ng-atomic-components-organisms-table.mjs.map +1 -1
  204. package/fesm2022/ng-atomic-components-organisms-text-input-section.mjs +3 -3
  205. package/fesm2022/ng-atomic-components-organisms-text-input-section.mjs.map +1 -1
  206. package/fesm2022/ng-atomic-components-organisms-textarea-section.mjs +2 -2
  207. package/fesm2022/ng-atomic-components-organisms-textarea-section.mjs.map +1 -1
  208. package/fesm2022/ng-atomic-components-organisms-thread-messages-section.mjs +2 -2
  209. package/fesm2022/ng-atomic-components-organisms-tree-list.mjs +132 -0
  210. package/fesm2022/ng-atomic-components-organisms-tree-list.mjs.map +1 -0
  211. package/fesm2022/ng-atomic-components-organisms.mjs +4 -4
  212. package/fesm2022/ng-atomic-components-organisms.mjs.map +1 -1
  213. package/fesm2022/ng-atomic-components-pages-_index.mjs +168 -62
  214. package/fesm2022/ng-atomic-components-pages-_index.mjs.map +1 -1
  215. package/fesm2022/ng-atomic-components-pages-columns.mjs +9 -8
  216. package/fesm2022/ng-atomic-components-pages-columns.mjs.map +1 -1
  217. package/fesm2022/ng-atomic-components-pages-form.mjs +26 -11
  218. package/fesm2022/ng-atomic-components-pages-form.mjs.map +1 -1
  219. package/fesm2022/ng-atomic-components-pages-terms.mjs +1 -1
  220. package/fesm2022/ng-atomic-components-pages-terms.mjs.map +1 -1
  221. package/fesm2022/ng-atomic-components-templates-_index.mjs +276 -155
  222. package/fesm2022/ng-atomic-components-templates-_index.mjs.map +1 -1
  223. package/fesm2022/ng-atomic-components-templates-background.mjs +2 -2
  224. package/fesm2022/ng-atomic-components-templates-code-editor.mjs +51 -14
  225. package/fesm2022/ng-atomic-components-templates-code-editor.mjs.map +1 -1
  226. package/fesm2022/ng-atomic-components-templates-columns.mjs +5 -3
  227. package/fesm2022/ng-atomic-components-templates-columns.mjs.map +1 -1
  228. package/fesm2022/ng-atomic-components-templates-entrance.mjs +11 -10
  229. package/fesm2022/ng-atomic-components-templates-entrance.mjs.map +1 -1
  230. package/fesm2022/ng-atomic-components-templates-form.mjs +139 -99
  231. package/fesm2022/ng-atomic-components-templates-form.mjs.map +1 -1
  232. package/fesm2022/ng-atomic-components-templates-icon-button-menu.mjs +68 -15
  233. package/fesm2022/ng-atomic-components-templates-icon-button-menu.mjs.map +1 -1
  234. package/fesm2022/ng-atomic-components-templates-menu.mjs +2 -2
  235. package/fesm2022/ng-atomic-components-templates-messages.mjs +71 -65
  236. package/fesm2022/ng-atomic-components-templates-messages.mjs.map +1 -1
  237. package/fesm2022/ng-atomic-components-templates-selection.mjs +2 -2
  238. package/fesm2022/ng-atomic-components-templates-settings.mjs +2 -2
  239. package/fesm2022/ng-atomic-components.mjs +7 -3
  240. package/fesm2022/ng-atomic-components.mjs.map +1 -1
  241. package/frames/app/app.frame.d.ts +13 -1
  242. package/frames/auto-layout/auto-layout.frame.d.ts +7 -1
  243. package/frames/progress-bar/index.d.ts +1 -0
  244. package/frames/progress-bar/progress-bar.frame.d.ts +14 -0
  245. package/frames/router-outlet/router-outlet.frame.d.ts +20 -9
  246. package/frames/scroll/scroll.frame.d.ts +5 -1
  247. package/frames/scroll-v2/index.d.ts +1 -1
  248. package/frames/side-app/index.d.ts +1 -0
  249. package/frames/side-app/side-app.frame.d.ts +20 -0
  250. package/frames/side-nav/side-nav.frame.d.ts +6 -2
  251. package/frames/tabs/tabs.frame.d.ts +2 -1
  252. package/frames/vertical-hide/vertical-hide.frame.d.ts +2 -2
  253. package/molecules/actions-column/actions-column.molecule.d.ts +3 -2
  254. package/molecules/checkbox-column/checkbox-column.molecule.d.ts +12 -4
  255. package/molecules/list-item/index.d.ts +1 -0
  256. package/molecules/list-item/list-item.molecule.d.ts +50 -0
  257. package/molecules/molecules.module.d.ts +3 -0
  258. package/molecules/smart-column/smart-column.molecule.d.ts +34 -9
  259. package/molecules/tree-column/tree-column.molecule.d.ts +6 -2
  260. package/organisms/list/index.d.ts +1 -0
  261. package/organisms/{smart-list/smart-list.organism.d.ts → list/list.organism.d.ts} +11 -11
  262. package/organisms/mermaid-section/mermaid-section.organism.d.ts +10 -10
  263. package/organisms/navigator/navigator.organism.d.ts +8 -6
  264. package/organisms/organisms.module.d.ts +1 -1
  265. package/organisms/table/index.d.ts +1 -0
  266. package/organisms/table/table.helpers.d.ts +1 -1
  267. package/organisms/table/table.organism.d.ts +32 -1
  268. package/organisms/tree-list/index.d.ts +1 -0
  269. package/organisms/tree-list/tree-list.organism.d.ts +33 -0
  270. package/package.json +37 -25
  271. package/pages/_index/index.page.d.ts +72 -43
  272. package/pages/columns/columns.page.d.ts +5 -2
  273. package/pages/form/form.page.d.ts +11 -2
  274. package/templates/_index/index.template.d.ts +40 -11
  275. package/templates/code-editor/code-editor.template.d.ts +6 -3
  276. package/templates/entrance/entrance.template.d.ts +1 -1
  277. package/templates/form/form.builder.d.ts +10 -3
  278. package/templates/form/form.template.d.ts +2 -1
  279. package/templates/icon-button-menu/icon-button-menu.template.d.ts +3 -2
  280. package/templates/messages/messages.template.d.ts +21 -17
  281. package/esm2022/frames/scroll-v2/scroll.frame.mjs +0 -46
  282. package/esm2022/organisms/smart-list/index.mjs +0 -2
  283. package/esm2022/organisms/smart-list/ng-atomic-components-organisms-smart-list.mjs +0 -5
  284. package/esm2022/organisms/smart-list/smart-list.organism.mjs +0 -218
  285. package/esm2022/sheets/actions/actions.sheet.mjs +0 -45
  286. package/esm2022/sheets/index.mjs +0 -3
  287. package/esm2022/sheets/ng-atomic-components-sheets.mjs +0 -5
  288. package/esm2022/sheets/sheets.module.mjs +0 -25
  289. package/esm2022/sheets/sheets.service.mjs +0 -20
  290. package/fesm2022/ng-atomic-components-organisms-smart-list.mjs +0 -223
  291. package/fesm2022/ng-atomic-components-organisms-smart-list.mjs.map +0 -1
  292. package/fesm2022/ng-atomic-components-sheets-actions.mjs +0 -52
  293. package/fesm2022/ng-atomic-components-sheets-actions.mjs.map +0 -1
  294. package/fesm2022/ng-atomic-components-sheets.mjs +0 -48
  295. package/fesm2022/ng-atomic-components-sheets.mjs.map +0 -1
  296. package/frames/scroll-v2/scroll.frame.d.ts +0 -9
  297. package/organisms/smart-list/index.d.ts +0 -1
  298. package/sheets/actions/actions.sheet.d.ts +0 -9
  299. package/sheets/actions/index.d.ts +0 -1
  300. package/sheets/index.d.ts +0 -2
  301. package/sheets/sheets.module.d.ts +0 -11
  302. package/sheets/sheets.service.d.ts +0 -10
@@ -1,10 +1,12 @@
1
- import { InjectionToken, Injector, Signal } from '@angular/core';
1
+ import { InjectionToken, Injector, Provider, Signal } from '@angular/core';
2
2
  import { ActivatedRoute, Router } from '@angular/router';
3
3
  import { SelectionModel } from '@angular/cdk/collections';
4
+ import { ItemsMap } from '@ng-atomic/components/templates/_index';
4
5
  import { Actions, InjectableComponent, NgAtomicComponent } from '@ng-atomic/core';
5
6
  import { IndexPipe } from '@ng-atomic/common/pipes/index';
6
7
  import { AbstractControl } from '@angular/forms';
7
8
  import { IndexLengthPipe } from '@ng-atomic/common/pipes/index-length';
9
+ import { SheetService } from '@ng-atomic/common/services/sheets';
8
10
  import * as i0 from "@angular/core";
9
11
  export declare function injectHighlight(key: string): Signal<SelectionModel<string>>;
10
12
  type FilterFunc = (item: {
@@ -21,40 +23,51 @@ declare enum ActionId {
21
23
  HEADER_CHECKBOX_CLICK = "[@ng-atomic/components/pages/index] HeaderCheckboxClick",
22
24
  ADD = "[@ng-atomic/components/pages/index] Add",
23
25
  DETAIL = "[@ng-atomic/components/pages/index] Detail",
24
- CLOSE = "[@ng-atomic/components/pages/index] Close"
26
+ CLOSE = "[@ng-atomic/components/pages/index] Close",
27
+ LIST_ITEM_BUTTON_CLICKED = "[@ng-atomic/components/pages/index] ListItemButtonClick"
25
28
  }
26
- export declare class IndexPageStore extends InjectableComponent {
29
+ export declare function toggleAllSelection(selection: SelectionModel<string>, items: {
30
+ id: string;
31
+ }[]): SelectionModel<string>;
32
+ export declare function recoveryFormValue(form: AbstractControl, key?: string): void;
33
+ export declare class IndexPageStore<T> extends InjectableComponent {
27
34
  static readonly ActionId: typeof ActionId;
28
35
  static readonly Config: {
29
36
  provide(useFactory?: import("@ng-atomic/common/services/ui").ReducerFactory<{
30
37
  style: {
31
38
  width: string;
32
39
  };
40
+ groupedBy: string;
41
+ groupKeys: any[];
33
42
  items: any[];
43
+ itemsMap: ItemsMap<any>;
34
44
  itemActions: Actions;
35
45
  itemsMapper: (items: any[]) => any[];
36
46
  itemsLength: number;
37
47
  filterFunc: FilterFunc;
38
48
  title: string;
39
- type: string;
49
+ type: "list" | "table" | "grid";
40
50
  selection: SelectionModel<string>;
41
51
  highlight: SelectionModel<string>;
42
52
  form: AbstractControl;
43
53
  tableChildrenKey: any;
44
54
  navStartActions: import("@ng-atomic/core").Action<any>[];
45
55
  navEndActions: Actions;
46
- }>, label?: string): import("@angular/core").Provider;
56
+ }>, label?: string): Provider;
47
57
  inject(): Signal<{
48
58
  style: {
49
59
  width: string;
50
60
  };
61
+ groupedBy: string;
62
+ groupKeys: any[];
51
63
  items: any[];
64
+ itemsMap: ItemsMap<any>;
52
65
  itemActions: Actions;
53
66
  itemsMapper: (items: any[]) => any[];
54
67
  itemsLength: number;
55
68
  filterFunc: FilterFunc;
56
69
  title: string;
57
- type: string;
70
+ type: "list" | "table" | "grid";
58
71
  selection: SelectionModel<string>;
59
72
  highlight: SelectionModel<string>;
60
73
  form: AbstractControl;
@@ -63,95 +76,102 @@ export declare class IndexPageStore extends InjectableComponent {
63
76
  navEndActions: Actions;
64
77
  }>;
65
78
  };
66
- static provideTypeConfig(): import("@angular/core").Provider;
67
- static provideItemsFromRepository(): import("@angular/core").Provider;
68
- static provideSideAppNavStartActions(): import("@angular/core").Provider;
79
+ static provideTypeConfig(): Provider;
80
+ static provideItemsFromRepository(): Provider;
81
+ static provideItemActionsConfig(): Provider;
82
+ static provideSideAppNavStartActions(): Provider;
69
83
  static Initializer: {
70
- provide<SI extends (store: IndexPageStore) => Promise<void> | void>(initializer: SI): {
84
+ provide<SI extends (store: IndexPageStore<unknown>) => Promise<void> | void>(initializer: SI): {
71
85
  provide: InjectionToken<(store: any) => Promise<void> | void>;
72
86
  useValue: {
73
- key: new () => IndexPageStore;
74
- initializer: (store: IndexPageStore) => Promise<void> | void;
87
+ key: new () => IndexPageStore<unknown>;
88
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
75
89
  };
76
90
  multi: boolean;
77
91
  }[];
78
- inject(): ((store: IndexPageStore) => Promise<void> | void)[];
79
- initializeStore(store: IndexPageStore): Promise<void>;
92
+ inject(): ((store: IndexPageStore<unknown>) => Promise<void> | void)[];
93
+ initializeStore(store: IndexPageStore<unknown>): Promise<void>;
80
94
  };
81
95
  static provideFormInitializer(): {
82
96
  provide: InjectionToken<(store: any) => Promise<void> | void>;
83
97
  useValue: {
84
- key: new () => IndexPageStore;
85
- initializer: (store: IndexPageStore) => Promise<void> | void;
98
+ key: new () => IndexPageStore<unknown>;
99
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
86
100
  };
87
101
  multi: boolean;
88
102
  }[];
89
103
  static provideFormValueStorageInitializer(): {
90
104
  provide: InjectionToken<(store: any) => Promise<void> | void>;
91
105
  useValue: {
92
- key: new () => IndexPageStore;
93
- initializer: (store: IndexPageStore) => Promise<void> | void;
106
+ key: new () => IndexPageStore<unknown>;
107
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
94
108
  };
95
109
  multi: boolean;
96
110
  }[];
97
111
  static provideItemsLengthInitializer(): ({
98
112
  provide: InjectionToken<(store: any) => Promise<void> | void>;
99
113
  useValue: {
100
- key: new () => IndexPageStore;
101
- initializer: (store: IndexPageStore) => Promise<void> | void;
114
+ key: new () => IndexPageStore<unknown>;
115
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
102
116
  };
103
117
  multi: boolean;
104
118
  }[] | typeof IndexLengthPipe)[];
105
119
  static provideItemsMapperInitializer(): ({
106
120
  provide: InjectionToken<(store: any) => Promise<void> | void>;
107
121
  useValue: {
108
- key: new () => IndexPageStore;
109
- initializer: (store: IndexPageStore) => Promise<void> | void;
122
+ key: new () => IndexPageStore<unknown>;
123
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
110
124
  };
111
125
  multi: boolean;
112
126
  }[] | typeof IndexPipe)[];
127
+ static provideColumnsInitializer(useFactory: () => string[]): Provider[];
128
+ static provideItemsInitializer(itemsFactory: () => any[]): Provider[];
113
129
  static provideDefaultInitializer(): ({
114
130
  provide: InjectionToken<(store: any) => Promise<void> | void>;
115
131
  useValue: {
116
- key: new () => IndexPageStore;
117
- initializer: (store: IndexPageStore) => Promise<void> | void;
132
+ key: new () => IndexPageStore<unknown>;
133
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
118
134
  };
119
135
  multi: boolean;
120
136
  }[] | ({
121
137
  provide: InjectionToken<(store: any) => Promise<void> | void>;
122
138
  useValue: {
123
- key: new () => IndexPageStore;
124
- initializer: (store: IndexPageStore) => Promise<void> | void;
139
+ key: new () => IndexPageStore<unknown>;
140
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
125
141
  };
126
142
  multi: boolean;
127
143
  }[] | typeof IndexLengthPipe)[] | ({
128
144
  provide: InjectionToken<(store: any) => Promise<void> | void>;
129
145
  useValue: {
130
- key: new () => IndexPageStore;
131
- initializer: (store: IndexPageStore) => Promise<void> | void;
146
+ key: new () => IndexPageStore<unknown>;
147
+ initializer: (store: IndexPageStore<unknown>) => Promise<void> | void;
132
148
  };
133
149
  multi: boolean;
134
150
  }[] | typeof IndexPipe)[])[];
135
- static provideBackEffect(): import("@angular/core").Provider;
136
- static provideDetailEffect(): import("@angular/core").Provider;
137
- static provideAddEffect(): import("@angular/core").Provider;
138
- static provideCheckboxClickEffect(): import("@angular/core").Provider;
139
- static provideTableHeaderClickEffect(): import("@angular/core").Provider;
140
- static provideSideNavEffects(): import("@angular/core").Provider;
141
- static provideHeaderCheckboxClickEffect(): import("@angular/core").Provider;
142
- static provideDefaultEffects(): import("@angular/core").Provider[];
143
- static provideDefault(): import("@angular/core").Provider[];
151
+ static provideBackEffect(): Provider;
152
+ static provideDetailEffect(): Provider;
153
+ static provideAddEffect(): Provider;
154
+ static provideCheckboxClickEffect(): Provider;
155
+ static provideTableHeaderClickEffect(): Provider;
156
+ static provideSideNavEffects(): Provider;
157
+ static provideHeaderCheckboxClickEffect(): Provider;
158
+ static provideDefaultEffects(): Provider[];
159
+ static provideDefaultConfig(): Provider[];
160
+ static provideDefault(): Provider[][];
144
161
  readonly config: Signal<{
145
162
  style: {
146
163
  width: string;
147
164
  };
165
+ groupedBy: string;
166
+ groupKeys: any[];
148
167
  items: any[];
168
+ itemsMap: ItemsMap<any>;
149
169
  itemActions: Actions;
150
170
  itemsMapper: (items: any[]) => any[];
151
171
  itemsLength: number;
152
172
  filterFunc: FilterFunc;
153
173
  title: string;
154
- type: string;
174
+ type: "list" | "table" | "grid";
155
175
  selection: SelectionModel<string>;
156
176
  highlight: SelectionModel<string>;
157
177
  form: AbstractControl;
@@ -159,9 +179,15 @@ export declare class IndexPageStore extends InjectableComponent {
159
179
  navStartActions: import("@ng-atomic/core").Action<any>[];
160
180
  navEndActions: Actions;
161
181
  }>;
182
+ readonly style: import("@angular/core").InputSignal<{
183
+ width: string;
184
+ }>;
162
185
  readonly route: ActivatedRoute;
163
- readonly type: import("@angular/core").InputSignal<string>;
186
+ readonly groupedBy: import("@angular/core").InputSignal<string>;
187
+ readonly groupKeys: import("@angular/core").InputSignal<any[]>;
188
+ readonly type: import("@angular/core").InputSignal<"table" | "list" | "grid">;
164
189
  readonly items: import("@angular/core").InputSignal<any[]>;
190
+ readonly itemsMap: import("@angular/core").InputSignal<ItemsMap<unknown>>;
165
191
  readonly itemActions: import("@angular/core").InputSignal<Actions>;
166
192
  readonly title: import("@angular/core").InputSignal<string>;
167
193
  readonly form: import("@angular/core").InputSignal<AbstractControl<any, any>>;
@@ -177,13 +203,15 @@ export declare class IndexPageStore extends InjectableComponent {
177
203
  readonly selectedIds: Signal<string[]>;
178
204
  readonly selected: Signal<any[]>;
179
205
  readonly isAllSelected: Signal<boolean>;
206
+ readonly skip: Signal<boolean>;
180
207
  constructor();
181
- static ɵfac: i0.ɵɵFactoryDeclaration<IndexPageStore, never>;
182
- static ɵdir: i0.ɵɵDirectiveDeclaration<IndexPageStore, never, never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "itemActions": { "alias": "itemActions"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "highlight": { "alias": "highlight"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "filterFunc": { "alias": "filterFunc"; "required": false; "isSignal": true; }; "itemsMapper": { "alias": "itemsMapper"; "required": false; "isSignal": true; }; "tableChildrenKey": { "alias": "tableChildrenKey"; "required": false; "isSignal": true; }; "itemsLength": { "alias": "itemsLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
208
+ static ɵfac: i0.ɵɵFactoryDeclaration<IndexPageStore<any>, never>;
209
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IndexPageStore<any>, never, never, { "style": { "alias": "style"; "required": false; "isSignal": true; }; "groupedBy": { "alias": "groupedBy"; "required": false; "isSignal": true; }; "groupKeys": { "alias": "groupKeys"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "itemsMap": { "alias": "itemsMap"; "required": false; "isSignal": true; }; "itemActions": { "alias": "itemActions"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "highlight": { "alias": "highlight"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "filterFunc": { "alias": "filterFunc"; "required": false; "isSignal": true; }; "itemsMapper": { "alias": "itemsMapper"; "required": false; "isSignal": true; }; "tableChildrenKey": { "alias": "tableChildrenKey"; "required": false; "isSignal": true; }; "itemsLength": { "alias": "itemsLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
183
210
  }
184
211
  export declare class IndexPage extends NgAtomicComponent {
185
- protected store: IndexPageStore;
212
+ protected store: IndexPageStore<any>;
186
213
  protected router: Router;
214
+ protected sheet: SheetService;
187
215
  protected back(): void;
188
216
  protected close(): void;
189
217
  protected itemClick(item: {
@@ -192,7 +220,8 @@ export declare class IndexPage extends NgAtomicComponent {
192
220
  protected onCheckboxClick(item: {
193
221
  id: string;
194
222
  }): void;
223
+ protected onItemButtonClicked(item: any): void;
195
224
  static ɵfac: i0.ɵɵFactoryDeclaration<IndexPage, never>;
196
- static ɵcmp: i0.ɵɵComponentDeclaration<IndexPage, "pages-index", never, {}, {}, never, never, true, [{ directive: typeof IndexPageStore; inputs: { "items": "items"; }; outputs: {}; }]>;
225
+ static ɵcmp: i0.ɵɵComponentDeclaration<IndexPage, "pages-index", never, {}, {}, never, never, true, [{ directive: typeof IndexPageStore; inputs: { "items": "items"; "itemsMap": "itemsMap"; }; outputs: {}; }]>;
197
226
  }
198
227
  export {};
@@ -9,10 +9,12 @@ export declare class ColumnsPageStore extends InjectableComponent {
9
9
  static readonly ActionId: typeof ActionId;
10
10
  static readonly Config: {
11
11
  provide(useFactory?: import("@ng-atomic/common/services/ui").ReducerFactory<{
12
+ title: string;
12
13
  navStartActions: Actions;
13
14
  navEndActions: Actions;
14
15
  }>, label?: string): import("@angular/core").Provider;
15
16
  inject(): import("@angular/core").Signal<{
17
+ title: string;
16
18
  navStartActions: Actions;
17
19
  navEndActions: Actions;
18
20
  }>;
@@ -38,17 +40,18 @@ export declare class ColumnsPageStore extends InjectableComponent {
38
40
  multi: boolean;
39
41
  }[];
40
42
  static provideDefault(): import("@angular/core").Provider[];
41
- readonly title = "Columns";
42
43
  readonly config: import("@angular/core").Signal<{
44
+ title: string;
43
45
  navStartActions: Actions;
44
46
  navEndActions: Actions;
45
47
  }>;
48
+ readonly title: import("@angular/core").InputSignal<string>;
46
49
  readonly navStartActions: import("@angular/core").InputSignal<Actions>;
47
50
  readonly navEndActions: import("@angular/core").InputSignal<Actions>;
48
51
  readonly form: import("@angular/core").InputSignal<AbstractControl<any, any>>;
49
52
  constructor();
50
53
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsPageStore, never>;
51
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsPageStore, "pages-columns", never, { "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsPageStore, "pages-columns", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
52
55
  }
53
56
  export declare class ColumnsPage extends NgAtomicComponent {
54
57
  protected store: ColumnsPageStore;
@@ -24,6 +24,7 @@ export declare class FormPageStore<T> extends InjectableComponent {
24
24
  static readonly ActionId: typeof ActionId;
25
25
  static readonly Config: {
26
26
  provide(useFactory?: import("@ng-atomic/common/services/ui").ReducerFactory<{
27
+ style: {};
27
28
  form: AbstractControl;
28
29
  formFlatExcludes: string[];
29
30
  entityId: string;
@@ -34,8 +35,10 @@ export declare class FormPageStore<T> extends InjectableComponent {
34
35
  title: string;
35
36
  actions: Action<any>[];
36
37
  fieldMap: FormFieldMap;
38
+ outletName: string;
37
39
  }>, label?: string): import("@angular/core").Provider;
38
40
  inject(): import("@angular/core").Signal<{
41
+ style: {};
39
42
  form: AbstractControl;
40
43
  formFlatExcludes: string[];
41
44
  entityId: string;
@@ -46,6 +49,7 @@ export declare class FormPageStore<T> extends InjectableComponent {
46
49
  title: string;
47
50
  actions: Action<any>[];
48
51
  fieldMap: FormFieldMap;
52
+ outletName: string;
49
53
  }>;
50
54
  };
51
55
  static Initializer: {
@@ -97,6 +101,7 @@ export declare class FormPageStore<T> extends InjectableComponent {
97
101
  static provideDefaultEffects(): import("@angular/core").Provider[];
98
102
  static provideDefault(): import("@angular/core").Provider[];
99
103
  readonly config: import("@angular/core").Signal<{
104
+ style: {};
100
105
  form: AbstractControl;
101
106
  formFlatExcludes: string[];
102
107
  entityId: string;
@@ -107,7 +112,9 @@ export declare class FormPageStore<T> extends InjectableComponent {
107
112
  title: string;
108
113
  actions: Action<any>[];
109
114
  fieldMap: FormFieldMap;
115
+ outletName: string;
110
116
  }>;
117
+ readonly style: import("@angular/core").InputSignal<{}>;
111
118
  readonly form: import("@angular/core").InputSignal<AbstractControl<any, any>>;
112
119
  readonly formFlatExcludes: import("@angular/core").InputSignal<string[]>;
113
120
  readonly entityId: import("@angular/core").InputSignal<string>;
@@ -119,6 +126,8 @@ export declare class FormPageStore<T> extends InjectableComponent {
119
126
  readonly navStartActions: import("@angular/core").InputSignal<Actions>;
120
127
  readonly navEndActions: import("@angular/core").InputSignal<Actions>;
121
128
  readonly params: import("@angular/core").Signal<Record<string, string>>;
129
+ readonly skip: import("@angular/core").Signal<boolean>;
130
+ readonly outletName: import("@angular/core").InputSignal<string>;
122
131
  readonly isValid: import("@angular/core").Signal<boolean>;
123
132
  readonly activatedActions: import("@angular/core").Signal<{
124
133
  disabled: boolean;
@@ -134,7 +143,7 @@ export declare class FormPageStore<T> extends InjectableComponent {
134
143
  }[]>;
135
144
  constructor();
136
145
  static ɵfac: i0.ɵɵFactoryDeclaration<FormPageStore<any>, never>;
137
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormPageStore<any>, "form-page-store", never, { "form": { "alias": "form"; "required": false; "isSignal": true; }; "formFlatExcludes": { "alias": "formFlatExcludes"; "required": false; "isSignal": true; }; "entityId": { "alias": "entityId"; "required": false; "isSignal": true; }; "entity": { "alias": "entity"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "fieldMap": { "alias": "fieldMap"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
146
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormPageStore<any>, "form-page-store", never, { "style": { "alias": "style"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "formFlatExcludes": { "alias": "formFlatExcludes"; "required": false; "isSignal": true; }; "entityId": { "alias": "entityId"; "required": false; "isSignal": true; }; "entity": { "alias": "entity"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "fieldMap": { "alias": "fieldMap"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "outletName": { "alias": "outletName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
138
147
  }
139
148
  export declare class FormPage extends NgAtomicComponent {
140
149
  static readonly ActionId: typeof ActionId;
@@ -148,6 +157,6 @@ export declare class FormPage extends NgAtomicComponent {
148
157
  files: File[];
149
158
  }): void;
150
159
  static ɵfac: i0.ɵɵFactoryDeclaration<FormPage, never>;
151
- static ɵcmp: i0.ɵɵComponentDeclaration<FormPage, "pages-form", never, {}, {}, never, never, true, [{ directive: typeof FormPageStore; inputs: { "fieldMap": "fieldMap"; "entityId": "entityId"; "entity": "entity"; "mode": "mode"; "navEndActions": "navEndActions"; "actions": "actions"; "title": "title"; "form": "form"; "formFlatExcludes": "formFlatExcludes"; }; outputs: {}; }]>;
160
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormPage, "pages-form", never, {}, {}, never, never, true, [{ directive: typeof FormPageStore; inputs: { "fieldMap": "fieldMap"; "entityId": "entityId"; "entity": "entity"; "mode": "mode"; "navEndActions": "navEndActions"; "actions": "actions"; "title": "title"; "form": "form"; "formFlatExcludes": "formFlatExcludes"; "outletName": "outletName"; }; outputs: {}; }]>;
152
161
  }
153
162
  export {};
@@ -5,7 +5,7 @@ import { NgAtomicComponent } from '@ng-atomic/core';
5
5
  import { UIContext } from '@ng-atomic/common/services/ui';
6
6
  import { IndexPipe } from '@ng-atomic/common/pipes/index';
7
7
  import { IndexLengthPipe } from '@ng-atomic/common/pipes/index-length';
8
- import { FormGroup } from '@angular/forms';
8
+ import { FormControl, FormGroup } from '@angular/forms';
9
9
  import { FlatTreeControl } from '@angular/cdk/tree';
10
10
  import * as i0 from "@angular/core";
11
11
  export declare enum ActionId {
@@ -40,6 +40,24 @@ export interface IndexTemplateConfig<T extends {
40
40
  highlight: SelectionModel<string>;
41
41
  }
42
42
  export declare function getType(context: UIContext): "list" | "table";
43
+ export interface ItemsMap<T> {
44
+ [key: string]: {
45
+ items: T[];
46
+ itemsLength: number;
47
+ type?: 'list' | 'table' | 'grid';
48
+ childrenKey?: string;
49
+ treeControl?: FlatTreeControl<T>;
50
+ groupedBy?: string;
51
+ groupKeys?: string[];
52
+ itemActions?: Actions;
53
+ form?: FormGroup;
54
+ selection?: SelectionModel<string>;
55
+ highlight?: SelectionModel<string>;
56
+ tableIsHidden?: (item: T) => boolean;
57
+ pageSizeOptions?: number[];
58
+ };
59
+ }
60
+ export declare function convertToItemsMap<T>(items: any): ItemsMap<T>;
43
61
  export declare class IndexTemplateStore<T extends {
44
62
  id: string;
45
63
  }> extends InjectableComponent {
@@ -75,11 +93,13 @@ export declare class IndexTemplateStore<T extends {
75
93
  items: any[];
76
94
  itemsLength: number;
77
95
  title: string;
96
+ titleControl: FormControl<string>;
97
+ titleEditable: boolean;
78
98
  description: string;
79
99
  navStartActions: Action<any>[];
80
100
  navEndActions: any[];
81
- groupedBy: any;
82
- groupKeys: any[];
101
+ groupedBy: string;
102
+ groupKeys: string[];
83
103
  type: "table" | "list" | "grid";
84
104
  pageSizeOptions: number[];
85
105
  selection: SelectionModel<string>;
@@ -116,11 +136,13 @@ export declare class IndexTemplateStore<T extends {
116
136
  items: any[];
117
137
  itemsLength: number;
118
138
  title: string;
139
+ titleControl: FormControl<string>;
140
+ titleEditable: boolean;
119
141
  description: string;
120
142
  navStartActions: Action<any>[];
121
143
  navEndActions: any[];
122
- groupedBy: any;
123
- groupKeys: any[];
144
+ groupedBy: string;
145
+ groupKeys: string[];
124
146
  type: "table" | "list" | "grid";
125
147
  pageSizeOptions: number[];
126
148
  selection: SelectionModel<string>;
@@ -159,11 +181,13 @@ export declare class IndexTemplateStore<T extends {
159
181
  items: any[];
160
182
  itemsLength: number;
161
183
  title: string;
184
+ titleControl: FormControl<string>;
185
+ titleEditable: boolean;
162
186
  description: string;
163
187
  navStartActions: Action<any>[];
164
188
  navEndActions: any[];
165
- groupedBy: any;
166
- groupKeys: any[];
189
+ groupedBy: string;
190
+ groupKeys: string[];
167
191
  type: "table" | "list" | "grid";
168
192
  pageSizeOptions: number[];
169
193
  selection: SelectionModel<string>;
@@ -198,18 +222,23 @@ export declare class IndexTemplateStore<T extends {
198
222
  payload: any;
199
223
  }[]>;
200
224
  readonly title: import("@angular/core").InputSignal<string>;
225
+ readonly titleControl: import("@angular/core").InputSignal<FormControl<string>>;
226
+ readonly titleEditable: import("@angular/core").InputSignal<boolean>;
201
227
  readonly description: import("@angular/core").InputSignal<string>;
202
228
  readonly items: import("@angular/core").InputSignal<T[]>;
229
+ readonly itemsMap: import("@angular/core").InputSignal<ItemsMap<T>>;
230
+ readonly itemsMapKeys: import("@angular/core").InputSignal<string[]>;
203
231
  readonly itemsLength: import("@angular/core").InputSignal<number>;
204
232
  readonly navStartActions: import("@angular/core").InputSignal<Action<any>[]>;
205
233
  readonly navEndActions: import("@angular/core").InputSignal<any[]>;
206
- readonly groupedBy: import("@angular/core").InputSignal<any>;
207
- readonly groupKeys: import("@angular/core").InputSignal<any[]>;
234
+ readonly groupedBy: import("@angular/core").InputSignal<string>;
235
+ readonly groupKeys: import("@angular/core").InputSignal<string[]>;
208
236
  readonly pageSizeOptions: import("@angular/core").InputSignal<number[]>;
209
237
  readonly type: import("@angular/core").InputSignal<"list" | "table" | "grid">;
210
238
  readonly selection: import("@angular/core").InputSignal<SelectionModel<string>>;
211
239
  readonly highlight: import("@angular/core").InputSignal<SelectionModel<string>>;
212
240
  readonly queryLabel: import("@angular/core").InputSignal<string>;
241
+ readonly navMode: import("@angular/core").InputSignal<string>;
213
242
  readonly form$: import("rxjs").Observable<unknown>;
214
243
  readonly formValue: import("@angular/core").Signal<Partial<{
215
244
  query: string;
@@ -232,7 +261,7 @@ export declare class IndexTemplateStore<T extends {
232
261
  indexLength: IndexLengthPipe<any>;
233
262
  };
234
263
  static ɵfac: i0.ɵɵFactoryDeclaration<IndexTemplateStore<any>, never>;
235
- static ɵdir: i0.ɵɵDirectiveDeclaration<IndexTemplateStore<any>, "templates-index", never, { "form": { "alias": "form"; "required": false; "isSignal": true; }; "gridToolbarActions": { "alias": "gridToolbarActions"; "required": false; "isSignal": true; }; "toggleActions": { "alias": "toggleActions"; "required": false; "isSignal": true; }; "tableChildrenKey": { "alias": "tableChildrenKey"; "required": false; "isSignal": true; }; "tableIsHidden": { "alias": "tableIsHidden"; "required": false; "isSignal": true; }; "tableTreeControl": { "alias": "tableTreeControl"; "required": false; "isSignal": true; }; "itemActions": { "alias": "itemActions"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "itemsLength": { "alias": "itemsLength"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "groupedBy": { "alias": "groupedBy"; "required": false; "isSignal": true; }; "groupKeys": { "alias": "groupKeys"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "highlight": { "alias": "highlight"; "required": false; "isSignal": true; }; "queryLabel": { "alias": "queryLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
264
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IndexTemplateStore<any>, "templates-index", never, { "form": { "alias": "form"; "required": false; "isSignal": true; }; "gridToolbarActions": { "alias": "gridToolbarActions"; "required": false; "isSignal": true; }; "toggleActions": { "alias": "toggleActions"; "required": false; "isSignal": true; }; "tableChildrenKey": { "alias": "tableChildrenKey"; "required": false; "isSignal": true; }; "tableIsHidden": { "alias": "tableIsHidden"; "required": false; "isSignal": true; }; "tableTreeControl": { "alias": "tableTreeControl"; "required": false; "isSignal": true; }; "itemActions": { "alias": "itemActions"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "titleControl": { "alias": "titleControl"; "required": false; "isSignal": true; }; "titleEditable": { "alias": "titleEditable"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "itemsMap": { "alias": "itemsMap"; "required": false; "isSignal": true; }; "itemsMapKeys": { "alias": "itemsMapKeys"; "required": false; "isSignal": true; }; "itemsLength": { "alias": "itemsLength"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "groupedBy": { "alias": "groupedBy"; "required": false; "isSignal": true; }; "groupKeys": { "alias": "groupKeys"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "highlight": { "alias": "highlight"; "required": false; "isSignal": true; }; "queryLabel": { "alias": "queryLabel"; "required": false; "isSignal": true; }; "navMode": { "alias": "navMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
236
265
  }
237
266
  export declare class IndexTemplate<T> extends NgAtomicComponent {
238
267
  static ActionId: typeof ActionId;
@@ -246,5 +275,5 @@ export declare class IndexTemplate<T> extends NgAtomicComponent {
246
275
  protected onHeaderCheckboxClick(): void;
247
276
  protected back(): void;
248
277
  static ɵfac: i0.ɵɵFactoryDeclaration<IndexTemplate<any>, never>;
249
- static ɵcmp: i0.ɵɵComponentDeclaration<IndexTemplate<any>, "templates-index", never, {}, {}, never, ["[dashboard]"], true, [{ directive: typeof IndexTemplateStore; inputs: { "gridToolbarActions": "gridToolbarActions"; "tableChildrenKey": "tableChildrenKey"; "tableIsHidden": "tableIsHidden"; "tableTreeControl": "tableTreeControl"; "form": "form"; "title": "title"; "description": "description"; "items": "items"; "itemsLength": "itemsLength"; "itemActions": "itemActions"; "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "groupedBy": "groupedBy"; "groupKeys": "groupKeys"; "selection": "selection"; "pageSizeOptions": "pageSizeOptions"; "type": "type"; "highlight": "highlight"; "queryLabel": "queryLabel"; }; outputs: {}; }]>;
278
+ static ɵcmp: i0.ɵɵComponentDeclaration<IndexTemplate<any>, "templates-index", never, {}, {}, never, ["[navDashboard]", "[dashboard]"], true, [{ directive: typeof IndexTemplateStore; inputs: { "gridToolbarActions": "gridToolbarActions"; "tableChildrenKey": "tableChildrenKey"; "tableIsHidden": "tableIsHidden"; "tableTreeControl": "tableTreeControl"; "form": "form"; "title": "title"; "titleControl": "titleControl"; "titleEditable": "titleEditable"; "description": "description"; "items": "items"; "itemsMap": "itemsMap"; "itemsLength": "itemsLength"; "itemActions": "itemActions"; "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "navMode": "navMode"; "groupedBy": "groupedBy"; "groupKeys": "groupKeys"; "selection": "selection"; "pageSizeOptions": "pageSizeOptions"; "type": "type"; "highlight": "highlight"; "queryLabel": "queryLabel"; }; outputs: {}; }]>;
250
279
  }
@@ -1,5 +1,5 @@
1
+ import { Actions, NgAtomicComponent } from '@ng-atomic/core';
1
2
  import { EditorComponent } from '@ng-atomic/components/extras/editor';
2
- import { NgAtomicComponent } from '@ng-atomic/core';
3
3
  import { Extension } from '@codemirror/state';
4
4
  import * as i0 from "@angular/core";
5
5
  declare enum ActionId {
@@ -8,14 +8,17 @@ declare enum ActionId {
8
8
  export declare class CodeEditorTemplateStore {
9
9
  content: import("@angular/core").ModelSignal<string>;
10
10
  readonly extensions: import("@angular/core").InputSignal<Extension[]>;
11
+ readonly navStartActions: import("@angular/core").InputSignal<Actions>;
12
+ readonly navEndActions: import("@angular/core").InputSignal<Actions>;
13
+ readonly title: import("@angular/core").InputSignal<string>;
11
14
  static ɵfac: i0.ɵɵFactoryDeclaration<CodeEditorTemplateStore, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<CodeEditorTemplateStore, "templates-code-editor", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "extensions": { "alias": "extensions"; "required": false; "isSignal": true; }; }, { "content": "contentChange"; }, never, never, true, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CodeEditorTemplateStore, "templates-code-editor", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "extensions": { "alias": "extensions"; "required": false; "isSignal": true; }; "navStartActions": { "alias": "navStartActions"; "required": false; "isSignal": true; }; "navEndActions": { "alias": "navEndActions"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; }, { "content": "contentChange"; }, never, never, true, never>;
13
16
  }
14
17
  export declare class CodeEditorTemplate extends NgAtomicComponent {
15
18
  static ActionId: typeof ActionId;
16
19
  protected store: CodeEditorTemplateStore;
17
20
  readonly editor: import("@angular/core").Signal<EditorComponent>;
18
21
  static ɵfac: i0.ɵɵFactoryDeclaration<CodeEditorTemplate, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<CodeEditorTemplate, "templates-code-editor", never, {}, {}, never, never, true, [{ directive: typeof CodeEditorTemplateStore; inputs: { "content": "content"; "extensions": "extensions"; }; outputs: { "contentChange": "contentChange"; }; }]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodeEditorTemplate, "templates-code-editor", never, {}, {}, never, never, true, [{ directive: typeof CodeEditorTemplateStore; inputs: { "content": "content"; "extensions": "extensions"; "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "title": "title"; }; outputs: { "contentChange": "contentChange"; }; }]>;
20
23
  }
21
24
  export {};
@@ -28,6 +28,6 @@ export declare class EntranceTemplate extends NgAtomicComponent {
28
28
  protected ActionId: typeof ActionId;
29
29
  protected store: EntranceTemplateStore;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<EntranceTemplate, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<EntranceTemplate, "templates-entrance", never, {}, {}, never, never, true, [{ directive: typeof EntranceTemplateStore; inputs: { "form": "form"; "actions": "actions"; "title": "title"; }; outputs: {}; }]>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntranceTemplate, "templates-entrance", never, {}, {}, never, never, true, [{ directive: typeof EntranceTemplateStore; inputs: { "form": "form"; "actions": "actions"; "title": "title"; "fieldMap": "fieldMap"; }; outputs: {}; }]>;
32
32
  }
33
33
  export {};
@@ -1,21 +1,27 @@
1
1
  import { FormGroup } from '@angular/forms';
2
2
  import { FormField, FormFieldMap } from '@ng-atomic/common/pipes/smart-field';
3
3
  import { AbstractControl } from '@angular/forms';
4
- import { Action } from '@ng-atomic/core';
4
+ import { Action, InjectableComponent } from '@ng-atomic/core';
5
5
  import { NgAtomicComponent } from '@ng-atomic/core';
6
6
  import * as i0 from "@angular/core";
7
7
  declare enum ActionId {
8
8
  FILE_SELECTED = "[@ng-atomic/components:templates/form/ng-atomic-form-section-switcher] File selected",
9
9
  CANCEL = "[@ng-atomic/components:templates/form/ng-atomic-form-section-switcher] Cancel"
10
10
  }
11
- export declare class NgAtomicFormSectionSwitcher extends NgAtomicComponent {
11
+ export declare class NgAtomicFormSectionSwitcherStore extends InjectableComponent {
12
12
  static readonly ActionId: typeof ActionId;
13
13
  readonly name: import("@angular/core").InputSignal<string>;
14
14
  readonly control: import("@angular/core").InputSignal<AbstractControl<any, any>>;
15
15
  readonly field: import("@angular/core").InputSignal<FormFieldMap | FormField>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgAtomicFormSectionSwitcherStore, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgAtomicFormSectionSwitcherStore, "ng-atomic-form-section-switcher", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "control": { "alias": "control"; "required": true; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
18
+ }
19
+ export declare class NgAtomicFormSectionSwitcher extends NgAtomicComponent {
20
+ static readonly ActionId: typeof ActionId;
21
+ protected readonly store: NgAtomicFormSectionSwitcherStore;
16
22
  protected dispatchFileInputAction(action: Action, name: string): Promise<void>;
17
23
  static ɵfac: i0.ɵɵFactoryDeclaration<NgAtomicFormSectionSwitcher, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<NgAtomicFormSectionSwitcher, "ng-atomic-form-section-switcher", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "control": { "alias": "control"; "required": true; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgAtomicFormSectionSwitcher, "ng-atomic-form-section-switcher", never, {}, {}, never, never, true, [{ directive: typeof NgAtomicFormSectionSwitcherStore; inputs: { "name": "name"; "control": "control"; "field": "field"; }; outputs: {}; }]>;
19
25
  }
20
26
  export declare class NgAtomicFormSectionBuilder extends NgAtomicComponent {
21
27
  static readonly ActionId: typeof ActionId;
@@ -27,6 +33,7 @@ export declare class NgAtomicFormSectionBuilder extends NgAtomicComponent {
27
33
  control: AbstractControl<any, any>;
28
34
  field: FormFieldMap | FormField<any>;
29
35
  }[]>;
36
+ constructor();
30
37
  static ɵfac: i0.ɵɵFactoryDeclaration<NgAtomicFormSectionBuilder, never>;
31
38
  static ɵcmp: i0.ɵɵComponentDeclaration<NgAtomicFormSectionBuilder, "ng-atomic-form-section-builder", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "formFlatExcludes": { "alias": "formFlatExcludes"; "required": false; "isSignal": true; }; "fieldMap": { "alias": "fieldMap"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
32
39
  }
@@ -67,7 +67,8 @@ export declare class FormTemplate extends NgAtomicComponent implements OnInit {
67
67
  protected readonly cd: ChangeDetectorRef;
68
68
  ngOnInit(): void;
69
69
  protected back(): void;
70
+ protected fileSelected(payload: any): void;
70
71
  static ɵfac: i0.ɵɵFactoryDeclaration<FormTemplate, never>;
71
- static ɵcmp: i0.ɵɵComponentDeclaration<FormTemplate, "templates-form", never, {}, {}, never, never, true, [{ directive: typeof FormTemplateStore; inputs: { "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "title": "title"; "form": "form"; "formFlatExcludes": "formFlatExcludes"; "actions": "actions"; "fieldMap": "fieldMap"; }; outputs: {}; }]>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormTemplate, "templates-form", never, {}, {}, never, ["[dashboard]"], true, [{ directive: typeof FormTemplateStore; inputs: { "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "title": "title"; "form": "form"; "formFlatExcludes": "formFlatExcludes"; "actions": "actions"; "fieldMap": "fieldMap"; }; outputs: {}; }]>;
72
73
  }
73
74
  export {};
@@ -3,11 +3,12 @@ import { InjectableComponent, NgAtomicComponent } from '@ng-atomic/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class IconButtonMenuTemplateStore extends InjectableComponent {
5
5
  readonly actions: import("@angular/core").InputSignal<Action<any>[]>;
6
+ readonly bottomActions: import("@angular/core").InputSignal<Action<any>[]>;
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonMenuTemplateStore, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<IconButtonMenuTemplateStore, "templates-icon-button-menu", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IconButtonMenuTemplateStore, "templates-icon-button-menu", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "bottomActions": { "alias": "bottomActions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8
9
  }
9
10
  export declare class IconButtonMenuTemplate extends NgAtomicComponent {
10
11
  protected store: IconButtonMenuTemplateStore;
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonMenuTemplate, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<IconButtonMenuTemplate, "templates-icon-button-menu", never, {}, {}, never, never, true, [{ directive: typeof IconButtonMenuTemplateStore; inputs: { "actions": "actions"; }; outputs: {}; }]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconButtonMenuTemplate, "templates-icon-button-menu", never, {}, {}, never, never, true, [{ directive: typeof IconButtonMenuTemplateStore; inputs: { "actions": "actions"; "bottomActions": "bottomActions"; }; outputs: {}; }]>;
13
14
  }