@ndwnu/design-system 5.1.0 → 7.0.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 (358) hide show
  1. package/assets/icons.ts +83 -0
  2. package/fesm2022/ndwnu-design-system.mjs +1052 -1000
  3. package/fesm2022/ndwnu-design-system.mjs.map +1 -1
  4. package/index.d.ts +2 -5
  5. package/lib/components/alert/alert.model.d.ts +1 -0
  6. package/lib/components/banner/banner.model.d.ts +1 -0
  7. package/lib/components/card/card-header/card-header.component.d.ts +11 -0
  8. package/lib/components/card/card.animation.d.ts +1 -0
  9. package/lib/components/card/card.component.d.ts +19 -0
  10. package/{components → lib/components}/dropdown/dropdown.component.d.ts +1 -1
  11. package/{components → lib/components}/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.d.ts +3 -3
  12. package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts +19 -0
  13. package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts +5 -0
  14. package/{components → lib/components}/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.d.ts +5 -6
  15. package/{components → lib/components}/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.d.ts +12 -14
  16. package/{components → lib/components}/form-field/autosuggest/autosuggest.directive.d.ts +7 -8
  17. package/{components → lib/components}/form-field/checkbox/checkbox.component.d.ts +3 -2
  18. package/{components → lib/components}/form-field/clear-search-button/clear-search-button.component.d.ts +3 -2
  19. package/lib/components/form-field/clear-search-button/index.d.ts +1 -0
  20. package/{components → lib/components}/form-field/file-upload/file-upload.component.d.ts +8 -7
  21. package/{components → lib/components}/form-field/form-field.component.d.ts +2 -1
  22. package/lib/components/form-field/input/input.model.d.ts +1 -0
  23. package/{components → lib/components}/form-field/input-button/input-button.component.d.ts +1 -1
  24. package/{components → lib/components}/form-field/month-input/month-input.component.d.ts +8 -7
  25. package/{components → lib/components}/form-field/option-group/option-group.component.d.ts +7 -4
  26. package/lib/components/form-field/picker-button/index.d.ts +1 -0
  27. package/{components → lib/components}/form-field/picker-button/picker-button.component.d.ts +1 -2
  28. package/{components → lib/components}/form-field/textarea/auto-grow.directive.d.ts +6 -3
  29. package/{components → lib/components}/form-field/textarea/index.d.ts +1 -0
  30. package/lib/components/form-field/textarea/max-char.directive.d.ts +15 -0
  31. package/{components → lib/components}/icon/action-icon/action-icon.component.d.ts +3 -3
  32. package/lib/components/icon/icon.component.d.ts +6 -0
  33. package/{components → lib/components}/layout/layout.component.d.ts +2 -2
  34. package/{components → lib/components}/main-navigation/main-navigation.component.d.ts +2 -10
  35. package/{components → lib/components}/main-navigation/main-navigation.model.d.ts +1 -4
  36. package/{components → lib/components}/modal/modal.component.d.ts +1 -2
  37. package/{components → lib/components}/multi-select/multi-select.component.d.ts +3 -3
  38. package/lib/components/pill/pill.model.d.ts +1 -0
  39. package/{components → lib/components}/router-breadcrumbs/router-breadcrumbs.component.d.ts +2 -2
  40. package/lib/components/tab/tab.component.d.ts +17 -0
  41. package/{components → lib/components}/tab-group/tab-group.component.d.ts +7 -5
  42. package/{components → lib/components}/tag/tag.component.d.ts +2 -2
  43. package/{components → lib/components}/toast/toast.component.d.ts +4 -4
  44. package/package.json +14 -10
  45. package/styles/base/_colors.scss +234 -0
  46. package/styles/base/_typography.scss +135 -0
  47. package/styles/base/_variables.scss +79 -0
  48. package/styles/base/colors.stories.model.ts +143 -0
  49. package/styles/base/colors.stories.ts +14 -0
  50. package/styles/base/colors.stories.utils.ts +58 -0
  51. package/styles/base/index.scss +3 -0
  52. package/styles/base/typography.stories.ts +116 -0
  53. package/styles/components/_button.scss +133 -0
  54. package/styles/components/_card.scss +3 -0
  55. package/styles/components/_divider.scss +12 -0
  56. package/styles/components/_dropdown.scss +8 -0
  57. package/styles/components/_filter-button.scss +39 -0
  58. package/styles/components/_input.scss +198 -0
  59. package/styles/components/_label.scss +23 -0
  60. package/styles/components/_link.scss +35 -0
  61. package/styles/components/_menu-button.scss +38 -0
  62. package/styles/components/_popover.scss +19 -0
  63. package/styles/components/_summary-card.scss +227 -0
  64. package/styles/components/divider.stories.ts +80 -0
  65. package/styles/components/index.scss +11 -0
  66. package/styles/components/link.stories.ts +154 -0
  67. package/styles/index.scss +4 -0
  68. package/styles/layout/_grid.scss +57 -0
  69. package/styles/layout/_overlay.scss +7 -0
  70. package/styles/layout/grid.stories.ts +117 -0
  71. package/styles/layout/index.scss +2 -0
  72. package/styles/storybook/_core.scss +60 -0
  73. package/styles/storybook/_reset.scss +20 -0
  74. package/styles/storybook/index.scss +17 -0
  75. package/styles/storybook/overrides/_buttons.scss +95 -0
  76. package/styles/storybook/overrides/_code-previews.scss +97 -0
  77. package/styles/storybook/overrides/_content.scss +24 -0
  78. package/styles/storybook/overrides/_headers.scss +31 -0
  79. package/styles/storybook/overrides/_layout.scss +44 -0
  80. package/styles/storybook/overrides/_table.scss +112 -0
  81. package/styles/storybook/overrides/index.scss +6 -0
  82. package/styles/storybook/overrides.css +343 -0
  83. package/styles/utils/_screenreader.scss +18 -0
  84. package/styles/utils/index.scss +1 -0
  85. package/assets/fonts/ObjectSans-Bold.woff2 +0 -0
  86. package/assets/fonts/ObjectSans-Regular.woff2 +0 -0
  87. package/components/alert/alert.model.d.ts +0 -6
  88. package/components/banner/banner.model.d.ts +0 -4
  89. package/components/card/card-header/card-header.component.d.ts +0 -5
  90. package/components/card/card.component.d.ts +0 -5
  91. package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts +0 -19
  92. package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts +0 -2
  93. package/components/form-field/input/input.model.d.ts +0 -11
  94. package/components/icon/icon.component.d.ts +0 -13
  95. package/components/pill/pill.model.d.ts +0 -8
  96. package/components/tab/tab.component.d.ts +0 -9
  97. package/core/style/styles.css +0 -1360
  98. package/core/style/styles.scss +0 -1360
  99. package/esm2022/components/accordion/accordion.component.mjs +0 -32
  100. package/esm2022/components/accordion/accordion.service.mjs +0 -17
  101. package/esm2022/components/accordion/index.mjs +0 -3
  102. package/esm2022/components/alert/alert.component.mjs +0 -42
  103. package/esm2022/components/alert/alert.model.mjs +0 -8
  104. package/esm2022/components/alert/index.mjs +0 -3
  105. package/esm2022/components/badge/badge.component.mjs +0 -21
  106. package/esm2022/components/badge/index.mjs +0 -2
  107. package/esm2022/components/banner/banner.component.mjs +0 -61
  108. package/esm2022/components/banner/banner.model.mjs +0 -6
  109. package/esm2022/components/banner/index.mjs +0 -3
  110. package/esm2022/components/breadcrumb/breadcrumb.component.mjs +0 -15
  111. package/esm2022/components/breadcrumb/index.mjs +0 -2
  112. package/esm2022/components/breadcrumb-group/breadcrumb-group.component.mjs +0 -21
  113. package/esm2022/components/breadcrumb-group/index.mjs +0 -2
  114. package/esm2022/components/button/button.directive.mjs +0 -37
  115. package/esm2022/components/button/index.mjs +0 -2
  116. package/esm2022/components/card/card-content/card-content.component.mjs +0 -11
  117. package/esm2022/components/card/card-content/index.mjs +0 -2
  118. package/esm2022/components/card/card-footer/card-footer.component.mjs +0 -11
  119. package/esm2022/components/card/card-footer/index.mjs +0 -2
  120. package/esm2022/components/card/card-header/card-header.component.mjs +0 -11
  121. package/esm2022/components/card/card-header/index.mjs +0 -2
  122. package/esm2022/components/card/card.component.mjs +0 -11
  123. package/esm2022/components/card/index.mjs +0 -15
  124. package/esm2022/components/collapsible/collapsible.animation.mjs +0 -26
  125. package/esm2022/components/collapsible/collapsible.component.mjs +0 -34
  126. package/esm2022/components/collapsible/index.mjs +0 -2
  127. package/esm2022/components/dashboard-card/dashboard-card.component.mjs +0 -32
  128. package/esm2022/components/dashboard-card/index.mjs +0 -2
  129. package/esm2022/components/dropdown/dropdown.component.mjs +0 -57
  130. package/esm2022/components/dropdown/index.mjs +0 -2
  131. package/esm2022/components/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.mjs +0 -29
  132. package/esm2022/components/form-field/autosuggest/autosuggest-add-option/index.mjs +0 -2
  133. package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.mjs +0 -45
  134. package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.mjs +0 -2
  135. package/esm2022/components/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.mjs +0 -85
  136. package/esm2022/components/form-field/autosuggest/autosuggest-option/index.mjs +0 -3
  137. package/esm2022/components/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.mjs +0 -82
  138. package/esm2022/components/form-field/autosuggest/autosuggest.directive.mjs +0 -411
  139. package/esm2022/components/form-field/autosuggest/index.mjs +0 -6
  140. package/esm2022/components/form-field/autosuggest/match-bold.pipe.mjs +0 -21
  141. package/esm2022/components/form-field/checkbox/checkbox.component.mjs +0 -62
  142. package/esm2022/components/form-field/checkbox/index.mjs +0 -2
  143. package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +0 -15
  144. package/esm2022/components/form-field/checkbox-group/index.mjs +0 -2
  145. package/esm2022/components/form-field/clear-search-button/clear-search-button.component.mjs +0 -37
  146. package/esm2022/components/form-field/error/error.component.mjs +0 -12
  147. package/esm2022/components/form-field/error/index.mjs +0 -2
  148. package/esm2022/components/form-field/file-upload/file-upload-text.interface.mjs +0 -2
  149. package/esm2022/components/form-field/file-upload/file-upload.component.mjs +0 -172
  150. package/esm2022/components/form-field/file-upload/index.mjs +0 -3
  151. package/esm2022/components/form-field/form-field.component.mjs +0 -81
  152. package/esm2022/components/form-field/form-field.constant.mjs +0 -2
  153. package/esm2022/components/form-field/form-field.model.mjs +0 -8
  154. package/esm2022/components/form-field/index.mjs +0 -17
  155. package/esm2022/components/form-field/info/index.mjs +0 -2
  156. package/esm2022/components/form-field/info/info.component.mjs +0 -11
  157. package/esm2022/components/form-field/input/index.mjs +0 -3
  158. package/esm2022/components/form-field/input/input.directive.mjs +0 -68
  159. package/esm2022/components/form-field/input/input.model.mjs +0 -13
  160. package/esm2022/components/form-field/input-button/index.mjs +0 -2
  161. package/esm2022/components/form-field/input-button/input-button.component.mjs +0 -23
  162. package/esm2022/components/form-field/input-icon/index.mjs +0 -2
  163. package/esm2022/components/form-field/input-icon/input-icon.component.mjs +0 -12
  164. package/esm2022/components/form-field/month-input/index.mjs +0 -2
  165. package/esm2022/components/form-field/month-input/month-input-utils.mjs +0 -13
  166. package/esm2022/components/form-field/month-input/month-input.component.mjs +0 -154
  167. package/esm2022/components/form-field/option-group/index.mjs +0 -4
  168. package/esm2022/components/form-field/option-group/option-group.component.mjs +0 -64
  169. package/esm2022/components/form-field/option-group/option-group.model.mjs +0 -2
  170. package/esm2022/components/form-field/option-group/option.component.mjs +0 -22
  171. package/esm2022/components/form-field/picker-button/picker-button.component.mjs +0 -50
  172. package/esm2022/components/form-field/radio-button/index.mjs +0 -2
  173. package/esm2022/components/form-field/radio-button/radio-button.component.mjs +0 -63
  174. package/esm2022/components/form-field/radio-group/index.mjs +0 -2
  175. package/esm2022/components/form-field/radio-group/radio-group.component.mjs +0 -70
  176. package/esm2022/components/form-field/success/index.mjs +0 -2
  177. package/esm2022/components/form-field/success/success.component.mjs +0 -12
  178. package/esm2022/components/form-field/textarea/auto-grow.directive.mjs +0 -45
  179. package/esm2022/components/form-field/textarea/index.mjs +0 -2
  180. package/esm2022/components/icon/action-icon/action-icon.component.mjs +0 -40
  181. package/esm2022/components/icon/action-icon/index.mjs +0 -2
  182. package/esm2022/components/icon/icon.component.mjs +0 -36
  183. package/esm2022/components/icon/index.mjs +0 -3
  184. package/esm2022/components/index.mjs +0 -29
  185. package/esm2022/components/layout/index.mjs +0 -2
  186. package/esm2022/components/layout/layout.component.mjs +0 -23
  187. package/esm2022/components/layout-banners/index.mjs +0 -2
  188. package/esm2022/components/layout-banners/layout-banners.component.mjs +0 -11
  189. package/esm2022/components/loader/index.mjs +0 -2
  190. package/esm2022/components/loader/loader.component.mjs +0 -11
  191. package/esm2022/components/main-navigation/index.mjs +0 -3
  192. package/esm2022/components/main-navigation/main-navigation.component.mjs +0 -165
  193. package/esm2022/components/main-navigation/main-navigation.imports.mjs +0 -20
  194. package/esm2022/components/main-navigation/main-navigation.model.mjs +0 -6
  195. package/esm2022/components/main-navigation-menu/index.mjs +0 -2
  196. package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +0 -20
  197. package/esm2022/components/modal/index.mjs +0 -16
  198. package/esm2022/components/modal/modal-content/index.mjs +0 -2
  199. package/esm2022/components/modal/modal-content/modal-content.component.mjs +0 -11
  200. package/esm2022/components/modal/modal-footer/index.mjs +0 -2
  201. package/esm2022/components/modal/modal-footer/modal-footer.component.mjs +0 -11
  202. package/esm2022/components/modal/modal-header/index.mjs +0 -2
  203. package/esm2022/components/modal/modal-header/modal-header.component.mjs +0 -18
  204. package/esm2022/components/modal/modal-ref.mjs +0 -4
  205. package/esm2022/components/modal/modal.component.mjs +0 -19
  206. package/esm2022/components/modal/modal.service.mjs +0 -31
  207. package/esm2022/components/multi-select/checkbox-data.interface.mjs +0 -2
  208. package/esm2022/components/multi-select/index.mjs +0 -4
  209. package/esm2022/components/multi-select/multi-select.component.mjs +0 -76
  210. package/esm2022/components/multi-select/select-all-text.interface.mjs +0 -2
  211. package/esm2022/components/pill/index.mjs +0 -3
  212. package/esm2022/components/pill/pill.component.mjs +0 -26
  213. package/esm2022/components/pill/pill.model.mjs +0 -10
  214. package/esm2022/components/popover/index.mjs +0 -2
  215. package/esm2022/components/popover/popover-trigger.directive.mjs +0 -182
  216. package/esm2022/components/router-breadcrumbs/index.mjs +0 -2
  217. package/esm2022/components/router-breadcrumbs/router-breadcrumbs.component.mjs +0 -37
  218. package/esm2022/components/summary-card/index.mjs +0 -11
  219. package/esm2022/components/summary-card/summary-card-action/summary-card-action.component.mjs +0 -23
  220. package/esm2022/components/summary-card/summary-card-actions/summary-card-actions.component.mjs +0 -26
  221. package/esm2022/components/summary-card/summary-card-avatar/summary-card-avatar.component.mjs +0 -25
  222. package/esm2022/components/summary-card/summary-card-content/summary-card-content.component.mjs +0 -19
  223. package/esm2022/components/summary-card/summary-card-header/summary-card-header.component.mjs +0 -13
  224. package/esm2022/components/summary-card/summary-card-subtitle/summary-card-subtitle.component.mjs +0 -11
  225. package/esm2022/components/summary-card/summary-card-tag/summary-card-tag.component.mjs +0 -20
  226. package/esm2022/components/summary-card/summary-card-tags/summary-card-tags.component.mjs +0 -20
  227. package/esm2022/components/summary-card/summary-card.component.mjs +0 -14
  228. package/esm2022/components/summary-card/summary-card.model.mjs +0 -2
  229. package/esm2022/components/tab/index.mjs +0 -2
  230. package/esm2022/components/tab/tab.component.mjs +0 -32
  231. package/esm2022/components/tab-group/index.mjs +0 -2
  232. package/esm2022/components/tab-group/tab-group.component.mjs +0 -34
  233. package/esm2022/components/tag/index.mjs +0 -2
  234. package/esm2022/components/tag/tag.component.mjs +0 -29
  235. package/esm2022/components/toast/index.mjs +0 -3
  236. package/esm2022/components/toast/toast.component.mjs +0 -77
  237. package/esm2022/components/toast/toast.service.mjs +0 -43
  238. package/esm2022/components/tooltip/index.mjs +0 -3
  239. package/esm2022/components/tooltip/tooltip.component.mjs +0 -16
  240. package/esm2022/components/tooltip/tooltip.directive.mjs +0 -89
  241. package/esm2022/models/aria.model.mjs +0 -2
  242. package/esm2022/models/index.mjs +0 -2
  243. package/esm2022/ndwnu-design-system.mjs +0 -5
  244. package/esm2022/public-api.mjs +0 -5
  245. package/public-api.d.ts +0 -1
  246. package/assets/images/{ndw-logo-short.svg → logos/ndw-logo-short.svg} +0 -0
  247. package/assets/images/{ndw-logo.svg → logos/ndw-logo.svg} +0 -0
  248. package/assets/images/{nwb-logo-short.svg → logos/nwb-logo-short.svg} +0 -0
  249. package/assets/images/{nwb-logo.svg → logos/nwb-logo.svg} +0 -0
  250. package/{components → lib/components}/accordion/accordion.component.d.ts +0 -0
  251. package/{components → lib/components}/accordion/accordion.service.d.ts +0 -0
  252. package/{components → lib/components}/accordion/index.d.ts +0 -0
  253. package/{components → lib/components}/alert/alert.component.d.ts +0 -0
  254. package/{components → lib/components}/alert/index.d.ts +0 -0
  255. package/{components → lib/components}/badge/badge.component.d.ts +0 -0
  256. package/{components → lib/components}/badge/index.d.ts +0 -0
  257. package/{components → lib/components}/banner/banner.component.d.ts +0 -0
  258. package/{components → lib/components}/banner/index.d.ts +0 -0
  259. package/{components → lib/components}/breadcrumb/breadcrumb.component.d.ts +0 -0
  260. package/{components → lib/components}/breadcrumb/index.d.ts +0 -0
  261. package/{components → lib/components}/breadcrumb-group/breadcrumb-group.component.d.ts +0 -0
  262. package/{components → lib/components}/breadcrumb-group/index.d.ts +0 -0
  263. package/{components → lib/components}/button/button.directive.d.ts +0 -0
  264. package/{components → lib/components}/button/index.d.ts +0 -0
  265. package/{components → lib/components}/card/card-content/card-content.component.d.ts +0 -0
  266. package/{components → lib/components}/card/card-content/index.d.ts +0 -0
  267. package/{components → lib/components}/card/card-footer/card-footer.component.d.ts +0 -0
  268. package/{components → lib/components}/card/card-footer/index.d.ts +0 -0
  269. package/{components → lib/components}/card/card-header/index.d.ts +0 -0
  270. package/{components → lib/components}/card/index.d.ts +0 -0
  271. package/{components → lib/components}/collapsible/collapsible.animation.d.ts +0 -0
  272. package/{components → lib/components}/collapsible/collapsible.component.d.ts +0 -0
  273. package/{components → lib/components}/collapsible/index.d.ts +0 -0
  274. package/{components → lib/components}/dashboard-card/dashboard-card.component.d.ts +0 -0
  275. package/{components → lib/components}/dashboard-card/index.d.ts +0 -0
  276. package/{components → lib/components}/dropdown/index.d.ts +0 -0
  277. package/{components → lib/components}/form-field/autosuggest/autosuggest-add-option/index.d.ts +0 -0
  278. package/{components → lib/components}/form-field/autosuggest/autosuggest-option/index.d.ts +0 -0
  279. package/{components → lib/components}/form-field/autosuggest/index.d.ts +0 -0
  280. package/{components → lib/components}/form-field/autosuggest/match-bold.pipe.d.ts +0 -0
  281. package/{components → lib/components}/form-field/checkbox/index.d.ts +0 -0
  282. package/{components → lib/components}/form-field/checkbox-group/checkbox-group.component.d.ts +0 -0
  283. package/{components → lib/components}/form-field/checkbox-group/index.d.ts +0 -0
  284. package/{components → lib/components}/form-field/error/error.component.d.ts +0 -0
  285. package/{components → lib/components}/form-field/error/index.d.ts +0 -0
  286. package/{components → lib/components}/form-field/file-upload/file-upload-text.interface.d.ts +0 -0
  287. package/{components → lib/components}/form-field/file-upload/index.d.ts +0 -0
  288. package/{components → lib/components}/form-field/form-field.constant.d.ts +0 -0
  289. package/{components → lib/components}/form-field/form-field.model.d.ts +0 -0
  290. package/{components → lib/components}/form-field/index.d.ts +0 -0
  291. package/{components → lib/components}/form-field/info/index.d.ts +0 -0
  292. package/{components → lib/components}/form-field/info/info.component.d.ts +0 -0
  293. package/{components → lib/components}/form-field/input/index.d.ts +0 -0
  294. package/{components → lib/components}/form-field/input/input.directive.d.ts +0 -0
  295. package/{components → lib/components}/form-field/input-button/index.d.ts +0 -0
  296. package/{components → lib/components}/form-field/input-icon/index.d.ts +0 -0
  297. package/{components → lib/components}/form-field/input-icon/input-icon.component.d.ts +0 -0
  298. package/{components → lib/components}/form-field/month-input/index.d.ts +0 -0
  299. package/{components → lib/components}/form-field/month-input/month-input-utils.d.ts +0 -0
  300. package/{components → lib/components}/form-field/option-group/index.d.ts +0 -0
  301. package/{components → lib/components}/form-field/option-group/option-group.model.d.ts +0 -0
  302. package/{components → lib/components}/form-field/option-group/option.component.d.ts +0 -0
  303. package/{components → lib/components}/form-field/radio-button/index.d.ts +0 -0
  304. package/{components → lib/components}/form-field/radio-button/radio-button.component.d.ts +0 -0
  305. package/{components → lib/components}/form-field/radio-group/index.d.ts +0 -0
  306. package/{components → lib/components}/form-field/radio-group/radio-group.component.d.ts +0 -0
  307. package/{components → lib/components}/form-field/success/index.d.ts +0 -0
  308. package/{components → lib/components}/form-field/success/success.component.d.ts +0 -0
  309. package/{components → lib/components}/icon/action-icon/index.d.ts +0 -0
  310. package/{components → lib/components}/icon/index.d.ts +0 -0
  311. package/{components → lib/components}/index.d.ts +0 -0
  312. package/{components → lib/components}/layout/index.d.ts +0 -0
  313. package/{components → lib/components}/layout-banners/index.d.ts +0 -0
  314. package/{components → lib/components}/layout-banners/layout-banners.component.d.ts +0 -0
  315. package/{components → lib/components}/loader/index.d.ts +0 -0
  316. package/{components → lib/components}/loader/loader.component.d.ts +0 -0
  317. package/{components → lib/components}/main-navigation/index.d.ts +0 -0
  318. package/{components → lib/components}/main-navigation/main-navigation.imports.d.ts +0 -0
  319. package/{components → lib/components}/main-navigation-menu/index.d.ts +0 -0
  320. package/{components → lib/components}/main-navigation-menu/main-navigation-menu.component.d.ts +0 -0
  321. package/{components → lib/components}/modal/index.d.ts +0 -0
  322. package/{components → lib/components}/modal/modal-content/index.d.ts +0 -0
  323. package/{components → lib/components}/modal/modal-content/modal-content.component.d.ts +0 -0
  324. package/{components → lib/components}/modal/modal-footer/index.d.ts +0 -0
  325. package/{components → lib/components}/modal/modal-footer/modal-footer.component.d.ts +0 -0
  326. package/{components → lib/components}/modal/modal-header/index.d.ts +0 -0
  327. package/{components → lib/components}/modal/modal-header/modal-header.component.d.ts +0 -0
  328. package/{components → lib/components}/modal/modal-ref.d.ts +0 -0
  329. package/{components → lib/components}/modal/modal.service.d.ts +0 -0
  330. package/{components → lib/components}/multi-select/checkbox-data.interface.d.ts +0 -0
  331. package/{components → lib/components}/multi-select/index.d.ts +0 -0
  332. package/{components → lib/components}/multi-select/select-all-text.interface.d.ts +0 -0
  333. package/{components → lib/components}/pill/index.d.ts +0 -0
  334. package/{components → lib/components}/pill/pill.component.d.ts +0 -0
  335. package/{components → lib/components}/popover/index.d.ts +0 -0
  336. package/{components → lib/components}/popover/popover-trigger.directive.d.ts +0 -0
  337. package/{components → lib/components}/router-breadcrumbs/index.d.ts +0 -0
  338. package/{components → lib/components}/summary-card/index.d.ts +0 -0
  339. package/{components → lib/components}/summary-card/summary-card-action/summary-card-action.component.d.ts +0 -0
  340. package/{components → lib/components}/summary-card/summary-card-actions/summary-card-actions.component.d.ts +1 -1
  341. package/{components → lib/components}/summary-card/summary-card-avatar/summary-card-avatar.component.d.ts +0 -0
  342. package/{components → lib/components}/summary-card/summary-card-content/summary-card-content.component.d.ts +0 -0
  343. package/{components → lib/components}/summary-card/summary-card-header/summary-card-header.component.d.ts +0 -0
  344. package/{components → lib/components}/summary-card/summary-card-subtitle/summary-card-subtitle.component.d.ts +0 -0
  345. package/{components → lib/components}/summary-card/summary-card-tag/summary-card-tag.component.d.ts +0 -0
  346. package/{components → lib/components}/summary-card/summary-card-tags/summary-card-tags.component.d.ts +0 -0
  347. package/{components → lib/components}/summary-card/summary-card.component.d.ts +0 -0
  348. package/{components → lib/components}/summary-card/summary-card.model.d.ts +0 -0
  349. package/{components → lib/components}/tab/index.d.ts +0 -0
  350. package/{components → lib/components}/tab-group/index.d.ts +0 -0
  351. package/{components → lib/components}/tag/index.d.ts +0 -0
  352. package/{components → lib/components}/toast/index.d.ts +0 -0
  353. package/{components → lib/components}/toast/toast.service.d.ts +0 -0
  354. package/{components → lib/components}/tooltip/index.d.ts +0 -0
  355. package/{components → lib/components}/tooltip/tooltip.component.d.ts +0 -0
  356. package/{components → lib/components}/tooltip/tooltip.directive.d.ts +1 -1
  357. /package/{models → lib/models}/aria.model.d.ts +0 -0
  358. /package/{models → lib/models}/index.d.ts +0 -0
@@ -1,89 +0,0 @@
1
- import { Overlay } from '@angular/cdk/overlay';
2
- import { ComponentPortal } from '@angular/cdk/portal';
3
- import { Directive, ElementRef, inject, input, } from '@angular/core';
4
- import { TooltipComponent } from './tooltip.component';
5
- import { AriaDescriber } from '@angular/cdk/a11y';
6
- import * as i0 from "@angular/core";
7
- export class TooltipDirective {
8
- constructor() {
9
- this.text = input.required({ alias: 'ndwTooltip' });
10
- this.elementRef = inject(ElementRef);
11
- this.overlay = inject(Overlay);
12
- this.ariaDescriber = inject(AriaDescriber);
13
- this.overlayRef = null;
14
- }
15
- ngOnInit() {
16
- const positionStrategy = this.getFlexibleConnectedPositionStrategy();
17
- this.overlayRef = this.overlay.create({ positionStrategy });
18
- this.updateAriaDescription();
19
- }
20
- ngOnChanges() {
21
- const positionStrategy = this.getFlexibleConnectedPositionStrategy();
22
- this.overlayRef?.updatePositionStrategy(positionStrategy);
23
- }
24
- ngOnDestroy() {
25
- this.hide();
26
- this.overlayRef?.dispose();
27
- }
28
- show() {
29
- if (!this.text().length || this.overlayRef === null || this.overlayRef.hasAttached()) {
30
- return;
31
- }
32
- const portal = new ComponentPortal(TooltipComponent);
33
- const tooltipRef = this.overlayRef.attach(portal);
34
- tooltipRef.instance.text = this.text;
35
- }
36
- hide() {
37
- this.overlayRef?.detach();
38
- }
39
- hideOnEscape() {
40
- this.hide();
41
- }
42
- updateAriaDescription() {
43
- const element = this.elementRef.nativeElement;
44
- this.ariaDescriber.describe(element, this.text());
45
- }
46
- getFlexibleConnectedPositionStrategy() {
47
- return this.overlay
48
- .position()
49
- .flexibleConnectedTo(this.elementRef.nativeElement)
50
- .withPositions([
51
- {
52
- offsetX: this.elementRef.nativeElement.offsetWidth / 2 - 16,
53
- offsetY: -8,
54
- originX: 'start',
55
- originY: 'top',
56
- overlayX: 'start',
57
- overlayY: 'bottom',
58
- },
59
- {
60
- offsetX: this.elementRef.nativeElement.offsetWidth / 2 - 16,
61
- offsetY: 8,
62
- originX: 'start',
63
- originY: 'bottom',
64
- overlayX: 'start',
65
- overlayY: 'top',
66
- },
67
- ]);
68
- }
69
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: TooltipDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
70
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.1", type: TooltipDirective, isStandalone: true, selector: "[ndwTooltip]", inputs: { text: { classPropertyName: "text", publicName: "ndwTooltip", isSignal: true, isRequired: true, transformFunction: null } }, host: { attributes: { "aria-hidden": "false", "tabindex": "0" }, listeners: { "focus": "show()", "blur": "hide()", "document:keydown.escape": "hideOnEscape()", "keydown.escape": "hide()", "mouseenter": "show()", "mouseleave": "hide()" } }, usesOnChanges: true, ngImport: i0 }); }
71
- }
72
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: TooltipDirective, decorators: [{
73
- type: Directive,
74
- args: [{
75
- selector: '[ndwTooltip]',
76
- standalone: true,
77
- host: {
78
- 'aria-hidden': 'false',
79
- '(focus)': 'show()',
80
- '(blur)': 'hide()',
81
- '(document:keydown.escape)': 'hideOnEscape()',
82
- '(keydown.escape)': 'hide()',
83
- '(mouseenter)': 'show()',
84
- '(mouseleave)': 'hide()',
85
- tabindex: '0',
86
- },
87
- }]
88
- }] });
89
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL2NvbXBvbmVudHMvdG9vbHRpcC90b29sdGlwLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXFDLE9BQU8sRUFBYyxNQUFNLHNCQUFzQixDQUFDO0FBQzlGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN0RCxPQUFPLEVBRUwsU0FBUyxFQUNULFVBQVUsRUFDVixNQUFNLEVBQ04sS0FBSyxHQUlOLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUFnQmxELE1BQU0sT0FBTyxnQkFBZ0I7SUFkN0I7UUFlUyxTQUFJLEdBQUcsS0FBSyxDQUFDLFFBQVEsQ0FBUyxFQUFFLEtBQUssRUFBRSxZQUFZLEVBQUUsQ0FBQyxDQUFDO1FBRTdDLGVBQVUsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDaEMsWUFBTyxHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUMxQixrQkFBYSxHQUFHLE1BQU0sQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUUvQyxlQUFVLEdBQXNCLElBQUksQ0FBQztLQWdFOUM7SUE5RFEsUUFBUTtRQUNiLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLG9DQUFvQyxFQUFFLENBQUM7UUFDckUsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxFQUFFLGdCQUFnQixFQUFFLENBQUMsQ0FBQztRQUM1RCxJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQztJQUMvQixDQUFDO0lBRU0sV0FBVztRQUNoQixNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxvQ0FBb0MsRUFBRSxDQUFDO1FBQ3JFLElBQUksQ0FBQyxVQUFVLEVBQUUsc0JBQXNCLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztJQUM1RCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDWixJQUFJLENBQUMsVUFBVSxFQUFFLE9BQU8sRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFUyxJQUFJO1FBQ1osSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxJQUFJLElBQUksSUFBSSxDQUFDLFVBQVUsQ0FBQyxXQUFXLEVBQUUsRUFBRSxDQUFDO1lBQ3JGLE9BQU87UUFDVCxDQUFDO1FBRUQsTUFBTSxNQUFNLEdBQUcsSUFBSSxlQUFlLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUNyRCxNQUFNLFVBQVUsR0FBbUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDbEYsVUFBVSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQztJQUN2QyxDQUFDO0lBRVMsSUFBSTtRQUNaLElBQUksQ0FBQyxVQUFVLEVBQUUsTUFBTSxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUVTLFlBQVk7UUFDcEIsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2QsQ0FBQztJQUVPLHFCQUFxQjtRQUMzQixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQztRQUM5QyxJQUFJLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDLENBQUM7SUFDcEQsQ0FBQztJQUVPLG9DQUFvQztRQUMxQyxPQUFPLElBQUksQ0FBQyxPQUFPO2FBQ2hCLFFBQVEsRUFBRTthQUNWLG1CQUFtQixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDO2FBQ2xELGFBQWEsQ0FBQztZQUNiO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxXQUFXLEdBQUcsQ0FBQyxHQUFHLEVBQUU7Z0JBQzNELE9BQU8sRUFBRSxDQUFDLENBQUM7Z0JBQ1gsT0FBTyxFQUFFLE9BQU87Z0JBQ2hCLE9BQU8sRUFBRSxLQUFLO2dCQUNkLFFBQVEsRUFBRSxPQUFPO2dCQUNqQixRQUFRLEVBQUUsUUFBUTthQUNuQjtZQUNEO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxXQUFXLEdBQUcsQ0FBQyxHQUFHLEVBQUU7Z0JBQzNELE9BQU8sRUFBRSxDQUFDO2dCQUNWLE9BQU8sRUFBRSxPQUFPO2dCQUNoQixPQUFPLEVBQUUsUUFBUTtnQkFDakIsUUFBUSxFQUFFLE9BQU87Z0JBQ2pCLFFBQVEsRUFBRSxLQUFLO2FBQ2hCO1NBQ0YsQ0FBQyxDQUFDO0lBQ1AsQ0FBQzs4R0F0RVUsZ0JBQWdCO2tHQUFoQixnQkFBZ0I7OzJGQUFoQixnQkFBZ0I7a0JBZDVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUU7d0JBQ0osYUFBYSxFQUFFLE9BQU87d0JBQ3RCLFNBQVMsRUFBRSxRQUFRO3dCQUNuQixRQUFRLEVBQUUsUUFBUTt3QkFDbEIsMkJBQTJCLEVBQUUsZ0JBQWdCO3dCQUM3QyxrQkFBa0IsRUFBRSxRQUFRO3dCQUM1QixjQUFjLEVBQUUsUUFBUTt3QkFDeEIsY0FBYyxFQUFFLFFBQVE7d0JBQ3hCLFFBQVEsRUFBRSxHQUFHO3FCQUNkO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRmxleGlibGVDb25uZWN0ZWRQb3NpdGlvblN0cmF0ZWd5LCBPdmVybGF5LCBPdmVybGF5UmVmIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL292ZXJsYXknO1xuaW1wb3J0IHsgQ29tcG9uZW50UG9ydGFsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5pbXBvcnQge1xuICBDb21wb25lbnRSZWYsXG4gIERpcmVjdGl2ZSxcbiAgRWxlbWVudFJlZixcbiAgaW5qZWN0LFxuICBpbnB1dCxcbiAgT25DaGFuZ2VzLFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFRvb2x0aXBDb21wb25lbnQgfSBmcm9tICcuL3Rvb2x0aXAuY29tcG9uZW50JztcbmltcG9ydCB7IEFyaWFEZXNjcmliZXIgfSBmcm9tICdAYW5ndWxhci9jZGsvYTExeSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tuZHdUb29sdGlwXScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICAnYXJpYS1oaWRkZW4nOiAnZmFsc2UnLFxuICAgICcoZm9jdXMpJzogJ3Nob3coKScsXG4gICAgJyhibHVyKSc6ICdoaWRlKCknLFxuICAgICcoZG9jdW1lbnQ6a2V5ZG93bi5lc2NhcGUpJzogJ2hpZGVPbkVzY2FwZSgpJyxcbiAgICAnKGtleWRvd24uZXNjYXBlKSc6ICdoaWRlKCknLFxuICAgICcobW91c2VlbnRlciknOiAnc2hvdygpJyxcbiAgICAnKG1vdXNlbGVhdmUpJzogJ2hpZGUoKScsXG4gICAgdGFiaW5kZXg6ICcwJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgVG9vbHRpcERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgT25EZXN0cm95LCBPbkluaXQge1xuICBwdWJsaWMgdGV4dCA9IGlucHV0LnJlcXVpcmVkPHN0cmluZz4oeyBhbGlhczogJ25kd1Rvb2x0aXAnIH0pO1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgZWxlbWVudFJlZiA9IGluamVjdChFbGVtZW50UmVmKTtcbiAgcHJpdmF0ZSByZWFkb25seSBvdmVybGF5ID0gaW5qZWN0KE92ZXJsYXkpO1xuICBwcml2YXRlIHJlYWRvbmx5IGFyaWFEZXNjcmliZXIgPSBpbmplY3QoQXJpYURlc2NyaWJlcik7XG5cbiAgcHJpdmF0ZSBvdmVybGF5UmVmOiBPdmVybGF5UmVmIHwgbnVsbCA9IG51bGw7XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGNvbnN0IHBvc2l0aW9uU3RyYXRlZ3kgPSB0aGlzLmdldEZsZXhpYmxlQ29ubmVjdGVkUG9zaXRpb25TdHJhdGVneSgpO1xuICAgIHRoaXMub3ZlcmxheVJlZiA9IHRoaXMub3ZlcmxheS5jcmVhdGUoeyBwb3NpdGlvblN0cmF0ZWd5IH0pO1xuICAgIHRoaXMudXBkYXRlQXJpYURlc2NyaXB0aW9uKCk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkNoYW5nZXMoKTogdm9pZCB7XG4gICAgY29uc3QgcG9zaXRpb25TdHJhdGVneSA9IHRoaXMuZ2V0RmxleGlibGVDb25uZWN0ZWRQb3NpdGlvblN0cmF0ZWd5KCk7XG4gICAgdGhpcy5vdmVybGF5UmVmPy51cGRhdGVQb3NpdGlvblN0cmF0ZWd5KHBvc2l0aW9uU3RyYXRlZ3kpO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuaGlkZSgpO1xuICAgIHRoaXMub3ZlcmxheVJlZj8uZGlzcG9zZSgpO1xuICB9XG5cbiAgcHJvdGVjdGVkIHNob3coKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLnRleHQoKS5sZW5ndGggfHwgdGhpcy5vdmVybGF5UmVmID09PSBudWxsIHx8IHRoaXMub3ZlcmxheVJlZi5oYXNBdHRhY2hlZCgpKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3QgcG9ydGFsID0gbmV3IENvbXBvbmVudFBvcnRhbChUb29sdGlwQ29tcG9uZW50KTtcbiAgICBjb25zdCB0b29sdGlwUmVmOiBDb21wb25lbnRSZWY8VG9vbHRpcENvbXBvbmVudD4gPSB0aGlzLm92ZXJsYXlSZWYuYXR0YWNoKHBvcnRhbCk7XG4gICAgdG9vbHRpcFJlZi5pbnN0YW5jZS50ZXh0ID0gdGhpcy50ZXh0O1xuICB9XG5cbiAgcHJvdGVjdGVkIGhpZGUoKTogdm9pZCB7XG4gICAgdGhpcy5vdmVybGF5UmVmPy5kZXRhY2goKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBoaWRlT25Fc2NhcGUoKTogdm9pZCB7XG4gICAgdGhpcy5oaWRlKCk7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZUFyaWFEZXNjcmlwdGlvbigpOiB2b2lkIHtcbiAgICBjb25zdCBlbGVtZW50ID0gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG4gICAgdGhpcy5hcmlhRGVzY3JpYmVyLmRlc2NyaWJlKGVsZW1lbnQsIHRoaXMudGV4dCgpKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0RmxleGlibGVDb25uZWN0ZWRQb3NpdGlvblN0cmF0ZWd5KCk6IEZsZXhpYmxlQ29ubmVjdGVkUG9zaXRpb25TdHJhdGVneSB7XG4gICAgcmV0dXJuIHRoaXMub3ZlcmxheVxuICAgICAgLnBvc2l0aW9uKClcbiAgICAgIC5mbGV4aWJsZUNvbm5lY3RlZFRvKHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50KVxuICAgICAgLndpdGhQb3NpdGlvbnMoW1xuICAgICAgICB7XG4gICAgICAgICAgb2Zmc2V0WDogdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQub2Zmc2V0V2lkdGggLyAyIC0gMTYsXG4gICAgICAgICAgb2Zmc2V0WTogLTgsXG4gICAgICAgICAgb3JpZ2luWDogJ3N0YXJ0JyxcbiAgICAgICAgICBvcmlnaW5ZOiAndG9wJyxcbiAgICAgICAgICBvdmVybGF5WDogJ3N0YXJ0JyxcbiAgICAgICAgICBvdmVybGF5WTogJ2JvdHRvbScsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBvZmZzZXRYOiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5vZmZzZXRXaWR0aCAvIDIgLSAxNixcbiAgICAgICAgICBvZmZzZXRZOiA4LFxuICAgICAgICAgIG9yaWdpblg6ICdzdGFydCcsXG4gICAgICAgICAgb3JpZ2luWTogJ2JvdHRvbScsXG4gICAgICAgICAgb3ZlcmxheVg6ICdzdGFydCcsXG4gICAgICAgICAgb3ZlcmxheVk6ICd0b3AnLFxuICAgICAgICB9LFxuICAgICAgXSk7XG4gIH1cbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJpYS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25kdy9zcmMvbW9kZWxzL2FyaWEubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIEFyaWFMaXZlID0gJ3BvbGl0ZScgfCAnYXNzZXJ0aXZlJyB8ICdvZmYnO1xuIl19
@@ -1,2 +0,0 @@
1
- export * from './aria.model';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL21vZGVscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYXJpYS5tb2RlbCc7XG4iXX0=
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmR3bnUtZGVzaWduLXN5c3RlbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25kdy9zcmMvbmR3bnUtZGVzaWduLXN5c3RlbS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -1,5 +0,0 @@
1
- /*
2
- * Public API Surface of ndw
3
- */
4
- export * from './components';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25kdy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBuZHdcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMnO1xuIl19
package/public-api.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './components';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
- import { SummaryActionsView } from '../summary-card.model';
2
1
  import { SummaryCardActionComponent } from '../summary-card-action/summary-card-action.component';
2
+ import { SummaryActionsView } from '../summary-card.model';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SummaryCardActionsComponent {
5
5
  readonly view: import("@angular/core").InputSignal<SummaryActionsView>;
File without changes
File without changes
File without changes
@@ -1,10 +1,10 @@
1
1
  import { OnChanges, OnDestroy, OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TooltipDirective implements OnChanges, OnDestroy, OnInit {
4
- text: import("@angular/core").InputSignal<string>;
5
4
  private readonly elementRef;
6
5
  private readonly overlay;
7
6
  private readonly ariaDescriber;
7
+ text: import("@angular/core").InputSignal<string>;
8
8
  private overlayRef;
9
9
  ngOnInit(): void;
10
10
  ngOnChanges(): void;
File without changes
File without changes