@odx/angular 1.0.4 → 2.1.1

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 (263) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/breakpoints/README.md +3 -0
  3. package/breakpoints/index.d.ts +7 -0
  4. package/breakpoints/lib/breakpoints.config.d.ts +21 -0
  5. package/breakpoints/lib/breakpoints.module.d.ts +7 -0
  6. package/breakpoints/lib/breakpoints.service.d.ts +13 -0
  7. package/breakpoints/lib/breakpoints.typings.d.ts +8 -0
  8. package/breakpoints/lib/directives/index.d.ts +1 -0
  9. package/breakpoints/lib/directives/match-breakpoints.directive.d.ts +16 -0
  10. package/breakpoints/lib/helpers/configure-breakpoint.d.ts +4 -0
  11. package/breakpoints/lib/helpers/index.d.ts +1 -0
  12. package/breakpoints/lib/models/breakpoint.d.ts +5 -0
  13. package/breakpoints/lib/models/index.d.ts +1 -0
  14. package/cdk/autocomplete-control/README.md +3 -0
  15. package/cdk/autocomplete-control/index.d.ts +3 -0
  16. package/cdk/autocomplete-control/lib/abstract/base-search-field.directive.d.ts +13 -0
  17. package/cdk/autocomplete-control/lib/abstract/index.d.ts +1 -0
  18. package/cdk/autocomplete-control/lib/autocomplete-control.d.ts +39 -0
  19. package/cdk/autocomplete-control/lib/pipes/base-search-filter-pipe.d.ts +11 -0
  20. package/cdk/autocomplete-control/lib/pipes/index.d.ts +1 -0
  21. package/cdk/expandable/lib/directives/expandable-item.directive.d.ts +1 -1
  22. package/cdk/option-control/README.md +3 -0
  23. package/cdk/option-control/index.d.ts +1 -0
  24. package/cdk/option-control/lib/option-control.d.ts +17 -0
  25. package/components/autocomplete/README.md +3 -0
  26. package/components/autocomplete/index.d.ts +6 -0
  27. package/components/autocomplete/lib/autocomplete.component.d.ts +30 -0
  28. package/components/autocomplete/lib/autocomplete.module.d.ts +11 -0
  29. package/components/autocomplete/lib/autocomplete.tokens.d.ts +3 -0
  30. package/components/autocomplete/lib/components/index.d.ts +1 -0
  31. package/components/autocomplete/lib/components/option/autocomplete-option.component.d.ts +9 -0
  32. package/components/autocomplete/lib/directives/autocomplete-search-field.directive.d.ts +9 -0
  33. package/components/autocomplete/lib/directives/index.d.ts +1 -0
  34. package/components/autocomplete/lib/pipes/autocomplete-search-filter.pipe.d.ts +12 -0
  35. package/components/autocomplete/lib/pipes/index.d.ts +1 -0
  36. package/components/chip/index.d.ts +1 -1
  37. package/components/chip/lib/{chip.component.d.ts → components/chip/chip.component.d.ts} +1 -1
  38. package/components/chip/lib/components/chip-list/chip-list.component.d.ts +6 -0
  39. package/components/chip/lib/components/chip-list-row/chip-list-row.component.d.ts +6 -0
  40. package/components/chip/lib/components/index.d.ts +3 -0
  41. package/components/dropdown/lib/dropdown.directive.d.ts +2 -1
  42. package/components/form-field/lib/models/form-field-variant.d.ts +1 -0
  43. package/components/main-menu/lib/directives/index.d.ts +1 -0
  44. package/components/main-menu/lib/directives/main-menu-close.directive.d.ts +7 -0
  45. package/components/main-menu/lib/directives/main-menu-item.directive.d.ts +3 -4
  46. package/components/main-menu/lib/main-menu.module.d.ts +3 -2
  47. package/components/menu/lib/directives/menu-item.directive.d.ts +1 -1
  48. package/components/menu/lib/menu.module.d.ts +3 -2
  49. package/components/rail-navigation/index.d.ts +2 -1
  50. package/components/rail-navigation/lib/components/index.d.ts +1 -0
  51. package/components/rail-navigation/lib/models/index.d.ts +1 -0
  52. package/components/rail-navigation/lib/models/rail-navigation-variant.d.ts +5 -0
  53. package/components/rail-navigation/lib/rail-navigation.component.d.ts +4 -2
  54. package/components/rail-navigation/lib/rail-navigation.module.d.ts +2 -2
  55. package/components/select/index.d.ts +0 -1
  56. package/components/select/lib/components/index.d.ts +1 -1
  57. package/components/select/lib/components/select-option/select-option.component.d.ts +19 -0
  58. package/components/select/lib/directives/select-search-field.directive.d.ts +3 -7
  59. package/components/select/lib/pipes/select-search-filter.pipe.d.ts +8 -8
  60. package/components/select/lib/select.component.d.ts +15 -30
  61. package/components/select/lib/select.module.d.ts +2 -2
  62. package/components/select/lib/select.tokens.d.ts +2 -2
  63. package/components/table/README.md +3 -0
  64. package/components/table/index.d.ts +5 -0
  65. package/components/table/lib/components/check-cell/check-cell.component.d.ts +11 -0
  66. package/components/table/lib/components/header-title/header-title.component.d.ts +28 -0
  67. package/components/table/lib/components/index.d.ts +2 -0
  68. package/components/table/lib/directives/index.d.ts +2 -0
  69. package/components/table/lib/directives/table-cell.directive.d.ts +6 -0
  70. package/components/table/lib/directives/table-row.directive.d.ts +6 -0
  71. package/components/table/lib/interfaces/index.d.ts +3 -0
  72. package/components/table/lib/models/index.d.ts +2 -0
  73. package/components/table/lib/models/sort-variant.d.ts +6 -0
  74. package/components/table/lib/models/table-variant.d.ts +5 -0
  75. package/components/table/lib/table.component.d.ts +29 -0
  76. package/components/table/lib/table.config.d.ts +4 -0
  77. package/components/table/lib/table.module.d.ts +11 -0
  78. package/components/wizard/README.md +3 -0
  79. package/components/wizard/index.d.ts +3 -0
  80. package/components/wizard/lib/components/index.d.ts +1 -0
  81. package/components/wizard/lib/components/wizard-step/wizard-step.component.d.ts +17 -0
  82. package/components/wizard/lib/wizard.component.d.ts +31 -0
  83. package/components/wizard/lib/wizard.module.d.ts +9 -0
  84. package/esm2020/breakpoints/index.mjs +8 -0
  85. package/esm2020/breakpoints/lib/breakpoints.config.mjs +13 -0
  86. package/esm2020/breakpoints/lib/breakpoints.module.mjs +17 -0
  87. package/esm2020/breakpoints/lib/breakpoints.service.mjs +34 -0
  88. package/esm2020/breakpoints/lib/breakpoints.typings.mjs +2 -0
  89. package/esm2020/breakpoints/lib/directives/index.mjs +2 -0
  90. package/esm2020/breakpoints/lib/directives/match-breakpoints.directive.mjs +48 -0
  91. package/esm2020/breakpoints/lib/helpers/configure-breakpoint.mjs +8 -0
  92. package/esm2020/breakpoints/lib/helpers/index.mjs +2 -0
  93. package/esm2020/breakpoints/lib/models/breakpoint.mjs +2 -0
  94. package/esm2020/breakpoints/lib/models/index.mjs +2 -0
  95. package/esm2020/breakpoints/odx-angular-breakpoints.mjs +5 -0
  96. package/esm2020/cdk/autocomplete-control/index.mjs +4 -0
  97. package/esm2020/cdk/autocomplete-control/lib/abstract/base-search-field.directive.mjs +38 -0
  98. package/esm2020/cdk/autocomplete-control/lib/abstract/index.mjs +2 -0
  99. package/esm2020/cdk/autocomplete-control/lib/autocomplete-control.mjs +90 -0
  100. package/esm2020/cdk/autocomplete-control/lib/pipes/base-search-filter-pipe.mjs +32 -0
  101. package/esm2020/cdk/autocomplete-control/lib/pipes/index.mjs +2 -0
  102. package/esm2020/cdk/autocomplete-control/odx-angular-cdk-autocomplete-control.mjs +5 -0
  103. package/esm2020/cdk/expandable/lib/directives/expandable-item.directive.mjs +5 -5
  104. package/esm2020/cdk/option-control/index.mjs +2 -0
  105. package/esm2020/cdk/option-control/lib/option-control.mjs +47 -0
  106. package/esm2020/cdk/option-control/odx-angular-cdk-option-control.mjs +5 -0
  107. package/esm2020/components/autocomplete/index.mjs +7 -0
  108. package/esm2020/components/autocomplete/lib/autocomplete.component.mjs +162 -0
  109. package/esm2020/components/autocomplete/lib/autocomplete.module.mjs +21 -0
  110. package/esm2020/components/autocomplete/lib/autocomplete.tokens.mjs +3 -0
  111. package/esm2020/components/autocomplete/lib/components/index.mjs +2 -0
  112. package/esm2020/components/autocomplete/lib/components/option/autocomplete-option.component.mjs +33 -0
  113. package/esm2020/components/autocomplete/lib/directives/autocomplete-search-field.directive.mjs +26 -0
  114. package/esm2020/components/autocomplete/lib/directives/index.mjs +2 -0
  115. package/esm2020/components/autocomplete/lib/pipes/autocomplete-search-filter.pipe.mjs +30 -0
  116. package/esm2020/components/autocomplete/lib/pipes/index.mjs +2 -0
  117. package/esm2020/components/autocomplete/odx-angular-components-autocomplete.mjs +5 -0
  118. package/esm2020/components/card/lib/card.component.mjs +2 -2
  119. package/esm2020/components/checkbox/lib/checkbox.component.mjs +2 -2
  120. package/esm2020/components/chip/index.mjs +2 -2
  121. package/esm2020/components/chip/lib/{chip.component.mjs → components/chip/chip.component.mjs} +2 -2
  122. package/esm2020/components/chip/lib/components/chip-list/chip-list.component.mjs +21 -0
  123. package/esm2020/components/chip/lib/components/chip-list-row/chip-list-row.component.mjs +21 -0
  124. package/esm2020/components/chip/lib/components/index.mjs +4 -0
  125. package/esm2020/components/dropdown/lib/dropdown.component.mjs +3 -3
  126. package/esm2020/components/dropdown/lib/dropdown.directive.mjs +10 -2
  127. package/esm2020/components/form-field/lib/components/form-group/form-group.component.mjs +3 -3
  128. package/esm2020/components/form-field/lib/form-field.component.mjs +3 -3
  129. package/esm2020/components/form-field/lib/form-field.service.mjs +2 -2
  130. package/esm2020/components/form-field/lib/models/form-field-variant.mjs +2 -1
  131. package/esm2020/components/main-menu/lib/directives/index.mjs +2 -1
  132. package/esm2020/components/main-menu/lib/directives/main-menu-close.directive.mjs +24 -0
  133. package/esm2020/components/main-menu/lib/directives/main-menu-item.directive.mjs +6 -12
  134. package/esm2020/components/main-menu/lib/main-menu.module.mjs +4 -4
  135. package/esm2020/components/main-menu/lib/main-menu.service.mjs +2 -11
  136. package/esm2020/components/menu/lib/directives/menu-item.directive.mjs +3 -3
  137. package/esm2020/components/menu/lib/menu.module.mjs +5 -4
  138. package/esm2020/components/rail-navigation/index.mjs +3 -2
  139. package/esm2020/components/rail-navigation/lib/components/index.mjs +2 -0
  140. package/esm2020/components/rail-navigation/lib/components/{rail-navigation-item.component.mjs → rail-navigation-item/rail-navigation-item.component.mjs} +3 -3
  141. package/esm2020/components/rail-navigation/lib/models/index.mjs +2 -0
  142. package/esm2020/components/rail-navigation/lib/models/rail-navigation-variant.mjs +5 -0
  143. package/esm2020/components/rail-navigation/lib/rail-navigation.component.mjs +19 -11
  144. package/esm2020/components/rail-navigation/lib/rail-navigation.module.mjs +4 -4
  145. package/esm2020/components/select/index.mjs +1 -2
  146. package/esm2020/components/select/lib/components/index.mjs +2 -2
  147. package/esm2020/components/select/lib/components/select-option/select-option.component.mjs +75 -0
  148. package/esm2020/components/select/lib/directives/select-search-field.directive.mjs +9 -21
  149. package/esm2020/components/select/lib/pipes/select-search-filter.pipe.mjs +12 -33
  150. package/esm2020/components/select/lib/select.component.mjs +44 -86
  151. package/esm2020/components/select/lib/select.module.mjs +5 -5
  152. package/esm2020/components/select/lib/select.tokens.mjs +2 -2
  153. package/esm2020/components/table/index.mjs +6 -0
  154. package/esm2020/components/table/lib/components/check-cell/check-cell.component.mjs +29 -0
  155. package/esm2020/components/table/lib/components/header-title/header-title.component.mjs +86 -0
  156. package/esm2020/components/table/lib/components/index.mjs +3 -0
  157. package/esm2020/components/table/lib/directives/index.mjs +3 -0
  158. package/esm2020/components/table/lib/directives/table-cell.directive.mjs +27 -0
  159. package/esm2020/components/table/lib/directives/table-row.directive.mjs +28 -0
  160. package/esm2020/components/table/lib/interfaces/index.mjs +4 -0
  161. package/esm2020/components/table/lib/models/index.mjs +3 -0
  162. package/esm2020/components/table/lib/models/sort-variant.mjs +6 -0
  163. package/esm2020/components/table/lib/models/table-variant.mjs +5 -0
  164. package/esm2020/components/table/lib/table.component.mjs +86 -0
  165. package/esm2020/components/table/lib/table.config.mjs +3 -0
  166. package/esm2020/components/table/lib/table.module.mjs +21 -0
  167. package/esm2020/components/table/odx-angular-components-table.mjs +5 -0
  168. package/esm2020/components/wizard/index.mjs +4 -0
  169. package/esm2020/components/wizard/lib/components/index.mjs +2 -0
  170. package/esm2020/components/wizard/lib/components/wizard-step/wizard-step.component.mjs +73 -0
  171. package/esm2020/components/wizard/lib/wizard.component.mjs +155 -0
  172. package/esm2020/components/wizard/lib/wizard.module.mjs +19 -0
  173. package/esm2020/components/wizard/odx-angular-components-wizard.mjs +5 -0
  174. package/esm2020/internal/decorators/css-component.mjs +1 -1
  175. package/esm2020/internal/decorators/css-modifier.mjs +16 -21
  176. package/esm2020/internal/helpers/get-css-variables.mjs +12 -19
  177. package/esm2020/lib/services/window-ref.mjs +4 -1
  178. package/fesm2015/odx-angular-breakpoints.mjs +111 -0
  179. package/fesm2015/odx-angular-breakpoints.mjs.map +1 -0
  180. package/fesm2015/odx-angular-cdk-autocomplete-control.mjs +164 -0
  181. package/fesm2015/odx-angular-cdk-autocomplete-control.mjs.map +1 -0
  182. package/fesm2015/odx-angular-cdk-expandable.mjs +4 -4
  183. package/fesm2015/odx-angular-cdk-expandable.mjs.map +1 -1
  184. package/fesm2015/odx-angular-cdk-option-control.mjs +55 -0
  185. package/fesm2015/odx-angular-cdk-option-control.mjs.map +1 -0
  186. package/fesm2015/odx-angular-components-autocomplete.mjs +263 -0
  187. package/fesm2015/odx-angular-components-autocomplete.mjs.map +1 -0
  188. package/fesm2015/odx-angular-components-card.mjs +1 -1
  189. package/fesm2015/odx-angular-components-card.mjs.map +1 -1
  190. package/fesm2015/odx-angular-components-checkbox.mjs +1 -1
  191. package/fesm2015/odx-angular-components-checkbox.mjs.map +1 -1
  192. package/fesm2015/odx-angular-components-chip.mjs +35 -5
  193. package/fesm2015/odx-angular-components-chip.mjs.map +1 -1
  194. package/fesm2015/odx-angular-components-dropdown.mjs +11 -3
  195. package/fesm2015/odx-angular-components-dropdown.mjs.map +1 -1
  196. package/fesm2015/odx-angular-components-form-field.mjs +5 -4
  197. package/fesm2015/odx-angular-components-form-field.mjs.map +1 -1
  198. package/fesm2015/odx-angular-components-main-menu.mjs +30 -24
  199. package/fesm2015/odx-angular-components-main-menu.mjs.map +1 -1
  200. package/fesm2015/odx-angular-components-menu.mjs +6 -5
  201. package/fesm2015/odx-angular-components-menu.mjs.map +1 -1
  202. package/fesm2015/odx-angular-components-rail-navigation.mjs +23 -11
  203. package/fesm2015/odx-angular-components-rail-navigation.mjs.map +1 -1
  204. package/fesm2015/odx-angular-components-select.mjs +80 -175
  205. package/fesm2015/odx-angular-components-select.mjs.map +1 -1
  206. package/fesm2015/odx-angular-components-table.mjs +264 -0
  207. package/fesm2015/odx-angular-components-table.mjs.map +1 -0
  208. package/fesm2015/odx-angular-components-wizard.mjs +242 -0
  209. package/fesm2015/odx-angular-components-wizard.mjs.map +1 -0
  210. package/fesm2015/odx-angular-internal.mjs +27 -40
  211. package/fesm2015/odx-angular-internal.mjs.map +1 -1
  212. package/fesm2015/odx-angular.mjs +3 -0
  213. package/fesm2015/odx-angular.mjs.map +1 -1
  214. package/fesm2020/odx-angular-breakpoints.mjs +117 -0
  215. package/fesm2020/odx-angular-breakpoints.mjs.map +1 -0
  216. package/fesm2020/odx-angular-cdk-autocomplete-control.mjs +160 -0
  217. package/fesm2020/odx-angular-cdk-autocomplete-control.mjs.map +1 -0
  218. package/fesm2020/odx-angular-cdk-expandable.mjs +4 -4
  219. package/fesm2020/odx-angular-cdk-expandable.mjs.map +1 -1
  220. package/fesm2020/odx-angular-cdk-option-control.mjs +54 -0
  221. package/fesm2020/odx-angular-cdk-option-control.mjs.map +1 -0
  222. package/fesm2020/odx-angular-components-autocomplete.mjs +254 -0
  223. package/fesm2020/odx-angular-components-autocomplete.mjs.map +1 -0
  224. package/fesm2020/odx-angular-components-card.mjs +1 -1
  225. package/fesm2020/odx-angular-components-card.mjs.map +1 -1
  226. package/fesm2020/odx-angular-components-checkbox.mjs +1 -1
  227. package/fesm2020/odx-angular-components-checkbox.mjs.map +1 -1
  228. package/fesm2020/odx-angular-components-chip.mjs +35 -5
  229. package/fesm2020/odx-angular-components-chip.mjs.map +1 -1
  230. package/fesm2020/odx-angular-components-dropdown.mjs +11 -3
  231. package/fesm2020/odx-angular-components-dropdown.mjs.map +1 -1
  232. package/fesm2020/odx-angular-components-form-field.mjs +5 -4
  233. package/fesm2020/odx-angular-components-form-field.mjs.map +1 -1
  234. package/fesm2020/odx-angular-components-main-menu.mjs +30 -24
  235. package/fesm2020/odx-angular-components-main-menu.mjs.map +1 -1
  236. package/fesm2020/odx-angular-components-menu.mjs +6 -5
  237. package/fesm2020/odx-angular-components-menu.mjs.map +1 -1
  238. package/fesm2020/odx-angular-components-rail-navigation.mjs +23 -11
  239. package/fesm2020/odx-angular-components-rail-navigation.mjs.map +1 -1
  240. package/fesm2020/odx-angular-components-select.mjs +77 -170
  241. package/fesm2020/odx-angular-components-select.mjs.map +1 -1
  242. package/fesm2020/odx-angular-components-table.mjs +259 -0
  243. package/fesm2020/odx-angular-components-table.mjs.map +1 -0
  244. package/fesm2020/odx-angular-components-wizard.mjs +239 -0
  245. package/fesm2020/odx-angular-components-wizard.mjs.map +1 -0
  246. package/fesm2020/odx-angular-internal.mjs +26 -38
  247. package/fesm2020/odx-angular-internal.mjs.map +1 -1
  248. package/fesm2020/odx-angular.mjs +3 -0
  249. package/fesm2020/odx-angular.mjs.map +1 -1
  250. package/internal/decorators/css-component.d.ts +1 -1
  251. package/internal/decorators/css-modifier.d.ts +2 -2
  252. package/internal/helpers/get-css-variables.d.ts +2 -3
  253. package/lib/services/window-ref.d.ts +1 -0
  254. package/package.json +52 -4
  255. package/components/select/lib/abstract/index.d.ts +0 -2
  256. package/components/select/lib/abstract/select-control-option.d.ts +0 -9
  257. package/components/select/lib/abstract/select-control.d.ts +0 -12
  258. package/components/select/lib/components/option/option.component.d.ts +0 -26
  259. package/esm2020/components/select/lib/abstract/index.mjs +0 -3
  260. package/esm2020/components/select/lib/abstract/select-control-option.mjs +0 -2
  261. package/esm2020/components/select/lib/abstract/select-control.mjs +0 -2
  262. package/esm2020/components/select/lib/components/option/option.component.mjs +0 -95
  263. /package/components/rail-navigation/lib/components/{rail-navigation-item.component.d.ts → rail-navigation-item/rail-navigation-item.component.d.ts} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ ## @odx/angular 2.1.1 (2023-07-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * broken release 2.1.0 ([f04938d](https://dev.azure.com/draeger/ODXP/_git/odx-libraries/commit/f04938d5aca6fde5c85471ed01a3cf40cda7c832))
7
+
8
+ # @odx/angular 2.1.0 (2023-07-11)
9
+
10
+ ### Bug Fixes
11
+
12
+ - indeterminate icon ([11d6d49](https://dev.azure.com/draeger/ODXP/_git/odx-libraries/commit/11d6d4948972c49bd4ddfaf4195153ffac234575))
13
+
14
+ ### Features
15
+
16
+ - add breakpoints module ([7475fe7](https://dev.azure.com/draeger/ODXP/_git/odx-libraries/commit/7475fe73bb20c4aeb1e143ec2f82156d8cf6e9e1))
17
+ - new component ([cfa5d43](https://dev.azure.com/draeger/ODXP/_git/odx-libraries/commit/cfa5d4354ac24191da9e794d735511ddf021fef7))
@@ -0,0 +1,3 @@
1
+ # @odx/angular/breakpoints
2
+
3
+ Secondary entry point of `@odx/angular`. It can be used by importing from `@odx/angular/breakpoints`.
@@ -0,0 +1,7 @@
1
+ export * from './lib/breakpoints.config';
2
+ export * from './lib/breakpoints.module';
3
+ export * from './lib/breakpoints.service';
4
+ export * from './lib/breakpoints.typings';
5
+ export * from './lib/directives';
6
+ export * from './lib/helpers';
7
+ export * from './lib/models';
@@ -0,0 +1,21 @@
1
+ export declare const DEFAULT_BREAKPOINTS: {
2
+ readonly "<desktop": string;
3
+ readonly "=desktop": string;
4
+ readonly ">desktop": string;
5
+ readonly "<desktop-s": string;
6
+ readonly "=desktop-s": string;
7
+ readonly ">desktop-s": string;
8
+ readonly "<tablet": string;
9
+ readonly "=tablet": string;
10
+ readonly ">tablet": string;
11
+ readonly "<phone": string;
12
+ readonly "=phone": string;
13
+ readonly ">phone": string;
14
+ readonly "<phone-s": string;
15
+ readonly "=phone-s": string;
16
+ readonly ">phone-s": string;
17
+ };
18
+ export interface BreakpointsConfig {
19
+ breakpoints: Partial<OdxAngular.Breakpoints>;
20
+ }
21
+ export declare const BreakpointsConfig: import("@angular/core").InjectionToken<Partial<BreakpointsConfig>>, BreakpointsDefaultConfig: BreakpointsConfig, injectBreakpointsConfig: () => BreakpointsConfig, provideBreakpointsConfig: <D extends import("@odx/angular/utils").ConfigDependencies<unknown> = import("@odx/angular/utils").ConfigDependencies<BreakpointsConfig>>(config: import("@odx/angular/utils").ConfigProvider<Partial<BreakpointsConfig>, D>) => import("@angular/core").FactoryProvider | import("@angular/core").ValueProvider;
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./directives/match-breakpoints.directive";
3
+ export declare class BreakpointsModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreakpointsModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BreakpointsModule, never, [typeof i1.MatchBreakpointsDirective], [typeof i1.MatchBreakpointsDirective]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<BreakpointsModule>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import { Observable } from 'rxjs';
2
+ import { BreakpointName } from './models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BreakpointsService {
5
+ private readonly breakpointObserver;
6
+ private readonly config;
7
+ observe(breakpoints: BreakpointName[]): Observable<boolean>;
8
+ matches(breakpoints: BreakpointName[]): boolean;
9
+ private getMediaQueries;
10
+ private createBreakpointObserver;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreakpointsService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<BreakpointsService>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import { DEFAULT_BREAKPOINTS } from './breakpoints.config';
2
+ declare global {
3
+ namespace OdxAngular {
4
+ interface Breakpoints extends Record<keyof typeof DEFAULT_BREAKPOINTS, string> {
5
+ }
6
+ }
7
+ }
8
+ export {};
@@ -0,0 +1 @@
1
+ export * from './match-breakpoints.directive';
@@ -0,0 +1,16 @@
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import { BreakpointName } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MatchBreakpointsDirective implements OnInit {
5
+ private readonly breakpoints$$;
6
+ private readonly breakpointsService;
7
+ private readonly takeUntilDestroyed;
8
+ private readonly template;
9
+ private readonly viewContainer;
10
+ set breakpoints(value: BreakpointName | BreakpointName[] | null | undefined);
11
+ elseTemplate?: TemplateRef<unknown> | null;
12
+ ngOnInit(): void;
13
+ private render;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchBreakpointsDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchBreakpointsDirective, "ng-template[odxMatchBreakpoints]", never, { "breakpoints": "odxMatchBreakpoints"; "elseTemplate": "odxMatchBreakpointsElse"; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,4 @@
1
+ type BreakpointOperators = '<' | '=' | '>';
2
+ type BreakpointConfig<T extends string> = Record<`${BreakpointOperators}${T}`, string>;
3
+ export declare function configureBreakpoint<T extends string>(name: T, min: number, max: number): BreakpointConfig<T>;
4
+ export {};
@@ -0,0 +1 @@
1
+ export * from './configure-breakpoint';
@@ -0,0 +1,5 @@
1
+ export type BreakpointName = keyof OdxAngular.Breakpoints;
2
+ export interface Breakpoint {
3
+ min: number;
4
+ max: number;
5
+ }
@@ -0,0 +1 @@
1
+ export * from './breakpoint';
@@ -0,0 +1,3 @@
1
+ # @odx/angular/cdk/autocomplete-control
2
+
3
+ Secondary entry point of `@odx/angular`. It can be used by importing from `@odx/angular/cdk/autocomplete-control`.
@@ -0,0 +1,3 @@
1
+ export * from './lib/abstract';
2
+ export * from './lib/autocomplete-control';
3
+ export * from './lib/pipes';
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare abstract class BaseSearchFieldDirective {
3
+ protected readonly takeUntilDestroyed: <T>() => import("rxjs").MonoTypeOperatorFunction<T>;
4
+ readonly element: import("@angular/core").ElementRef<HTMLInputElement>;
5
+ valueChange$: import("rxjs").Observable<string>;
6
+ get nativeElementValue(): string;
7
+ set nativeElementValue(value: string);
8
+ focus(): void;
9
+ blur(): void;
10
+ reset(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseSearchFieldDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseSearchFieldDirective, never, never, {}, {}, never, never, true, never>;
13
+ }
@@ -0,0 +1 @@
1
+ export * from './base-search-field.directive';
@@ -0,0 +1,39 @@
1
+ import { ActiveDescendantKeyManager } from '@angular/cdk/a11y';
2
+ import { BooleanInput } from '@angular/cdk/coercion';
3
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter, QueryList } from '@angular/core';
4
+ import { StringifyFn } from '@odx/angular';
5
+ import { CustomFormControl } from '@odx/angular/cdk/custom-form-control';
6
+ import { OptionControl } from '@odx/angular/cdk/option-control';
7
+ import { DropdownDirective } from '@odx/angular/components/dropdown';
8
+ import { BaseSearchFieldDirective } from './abstract';
9
+ import * as i0 from "@angular/core";
10
+ export declare abstract class AutocompleteControl<T> extends CustomFormControl<T | null> implements AfterViewInit {
11
+ static ngAcceptInputType_isLoading: BooleanInput;
12
+ protected keyManager?: ActiveDescendantKeyManager<OptionControl<T>>;
13
+ protected smoothScrollEnabled: boolean;
14
+ protected readonly dropdown?: DropdownDirective;
15
+ protected abstract readonly options?: QueryList<OptionControl<T>>;
16
+ protected readonly takeUntilDestroyed: <T_1>() => import("rxjs").MonoTypeOperatorFunction<T_1>;
17
+ protected readonly changeDetector: ChangeDetectorRef;
18
+ abstract searchField?: BaseSearchFieldDirective;
19
+ readonly element: import("@angular/core").ElementRef<HTMLElement>;
20
+ get hasOptions(): boolean;
21
+ get isOpen(): boolean;
22
+ isLoading: boolean;
23
+ stringify?: StringifyFn<unknown>;
24
+ optionSelected: EventEmitter<T>;
25
+ constructor();
26
+ ngAfterViewInit(): void;
27
+ scrollOptionIntoView({ element }: OptionControl<T>): void;
28
+ protected abstract handleQueryListOption(options: QueryList<OptionControl<T>>): void;
29
+ protected abstract handleSearchFieldChanges(): void;
30
+ protected abstract activateSelectedOption(): void;
31
+ protected initKeyManager(options: QueryList<OptionControl<T>>): void;
32
+ protected disableSmoothScroll(): void;
33
+ protected enableSmoothScroll(): void;
34
+ protected openDropdown(): void;
35
+ protected closeDropdown(): void;
36
+ protected handleFocusOut(event: FocusEvent): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteControl<any>, never>;
38
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutocompleteControl<any>, never, never, { "isLoading": "isLoading"; "stringify": "stringify"; }, { "optionSelected": "optionSelected"; }, never, never, true, never>;
39
+ }
@@ -0,0 +1,11 @@
1
+ import { StringifyFn, StringSearchHandler } from '@odx/angular';
2
+ import { BaseSearchFieldDirective } from '../abstract';
3
+ export declare abstract class BaseSearchFilterPipe {
4
+ private readonly stringSearchHandler;
5
+ protected readonly stringify: StringifyFn<unknown>;
6
+ transform<T>(items: T[] | null, searchHandler?: StringSearchHandler): T[] | null;
7
+ protected abstract get searchField(): BaseSearchFieldDirective | undefined;
8
+ protected abstract get searchBy(): StringifyFn<unknown>;
9
+ protected abstract queryHandler(query: string): string;
10
+ private filter;
11
+ }
@@ -0,0 +1 @@
1
+ export * from './base-search-filter-pipe';
@@ -9,7 +9,7 @@ export declare class ExpandableItemDirective implements ExpandableItem {
9
9
  readonly id: string;
10
10
  set expanded(value: boolean);
11
11
  get expanded(): boolean;
12
- toggle(): void;
12
+ toggle(forceState?: boolean): void;
13
13
  open(): void;
14
14
  close(): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<ExpandableItemDirective, never>;
@@ -0,0 +1,3 @@
1
+ # @odx/angular/cdk/option-control
2
+
3
+ Secondary entry point of `@odx/angular`. It can be used by importing from `@odx/angular/cdk/option-control`.
@@ -0,0 +1 @@
1
+ export * from './lib/option-control';
@@ -0,0 +1,17 @@
1
+ import { Highlightable } from '@angular/cdk/a11y';
2
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class OptionControl<T> implements Highlightable {
5
+ protected readonly takeUntilDestroyed: <T_1>() => import("rxjs").MonoTypeOperatorFunction<T_1>;
6
+ protected readonly cdr: ChangeDetectorRef;
7
+ protected isActive: boolean;
8
+ value: T | null;
9
+ readonly element: ElementRef<HTMLElement>;
10
+ setActiveStyles(): void;
11
+ setInactiveStyles(): void;
12
+ getLabel(): string;
13
+ protected abstract selectOption(): void;
14
+ protected select(event: Event): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<OptionControl<any>, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OptionControl<any>, never, never, { "value": "value"; }, {}, never, never, true, never>;
17
+ }
@@ -0,0 +1,3 @@
1
+ # @odx/angular/autocomplete
2
+
3
+ Secondary entry point of `@odx/angular`. It can be used by importing from `@odx/angular/autocomplete`.
@@ -0,0 +1,6 @@
1
+ export * from './lib/autocomplete.component';
2
+ export * from './lib/autocomplete.module';
3
+ export * from './lib/autocomplete.tokens';
4
+ export * from './lib/components';
5
+ export * from './lib/directives';
6
+ export * from './lib/pipes';
@@ -0,0 +1,30 @@
1
+ import { AfterViewInit, QueryList } from '@angular/core';
2
+ import { ClickOutsideDirective } from '@odx/angular';
3
+ import { AutocompleteControl } from '@odx/angular/cdk/autocomplete-control';
4
+ import { AutocompleteOptionComponent } from './components';
5
+ import { AutocompleteSearchFieldDirective } from './directives';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "@odx/angular";
8
+ export declare class AutocompleteComponent<T = unknown> extends AutocompleteControl<T | null> implements AfterViewInit {
9
+ private readonly defaultActiveOptionIndex;
10
+ protected readonly clickOutsideDirective: ClickOutsideDirective;
11
+ options?: QueryList<AutocompleteOptionComponent<T>>;
12
+ searchField?: AutocompleteSearchFieldDirective;
13
+ readonly dropdownOpenTriggers: never[];
14
+ ngAfterViewInit(): void;
15
+ selectOption(option?: AutocompleteOptionComponent<T> | null): void;
16
+ resetSearchField(): void;
17
+ protected handleQueryListOption(options: QueryList<AutocompleteOptionComponent<T>>): void;
18
+ protected handleSearchFieldChanges(): void;
19
+ protected handleClickOutside(): void;
20
+ protected clickOutside(): void;
21
+ protected handleSearchFieldValueChange(): void;
22
+ protected handleClickEvent(): void;
23
+ protected handleKeyboardEvent(event: KeyboardEvent): void;
24
+ protected activateSelectedOption(): void;
25
+ protected onDropdownBeforeOpen(): void;
26
+ private updateSearchField;
27
+ private blurSelectSearchField;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent<any>, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent<any>, "odx-autocomplete", never, {}, {}, ["searchField", "options"], ["input[odxAutocompleteControl]", "*"], true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }]>;
30
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./autocomplete.component";
3
+ import * as i2 from "./directives/autocomplete-search-field.directive";
4
+ import * as i3 from "./pipes/autocomplete-search-filter.pipe";
5
+ import * as i4 from "./components/option/autocomplete-option.component";
6
+ import * as i5 from "@odx/angular";
7
+ export declare class AutocompleteModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AutocompleteModule, never, [typeof i1.AutocompleteComponent, typeof i2.AutocompleteSearchFieldDirective, typeof i3.AutocompleteSearchFilterPipe, typeof i4.AutocompleteOptionComponent], [typeof i5.CoreModule, typeof i1.AutocompleteComponent, typeof i2.AutocompleteSearchFieldDirective, typeof i3.AutocompleteSearchFilterPipe, typeof i4.AutocompleteOptionComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<AutocompleteModule>;
11
+ }
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { AutocompleteComponent } from './autocomplete.component';
3
+ export declare const AUTOCOMPLETE_CONTROL: InjectionToken<AutocompleteComponent<unknown>>;
@@ -0,0 +1 @@
1
+ export * from './option/autocomplete-option.component';
@@ -0,0 +1,9 @@
1
+ import { OptionControl } from '@odx/angular/cdk/option-control';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AutocompleteOptionComponent<T> extends OptionControl<T> {
4
+ protected readonly autocompleteControl: import("@odx/angular/components/autocomplete").AutocompleteComponent<unknown>;
5
+ setActiveStyles(): void;
6
+ protected selectOption(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteOptionComponent<any>, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteOptionComponent<any>, "odx-autocomplete-option", never, {}, {}, never, ["*"], true, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ReadonlyController } from '@odx/angular';
2
+ import { BaseSearchFieldDirective } from '@odx/angular/cdk/autocomplete-control';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@odx/angular";
5
+ export declare class AutocompleteSearchFieldDirective extends BaseSearchFieldDirective {
6
+ protected readonly readonlyController: ReadonlyController | null;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteSearchFieldDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutocompleteSearchFieldDirective, "input[odxAutocompleteControl]", never, {}, {}, never, never, true, [{ directive: typeof i1.WithTabIndex; inputs: {}; outputs: {}; }]>;
9
+ }
@@ -0,0 +1 @@
1
+ export * from './autocomplete-search-field.directive';
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { StringifyFn } from '@odx/angular';
3
+ import { BaseSearchFieldDirective, BaseSearchFilterPipe } from '@odx/angular/cdk/autocomplete-control';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AutocompleteSearchFilterPipe extends BaseSearchFilterPipe implements PipeTransform {
6
+ protected readonly hostController: import("@odx/angular/components/autocomplete").AutocompleteComponent<unknown> | null;
7
+ protected get searchField(): BaseSearchFieldDirective | undefined;
8
+ protected queryHandler(query: string): string;
9
+ protected get searchBy(): StringifyFn<unknown>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteSearchFilterPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<AutocompleteSearchFilterPipe, "odxAutocompleteSearchFilter", true>;
12
+ }
@@ -0,0 +1 @@
1
+ export * from './autocomplete-search-filter.pipe';
@@ -1,2 +1,2 @@
1
- export * from './lib/chip.component';
1
+ export * from './lib/components';
2
2
  export * from './lib/models';
@@ -1,6 +1,6 @@
1
1
  import { BooleanInput } from '@angular/cdk/coercion';
2
2
  import { EventEmitter } from '@angular/core';
3
- import { ChipSize, ChipVariant } from './models';
3
+ import { ChipSize, ChipVariant } from '../../models';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ChipComponent {
6
6
  static ngAcceptInputType_removable: BooleanInput;
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ChipListComponent {
3
+ readonly element: import("@angular/core").ElementRef<HTMLElement>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipListComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipListComponent, "odx-chip-list", never, {}, {}, never, ["odx-chip-list-row", "odx-autocomplete"], true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ChipListRowComponent {
3
+ readonly element: import("@angular/core").ElementRef<HTMLElement>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipListRowComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipListRowComponent, "odx-chip-list-row", never, {}, {}, never, ["odx-chip"], true, never>;
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from './chip-list-row/chip-list-row.component';
2
+ export * from './chip-list/chip-list.component';
3
+ export * from './chip/chip.component';
@@ -20,6 +20,7 @@ export declare class DropdownDirective implements AfterViewInit, OnChanges, OnDe
20
20
  content?: DynamicContent | null;
21
21
  disabled: boolean;
22
22
  showLoader: boolean;
23
+ clickOutsideActive: boolean;
23
24
  options?: Partial<DropdownOptions> | null;
24
25
  referenceElement?: HTMLElement | null;
25
26
  triggerElement?: HTMLElement | null;
@@ -38,5 +39,5 @@ export declare class DropdownDirective implements AfterViewInit, OnChanges, OnDe
38
39
  close(event?: Event): void;
39
40
  private createOverlayOptions;
40
41
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
41
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[odxDropdown]", ["odxDropdown"], { "content": "odxDropdown"; "disabled": "odxDropdownDisabled"; "showLoader": "odxDropdownShowLoader"; "options": "odxDropdownOptions"; "referenceElement": "odxDropdownReferenceElement"; "triggerElement": "odxDropdownTriggerElement"; "host": "odxDropdownHost"; "openTrigger": "odxDropdownOpenTrigger"; "closeTrigger": "odxDropdownCloseTrigger"; }, { "beforeOpen": "odxDropdownBeforeOpen"; "afterOpen": "odxDropdownAfterOpen"; "beforeClose": "odxDropdownBeforeClose"; "afterClose": "odxDropdownAfterClose"; }, never, never, true, never>;
42
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[odxDropdown]", ["odxDropdown"], { "content": "odxDropdown"; "disabled": "odxDropdownDisabled"; "showLoader": "odxDropdownShowLoader"; "clickOutsideActive": "odxDropdownClickOutsideActive"; "options": "odxDropdownOptions"; "referenceElement": "odxDropdownReferenceElement"; "triggerElement": "odxDropdownTriggerElement"; "host": "odxDropdownHost"; "openTrigger": "odxDropdownOpenTrigger"; "closeTrigger": "odxDropdownCloseTrigger"; }, { "beforeOpen": "odxDropdownBeforeOpen"; "afterOpen": "odxDropdownAfterOpen"; "beforeClose": "odxDropdownBeforeClose"; "afterClose": "odxDropdownAfterClose"; }, never, never, true, never>;
42
43
  }
@@ -2,4 +2,5 @@ export type FormFieldVariant = (typeof FormFieldVariant)[keyof typeof FormFieldV
2
2
  export declare const FormFieldVariant: {
3
3
  readonly FULL: "full";
4
4
  readonly SIMPLE: "simple";
5
+ readonly HORIZONTAL: "horizontal";
5
6
  };
@@ -1,2 +1,3 @@
1
1
  export * from './main-menu-button.directive';
2
+ export * from './main-menu-close.directive';
2
3
  export * from './main-menu-item.directive';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MainMenuCloseDirective {
3
+ private readonly mainMenu;
4
+ protected onClick(): void;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuCloseDirective, never>;
6
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuCloseDirective, "[odxMainMenuClose]", never, {}, {}, never, never, true, never>;
7
+ }
@@ -2,13 +2,12 @@ import { BooleanInput } from '@angular/cdk/coercion';
2
2
  import { RouterLinkActive } from '@angular/router';
3
3
  import * as i0 from "@angular/core";
4
4
  import * as i1 from "@odx/angular";
5
+ import * as i2 from "./main-menu-close.directive";
5
6
  export declare class MainMenuItemDirective {
6
7
  static readonly ngAcceptInputType_isSelected: BooleanInput;
7
- private readonly mainMenu;
8
8
  protected readonly routerLinkActive: RouterLinkActive | null;
9
- readonly element: import("@angular/core").ElementRef<HTMLLinkElement>;
9
+ readonly element: import("@angular/core").ElementRef<HTMLElement>;
10
10
  isSelected: boolean;
11
- protected onClick(): void;
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuItemDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "[odxMainMenuItem]", never, { "isSelected": "isSelected"; }, {}, never, never, true, [{ directive: typeof i1.WithDisabledState; inputs: {}; outputs: {}; }, { directive: typeof i1.WithTabIndex; inputs: {}; outputs: {}; }]>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "[odxMainMenuItem]", never, { "isSelected": "isSelected"; }, {}, never, never, true, [{ directive: typeof i1.WithDisabledState; inputs: {}; outputs: {}; }, { directive: typeof i1.WithTabIndex; inputs: {}; outputs: {}; }, { directive: typeof i2.MainMenuCloseDirective; inputs: {}; outputs: {}; }]>;
14
13
  }
@@ -3,9 +3,10 @@ import * as i1 from "@odx/angular/components/link";
3
3
  import * as i2 from "./main-menu.component";
4
4
  import * as i3 from "./directives/main-menu-item.directive";
5
5
  import * as i4 from "./directives/main-menu-button.directive";
6
- import * as i5 from "@odx/angular";
6
+ import * as i5 from "./directives/main-menu-close.directive";
7
+ import * as i6 from "@odx/angular";
7
8
  export declare class MainMenuModule {
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<MainMenuModule, never, [typeof i1.LinkDirective, typeof i2.MainMenuComponent, typeof i3.MainMenuItemDirective, typeof i4.MainMenuButtonDirective], [typeof i5.CoreModule, typeof i1.LinkDirective, typeof i2.MainMenuComponent, typeof i3.MainMenuItemDirective, typeof i4.MainMenuButtonDirective]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MainMenuModule, never, [typeof i1.LinkDirective, typeof i2.MainMenuComponent, typeof i3.MainMenuItemDirective, typeof i4.MainMenuButtonDirective, typeof i5.MainMenuCloseDirective], [typeof i6.CoreModule, typeof i1.LinkDirective, typeof i2.MainMenuComponent, typeof i3.MainMenuItemDirective, typeof i4.MainMenuButtonDirective, typeof i5.MainMenuCloseDirective]>;
10
11
  static ɵinj: i0.ɵɵInjectorDeclaration<MainMenuModule>;
11
12
  }
@@ -4,5 +4,5 @@ export declare class MenuItemDirective {
4
4
  readonly element: import("@angular/core").ElementRef<HTMLButtonElement | HTMLLinkElement>;
5
5
  protected selectItem(): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemDirective, "odx-menu a[odxButton], odx-menu button[odxButton]", never, {}, {}, never, never, true, [{ directive: typeof i1.ListFocusManagerOptionDirective; inputs: {}; outputs: {}; }]>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemDirective, "a[odxButton][odxMenuItem], button[odxButton][odxMenuItem]", never, {}, {}, never, never, true, [{ directive: typeof i1.ListFocusManagerOptionDirective; inputs: {}; outputs: {}; }]>;
8
8
  }
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./menu.component";
3
3
  import * as i2 from "./menu.directive";
4
4
  import * as i3 from "./directives/menu-item.directive";
5
- import * as i4 from "@odx/angular";
5
+ import * as i4 from "@odx/angular/components/icon";
6
+ import * as i5 from "@odx/angular";
6
7
  export declare class MenuModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, never, [typeof i1.MenuComponent, typeof i2.MenuDirective, typeof i3.MenuItemDirective], [typeof i4.CoreModule, typeof i1.MenuComponent, typeof i2.MenuDirective, typeof i3.MenuItemDirective]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, never, [typeof i1.MenuComponent, typeof i2.MenuDirective, typeof i3.MenuItemDirective, typeof i4.IconComponent], [typeof i5.CoreModule, typeof i1.MenuComponent, typeof i2.MenuDirective, typeof i3.MenuItemDirective, typeof i4.IconComponent]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
10
11
  }
@@ -1,3 +1,4 @@
1
- export * from './lib/components/rail-navigation-item.component';
1
+ export * from './lib/components';
2
+ export * from './lib/models';
2
3
  export * from './lib/rail-navigation.component';
3
4
  export * from './lib/rail-navigation.module';
@@ -0,0 +1 @@
1
+ export * from './rail-navigation-item/rail-navigation-item.component';
@@ -0,0 +1 @@
1
+ export * from './rail-navigation-variant';
@@ -0,0 +1,5 @@
1
+ export type RailNavigationVariant = (typeof RailNavigationVariant)[keyof typeof RailNavigationVariant];
2
+ export declare const RailNavigationVariant: {
3
+ readonly DEFAULT: "default";
4
+ readonly BAR: "bar";
5
+ };
@@ -1,14 +1,16 @@
1
1
  import { BooleanInput } from '@angular/cdk/coercion';
2
2
  import { EventEmitter } from '@angular/core';
3
+ import { RailNavigationVariant } from './models';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class RailNavigationComponent {
5
6
  static ngAcceptInputType_isOpen: BooleanInput;
6
7
  readonly element: import("@angular/core").ElementRef<HTMLElement>;
7
8
  isOpen: boolean;
9
+ variant: RailNavigationVariant;
8
10
  isOpenChange: EventEmitter<boolean>;
9
- toggle(): void;
11
+ toggle(forceState?: boolean): void;
10
12
  open(): void;
11
13
  close(): void;
12
14
  static ɵfac: i0.ɵɵFactoryDeclaration<RailNavigationComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<RailNavigationComponent, "odx-rail-navigation", never, { "isOpen": "isOpen"; }, { "isOpenChange": "isOpenChange"; }, never, ["*"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<RailNavigationComponent, "odx-rail-navigation", never, { "isOpen": "isOpen"; "variant": "variant"; }, { "isOpenChange": "isOpenChange"; }, never, ["*"], true, never>;
14
16
  }
@@ -1,9 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./rail-navigation.component";
3
- import * as i2 from "./components/rail-navigation-item.component";
3
+ import * as i2 from "./components/rail-navigation-item/rail-navigation-item.component";
4
4
  import * as i3 from "@odx/angular";
5
5
  export declare class RailNavigationModule {
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<RailNavigationModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<RailNavigationModule, never, [typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent], [typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent, typeof i3.CoreModule]>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RailNavigationModule, never, [typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent], [typeof i3.CoreModule, typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent]>;
8
8
  static ɵinj: i0.ɵɵInjectorDeclaration<RailNavigationModule>;
9
9
  }
@@ -1,4 +1,3 @@
1
- export * from './lib/abstract';
2
1
  export * from './lib/components';
3
2
  export * from './lib/directives';
4
3
  export * from './lib/pipes';
@@ -1 +1 @@
1
- export * from './option/option.component';
1
+ export * from './select-option/select-option.component';
@@ -0,0 +1,19 @@
1
+ import { BooleanInput } from '@angular/cdk/coercion';
2
+ import { OnInit } from '@angular/core';
3
+ import { OptionControl } from '@odx/angular/cdk/option-control';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SelectOptionComponent<T = unknown> extends OptionControl<T> implements OnInit {
6
+ static ngAcceptInputType_notFoundMessage: BooleanInput;
7
+ private readonly disabledController;
8
+ protected readonly selectControl: import("@odx/angular/components/select").SelectComponent<unknown>;
9
+ isSelected: boolean;
10
+ notFoundMessage: boolean;
11
+ get disabled(): boolean;
12
+ constructor();
13
+ ngOnInit(): void;
14
+ setActiveStyles(): void;
15
+ switchCheckbox(): void;
16
+ protected selectOption(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectOptionComponent<any>, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectOptionComponent<any>, "odx-select-option, odx-option", never, { "notFoundMessage": "notFoundMessage"; }, {}, never, ["*"], true, never>;
19
+ }
@@ -1,13 +1,9 @@
1
+ import { BaseSearchFieldDirective } from '@odx/angular/cdk/autocomplete-control';
1
2
  import { DynamicContent } from '@odx/angular/cdk/dynamic-view';
2
3
  import * as i0 from "@angular/core";
3
- export declare class SelectSearchFieldDirective {
4
- private readonly takeUntilDestroyed;
5
- readonly element: import("@angular/core").ElementRef<HTMLInputElement>;
4
+ export declare class SelectSearchFieldDirective extends BaseSearchFieldDirective {
6
5
  notFoundContent: DynamicContent | null;
7
- valueChange$: import("rxjs").Observable<string>;
8
- reset(): void;
9
- focus(): void;
10
- getValue(): string;
6
+ handleDelete(): void;
11
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectSearchFieldDirective, never>;
12
8
  static ɵdir: i0.ɵɵDirectiveDeclaration<SelectSearchFieldDirective, "input[odxSelectSearchField]", never, { "notFoundContent": "odxSelectSearchField"; }, {}, never, never, true, never>;
13
9
  }