@angular/cdk 14.0.0-next.7 → 14.0.0-rc.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 (473) hide show
  1. package/a11y/_index.scss +11 -0
  2. package/a11y/index.d.ts +1119 -5
  3. package/a11y-prebuilt.css +1 -1
  4. package/accordion/index.d.ts +108 -6
  5. package/bidi/index.d.ts +77 -5
  6. package/clipboard/index.d.ts +112 -5
  7. package/coercion/index.d.ts +64 -5
  8. package/collections/index.d.ts +348 -5
  9. package/dialog/index.d.ts +410 -0
  10. package/drag-drop/index.d.ts +1456 -5
  11. package/esm2020/a11y/a11y-module.mjs +5 -5
  12. package/esm2020/a11y/aria-describer/aria-describer.mjs +4 -4
  13. package/esm2020/a11y/focus-monitor/focus-monitor.mjs +16 -14
  14. package/esm2020/a11y/focus-trap/configurable-focus-trap-factory.mjs +4 -4
  15. package/esm2020/a11y/focus-trap/focus-trap-manager.mjs +4 -4
  16. package/esm2020/a11y/focus-trap/focus-trap.mjs +7 -7
  17. package/esm2020/a11y/high-contrast-mode/high-contrast-mode-detector.mjs +10 -10
  18. package/esm2020/a11y/input-modality/input-modality-detector.mjs +4 -4
  19. package/esm2020/a11y/interactivity-checker/interactivity-checker.mjs +4 -4
  20. package/esm2020/a11y/live-announcer/live-announcer.mjs +22 -17
  21. package/esm2020/accordion/accordion-item.mjs +4 -4
  22. package/esm2020/accordion/accordion-module.mjs +5 -5
  23. package/esm2020/accordion/accordion.mjs +4 -4
  24. package/esm2020/bidi/bidi-module.mjs +5 -5
  25. package/esm2020/bidi/dir.mjs +4 -4
  26. package/esm2020/bidi/directionality.mjs +4 -4
  27. package/esm2020/clipboard/clipboard-module.mjs +5 -5
  28. package/esm2020/clipboard/clipboard.mjs +4 -4
  29. package/esm2020/clipboard/copy-to-clipboard.mjs +4 -4
  30. package/esm2020/collections/dispose-view-repeater-strategy.mjs +4 -4
  31. package/esm2020/collections/recycle-view-repeater-strategy.mjs +4 -4
  32. package/esm2020/collections/unique-selection-dispatcher.mjs +4 -4
  33. package/esm2020/dialog/dialog-config.mjs +63 -0
  34. package/esm2020/dialog/dialog-container.mjs +278 -0
  35. package/esm2020/dialog/dialog-injectors.mjs +26 -0
  36. package/esm2020/dialog/dialog-module.mjs +42 -0
  37. package/esm2020/dialog/dialog-ref.mjs +76 -0
  38. package/esm2020/dialog/dialog.mjs +298 -0
  39. package/esm2020/dialog/dialog_public_index.mjs +5 -0
  40. package/esm2020/dialog/index.mjs +9 -0
  41. package/esm2020/dialog/public-api.mjs +14 -0
  42. package/esm2020/drag-drop/directives/drag-handle.mjs +4 -4
  43. package/esm2020/drag-drop/directives/drag-placeholder.mjs +4 -4
  44. package/esm2020/drag-drop/directives/drag-preview.mjs +4 -4
  45. package/esm2020/drag-drop/directives/drag.mjs +11 -4
  46. package/esm2020/drag-drop/directives/drop-list-group.mjs +4 -4
  47. package/esm2020/drag-drop/directives/drop-list.mjs +4 -4
  48. package/esm2020/drag-drop/drag-drop-module.mjs +5 -5
  49. package/esm2020/drag-drop/drag-drop-registry.mjs +4 -4
  50. package/esm2020/drag-drop/drag-drop.mjs +4 -4
  51. package/esm2020/drag-drop/drop-list-ref.mjs +23 -23
  52. package/esm2020/layout/breakpoints-observer.mjs +4 -4
  53. package/esm2020/layout/layout-module.mjs +5 -5
  54. package/esm2020/layout/media-matcher.mjs +4 -4
  55. package/esm2020/menu/context-menu-trigger.mjs +229 -0
  56. package/esm2020/menu/index.mjs +9 -0
  57. package/esm2020/menu/menu-aim.mjs +204 -0
  58. package/esm2020/menu/menu-bar.mjs +159 -0
  59. package/esm2020/menu/menu-base.mjs +203 -0
  60. package/esm2020/menu/menu-errors.mjs +22 -0
  61. package/esm2020/menu/menu-group.mjs +30 -0
  62. package/esm2020/menu/menu-interface.mjs +11 -0
  63. package/esm2020/menu/menu-item-checkbox.mjs +48 -0
  64. package/esm2020/menu/menu-item-radio.mjs +114 -0
  65. package/esm2020/menu/menu-item-selectable.mjs +42 -0
  66. package/esm2020/menu/menu-item.mjs +289 -0
  67. package/esm2020/menu/menu-module.mjs +62 -0
  68. package/esm2020/menu/menu-stack.mjs +156 -0
  69. package/esm2020/menu/menu-trigger-base.mjs +114 -0
  70. package/esm2020/menu/menu-trigger.mjs +304 -0
  71. package/esm2020/menu/menu.mjs +168 -0
  72. package/esm2020/menu/menu_public_index.mjs +5 -0
  73. package/esm2020/menu/pointer-focus-tracker.mjs +51 -0
  74. package/esm2020/menu/public-api.mjs +24 -0
  75. package/esm2020/observers/observe-content.mjs +14 -14
  76. package/esm2020/overlay/dispatchers/base-overlay-dispatcher.mjs +4 -4
  77. package/esm2020/overlay/dispatchers/overlay-keyboard-dispatcher.mjs +4 -4
  78. package/esm2020/overlay/dispatchers/overlay-outside-click-dispatcher.mjs +4 -4
  79. package/esm2020/overlay/fullscreen-overlay-container.mjs +4 -4
  80. package/esm2020/overlay/overlay-container.mjs +4 -4
  81. package/esm2020/overlay/overlay-directives.mjs +7 -7
  82. package/esm2020/overlay/overlay-module.mjs +5 -5
  83. package/esm2020/overlay/overlay-ref.mjs +14 -5
  84. package/esm2020/overlay/overlay.mjs +14 -8
  85. package/esm2020/overlay/position/flexible-connected-position-strategy.mjs +13 -1
  86. package/esm2020/overlay/position/overlay-position-builder.mjs +4 -4
  87. package/esm2020/overlay/public-api.mjs +2 -2
  88. package/esm2020/overlay/scroll/scroll-strategy-options.mjs +4 -4
  89. package/esm2020/platform/features/scrolling.mjs +4 -4
  90. package/esm2020/platform/platform-module.mjs +5 -5
  91. package/esm2020/platform/platform.mjs +4 -4
  92. package/esm2020/portal/dom-portal-outlet.mjs +26 -4
  93. package/esm2020/portal/portal-directives.mjs +17 -17
  94. package/esm2020/scrolling/fixed-size-virtual-scroll.mjs +4 -4
  95. package/esm2020/scrolling/scroll-dispatcher.mjs +4 -4
  96. package/esm2020/scrolling/scrollable.mjs +9 -9
  97. package/esm2020/scrolling/scrolling-module.mjs +9 -9
  98. package/esm2020/scrolling/viewport-ruler.mjs +4 -4
  99. package/esm2020/scrolling/virtual-for-of.mjs +7 -5
  100. package/esm2020/scrolling/virtual-scroll-viewport.mjs +6 -6
  101. package/esm2020/stepper/step-header.mjs +4 -4
  102. package/esm2020/stepper/step-label.mjs +4 -4
  103. package/esm2020/stepper/stepper-button.mjs +7 -7
  104. package/esm2020/stepper/stepper-module.mjs +5 -5
  105. package/esm2020/stepper/stepper.mjs +7 -7
  106. package/esm2020/table/cell.mjs +22 -22
  107. package/esm2020/table/coalesced-style-scheduler.mjs +4 -4
  108. package/esm2020/table/row.mjs +28 -28
  109. package/esm2020/table/table-module.mjs +5 -5
  110. package/esm2020/table/table.mjs +22 -22
  111. package/esm2020/table/text-column.mjs +5 -5
  112. package/esm2020/testing/selenium-webdriver/selenium-web-driver-harness-environment.mjs +1 -1
  113. package/esm2020/testing/test-element.mjs +1 -1
  114. package/esm2020/testing/testbed/fake-events/type-in-element.mjs +2 -2
  115. package/esm2020/text-field/autofill.mjs +7 -7
  116. package/esm2020/text-field/autosize.mjs +4 -4
  117. package/esm2020/text-field/text-field-module.mjs +5 -5
  118. package/esm2020/tree/nested-node.mjs +4 -4
  119. package/esm2020/tree/node.mjs +4 -4
  120. package/esm2020/tree/outlet.mjs +4 -4
  121. package/esm2020/tree/padding.mjs +4 -4
  122. package/esm2020/tree/toggle.mjs +4 -4
  123. package/esm2020/tree/tree-module.mjs +5 -5
  124. package/esm2020/tree/tree.mjs +7 -7
  125. package/esm2020/version.mjs +1 -1
  126. package/fesm2015/a11y.mjs +71 -64
  127. package/fesm2015/a11y.mjs.map +1 -1
  128. package/fesm2015/accordion.mjs +10 -10
  129. package/fesm2015/accordion.mjs.map +1 -1
  130. package/fesm2015/bidi.mjs +10 -10
  131. package/fesm2015/bidi.mjs.map +1 -1
  132. package/fesm2015/cdk.mjs +1 -1
  133. package/fesm2015/cdk.mjs.map +1 -1
  134. package/fesm2015/clipboard.mjs +10 -10
  135. package/fesm2015/clipboard.mjs.map +1 -1
  136. package/fesm2015/collections.mjs +9 -9
  137. package/fesm2015/collections.mjs.map +1 -1
  138. package/fesm2015/dialog.mjs +780 -0
  139. package/fesm2015/dialog.mjs.map +1 -0
  140. package/fesm2015/drag-drop.mjs +57 -50
  141. package/fesm2015/drag-drop.mjs.map +1 -1
  142. package/fesm2015/layout.mjs +10 -10
  143. package/fesm2015/layout.mjs.map +1 -1
  144. package/fesm2015/menu.mjs +2135 -0
  145. package/fesm2015/menu.mjs.map +1 -0
  146. package/fesm2015/observers.mjs +13 -13
  147. package/fesm2015/observers.mjs.map +1 -1
  148. package/fesm2015/overlay.mjs +70 -43
  149. package/fesm2015/overlay.mjs.map +1 -1
  150. package/fesm2015/platform.mjs +10 -10
  151. package/fesm2015/platform.mjs.map +1 -1
  152. package/fesm2015/portal.mjs +41 -20
  153. package/fesm2015/portal.mjs.map +1 -1
  154. package/fesm2015/scrolling.mjs +36 -34
  155. package/fesm2015/scrolling.mjs.map +1 -1
  156. package/fesm2015/stepper.mjs +22 -22
  157. package/fesm2015/stepper.mjs.map +1 -1
  158. package/fesm2015/table.mjs +80 -80
  159. package/fesm2015/table.mjs.map +1 -1
  160. package/fesm2015/testing/selenium-webdriver.mjs.map +1 -1
  161. package/fesm2015/testing/testbed.mjs +1 -1
  162. package/fesm2015/testing/testbed.mjs.map +1 -1
  163. package/fesm2015/testing.mjs.map +1 -1
  164. package/fesm2015/text-field.mjs +13 -13
  165. package/fesm2015/text-field.mjs.map +1 -1
  166. package/fesm2015/tree.mjs +25 -25
  167. package/fesm2015/tree.mjs.map +1 -1
  168. package/fesm2020/a11y.mjs +70 -63
  169. package/fesm2020/a11y.mjs.map +1 -1
  170. package/fesm2020/accordion.mjs +10 -10
  171. package/fesm2020/accordion.mjs.map +1 -1
  172. package/fesm2020/bidi.mjs +10 -10
  173. package/fesm2020/bidi.mjs.map +1 -1
  174. package/fesm2020/cdk.mjs +1 -1
  175. package/fesm2020/cdk.mjs.map +1 -1
  176. package/fesm2020/clipboard.mjs +10 -10
  177. package/fesm2020/clipboard.mjs.map +1 -1
  178. package/fesm2020/collections.mjs +9 -9
  179. package/fesm2020/collections.mjs.map +1 -1
  180. package/fesm2020/dialog.mjs +784 -0
  181. package/fesm2020/dialog.mjs.map +1 -0
  182. package/fesm2020/drag-drop.mjs +57 -50
  183. package/fesm2020/drag-drop.mjs.map +1 -1
  184. package/fesm2020/layout.mjs +10 -10
  185. package/fesm2020/layout.mjs.map +1 -1
  186. package/fesm2020/menu.mjs +2108 -0
  187. package/fesm2020/menu.mjs.map +1 -0
  188. package/fesm2020/observers.mjs +13 -13
  189. package/fesm2020/observers.mjs.map +1 -1
  190. package/fesm2020/overlay.mjs +70 -43
  191. package/fesm2020/overlay.mjs.map +1 -1
  192. package/fesm2020/platform.mjs +10 -10
  193. package/fesm2020/platform.mjs.map +1 -1
  194. package/fesm2020/portal.mjs +41 -20
  195. package/fesm2020/portal.mjs.map +1 -1
  196. package/fesm2020/scrolling.mjs +36 -34
  197. package/fesm2020/scrolling.mjs.map +1 -1
  198. package/fesm2020/stepper.mjs +22 -22
  199. package/fesm2020/stepper.mjs.map +1 -1
  200. package/fesm2020/table.mjs +80 -80
  201. package/fesm2020/table.mjs.map +1 -1
  202. package/fesm2020/testing/selenium-webdriver.mjs.map +1 -1
  203. package/fesm2020/testing/testbed.mjs +1 -1
  204. package/fesm2020/testing/testbed.mjs.map +1 -1
  205. package/fesm2020/testing.mjs.map +1 -1
  206. package/fesm2020/text-field.mjs +13 -13
  207. package/fesm2020/text-field.mjs.map +1 -1
  208. package/fesm2020/tree.mjs +25 -25
  209. package/fesm2020/tree.mjs.map +1 -1
  210. package/index.d.ts +6 -8
  211. package/keycodes/index.d.ts +247 -6
  212. package/layout/index.d.ts +91 -8
  213. package/menu/index.d.ts +992 -0
  214. package/observers/index.d.ts +89 -6
  215. package/overlay/_index.scss +4 -0
  216. package/overlay/index.d.ts +1202 -5
  217. package/overlay-prebuilt.css +1 -1
  218. package/package.json +34 -18
  219. package/platform/index.d.ts +104 -6
  220. package/portal/index.d.ts +325 -5
  221. package/schematics/collection.json +2 -1
  222. package/schematics/ng-add/index.js +1 -1
  223. package/schematics/ng-add/index.mjs +1 -1
  224. package/schematics/ng-update/data/constructor-checks.js +3 -3
  225. package/schematics/ng-update/data/constructor-checks.mjs +3 -3
  226. package/schematics/utils/build-component.js +2 -2
  227. package/schematics/utils/build-component.mjs +2 -2
  228. package/schematics/utils/get-project.d.ts +1 -1
  229. package/schematics/utils/get-project.js +7 -2
  230. package/schematics/utils/get-project.mjs +7 -2
  231. package/schematics/utils/schematic-options.js +2 -2
  232. package/schematics/utils/schematic-options.mjs +2 -2
  233. package/scrolling/index.d.ts +647 -6
  234. package/stepper/index.d.ts +328 -6
  235. package/table/index.d.ts +1172 -5
  236. package/testing/index.d.ts +726 -5
  237. package/testing/selenium-webdriver/index.d.ts +134 -8
  238. package/testing/testbed/index.d.ts +161 -8
  239. package/text-field/index.d.ts +175 -6
  240. package/text-field-prebuilt.css +1 -1
  241. package/tree/index.d.ts +498 -6
  242. package/a11y/a11y-module.d.ts +0 -12
  243. package/a11y/a11y_public_index.d.ts +0 -4
  244. package/a11y/aria-describer/aria-describer.d.ts +0 -101
  245. package/a11y/aria-describer/aria-reference.d.ts +0 -22
  246. package/a11y/fake-event-detection.d.ts +0 -11
  247. package/a11y/focus-monitor/focus-monitor.d.ts +0 -209
  248. package/a11y/focus-trap/configurable-focus-trap-config.d.ts +0 -16
  249. package/a11y/focus-trap/configurable-focus-trap-factory.d.ts +0 -30
  250. package/a11y/focus-trap/configurable-focus-trap.d.ts +0 -33
  251. package/a11y/focus-trap/event-listener-inert-strategy.d.ts +0 -29
  252. package/a11y/focus-trap/focus-trap-inert-strategy.d.ts +0 -21
  253. package/a11y/focus-trap/focus-trap-manager.d.ts +0 -26
  254. package/a11y/focus-trap/focus-trap.d.ts +0 -163
  255. package/a11y/high-contrast-mode/high-contrast-mode-detector.d.ts +0 -48
  256. package/a11y/input-modality/input-modality-detector.d.ts +0 -99
  257. package/a11y/interactivity-checker/interactivity-checker.d.ts +0 -60
  258. package/a11y/key-manager/activedescendant-key-manager.d.ts +0 -35
  259. package/a11y/key-manager/focus-key-manager.d.ts +0 -37
  260. package/a11y/key-manager/list-key-manager.d.ts +0 -152
  261. package/a11y/live-announcer/live-announcer-tokens.d.ts +0 -22
  262. package/a11y/live-announcer/live-announcer.d.ts +0 -83
  263. package/a11y/package.json +0 -9
  264. package/a11y/public-api.d.ts +0 -25
  265. package/accordion/accordion-item.d.ts +0 -59
  266. package/accordion/accordion-module.d.ts +0 -8
  267. package/accordion/accordion.d.ts +0 -40
  268. package/accordion/accordion_public_index.d.ts +0 -4
  269. package/accordion/package.json +0 -9
  270. package/accordion/public-api.d.ts +0 -10
  271. package/bidi/bidi-module.d.ts +0 -7
  272. package/bidi/bidi_public_index.d.ts +0 -4
  273. package/bidi/dir-document-token.d.ts +0 -26
  274. package/bidi/dir.d.ts +0 -36
  275. package/bidi/directionality.d.ts +0 -26
  276. package/bidi/package.json +0 -9
  277. package/bidi/public-api.d.ts +0 -11
  278. package/clipboard/clipboard-module.d.ts +0 -7
  279. package/clipboard/clipboard.d.ts +0 -28
  280. package/clipboard/clipboard_public_index.d.ts +0 -4
  281. package/clipboard/copy-to-clipboard.d.ts +0 -49
  282. package/clipboard/package.json +0 -9
  283. package/clipboard/pending-copy.d.ts +0 -29
  284. package/clipboard/public-api.d.ts +0 -11
  285. package/coercion/array.d.ts +0 -10
  286. package/coercion/boolean-property.d.ts +0 -14
  287. package/coercion/css-pixel-value.d.ts +0 -9
  288. package/coercion/element.d.ts +0 -13
  289. package/coercion/number-property.d.ts +0 -20
  290. package/coercion/package.json +0 -9
  291. package/coercion/public-api.d.ts +0 -13
  292. package/coercion/string-array.d.ts +0 -25
  293. package/collections/array-data-source.d.ts +0 -16
  294. package/collections/collection-viewer.d.ts +0 -24
  295. package/collections/collections_public_index.d.ts +0 -4
  296. package/collections/data-source.d.ts +0 -30
  297. package/collections/dispose-view-repeater-strategy.d.ts +0 -22
  298. package/collections/package.json +0 -9
  299. package/collections/public-api.d.ts +0 -16
  300. package/collections/recycle-view-repeater-strategy.d.ts +0 -54
  301. package/collections/selection-model.d.ts +0 -95
  302. package/collections/tree-adapter.d.ts +0 -26
  303. package/collections/unique-selection-dispatcher.d.ts +0 -36
  304. package/collections/view-repeater.d.ts +0 -92
  305. package/drag-drop/client-rect.d.ts +0 -38
  306. package/drag-drop/clone-node.d.ts +0 -9
  307. package/drag-drop/directives/assertions.d.ts +0 -13
  308. package/drag-drop/directives/config.d.ts +0 -43
  309. package/drag-drop/directives/drag-handle.d.ts +0 -33
  310. package/drag-drop/directives/drag-placeholder.d.ts +0 -27
  311. package/drag-drop/directives/drag-preview.d.ts +0 -32
  312. package/drag-drop/directives/drag.d.ts +0 -160
  313. package/drag-drop/directives/drop-list-group.d.ts +0 -33
  314. package/drag-drop/directives/drop-list.d.ts +0 -123
  315. package/drag-drop/drag-drop-module.d.ts +0 -13
  316. package/drag-drop/drag-drop-registry.d.ts +0 -89
  317. package/drag-drop/drag-drop.d.ts +0 -36
  318. package/drag-drop/drag-drop_public_index.d.ts +0 -4
  319. package/drag-drop/drag-events.d.ts +0 -124
  320. package/drag-drop/drag-parent.d.ts +0 -15
  321. package/drag-drop/drag-ref.d.ts +0 -448
  322. package/drag-drop/drag-styling.d.ts +0 -42
  323. package/drag-drop/drag-utils.d.ts +0 -32
  324. package/drag-drop/drop-list-ref.d.ts +0 -312
  325. package/drag-drop/package.json +0 -9
  326. package/drag-drop/parent-position-tracker.d.ts +0 -39
  327. package/drag-drop/public-api.d.ts +0 -22
  328. package/drag-drop/transition-duration.d.ts +0 -9
  329. package/keycodes/keycodes.d.ts +0 -126
  330. package/keycodes/keycodes_public_index.d.ts +0 -4
  331. package/keycodes/modifiers.d.ts +0 -14
  332. package/keycodes/package.json +0 -9
  333. package/keycodes/public-api.d.ts +0 -9
  334. package/layout/breakpoints-observer.d.ts +0 -45
  335. package/layout/breakpoints.d.ts +0 -23
  336. package/layout/layout-module.d.ts +0 -6
  337. package/layout/layout_public_index.d.ts +0 -4
  338. package/layout/media-matcher.d.ts +0 -18
  339. package/layout/package.json +0 -9
  340. package/layout/public-api.d.ts +0 -11
  341. package/observers/observe-content.d.ts +0 -87
  342. package/observers/observers_public_index.d.ts +0 -4
  343. package/observers/package.json +0 -9
  344. package/observers/public-api.d.ts +0 -8
  345. package/overlay/dispatchers/base-overlay-dispatcher.d.ts +0 -24
  346. package/overlay/dispatchers/index.d.ts +0 -9
  347. package/overlay/dispatchers/overlay-keyboard-dispatcher.d.ts +0 -24
  348. package/overlay/dispatchers/overlay-outside-click-dispatcher.d.ts +0 -32
  349. package/overlay/fullscreen-overlay-container.d.ts +0 -35
  350. package/overlay/overlay-config.d.ts +0 -47
  351. package/overlay/overlay-container.d.ts +0 -25
  352. package/overlay/overlay-directives.d.ts +0 -148
  353. package/overlay/overlay-module.d.ts +0 -10
  354. package/overlay/overlay-ref.d.ts +0 -144
  355. package/overlay/overlay-reference.d.ts +0 -38
  356. package/overlay/overlay.d.ts +0 -75
  357. package/overlay/overlay_public_index.d.ts +0 -4
  358. package/overlay/package.json +0 -9
  359. package/overlay/position/connected-position.d.ts +0 -102
  360. package/overlay/position/flexible-connected-position-strategy.d.ts +0 -280
  361. package/overlay/position/global-position-strategy.d.ts +0 -99
  362. package/overlay/position/overlay-position-builder.d.ts +0 -32
  363. package/overlay/position/position-strategy.d.ts +0 -19
  364. package/overlay/position/scroll-clip.d.ts +0 -26
  365. package/overlay/public-api.d.ts +0 -23
  366. package/overlay/scroll/block-scroll-strategy.d.ts +0 -27
  367. package/overlay/scroll/close-scroll-strategy.d.ts +0 -40
  368. package/overlay/scroll/index.d.ts +0 -14
  369. package/overlay/scroll/noop-scroll-strategy.d.ts +0 -17
  370. package/overlay/scroll/reposition-scroll-strategy.d.ts +0 -39
  371. package/overlay/scroll/scroll-strategy-options.d.ts +0 -44
  372. package/overlay/scroll/scroll-strategy.d.ts +0 -25
  373. package/platform/features/input-types.d.ts +0 -9
  374. package/platform/features/passive-listeners.d.ts +0 -19
  375. package/platform/features/scrolling.d.ts +0 -32
  376. package/platform/features/shadow-dom.d.ts +0 -18
  377. package/platform/features/test-environment.d.ts +0 -9
  378. package/platform/package.json +0 -9
  379. package/platform/platform-module.d.ts +0 -6
  380. package/platform/platform.d.ts +0 -29
  381. package/platform/platform_public_index.d.ts +0 -4
  382. package/platform/public-api.d.ts +0 -14
  383. package/portal/dom-portal-outlet.d.ts +0 -60
  384. package/portal/package.json +0 -9
  385. package/portal/portal-directives.d.ts +0 -99
  386. package/portal/portal-errors.d.ts +0 -37
  387. package/portal/portal-injector.d.ts +0 -21
  388. package/portal/portal.d.ts +0 -140
  389. package/portal/portal_public_index.d.ts +0 -4
  390. package/portal/public-api.d.ts +0 -11
  391. package/public-api.d.ts +0 -8
  392. package/scrolling/fixed-size-virtual-scroll.d.ts +0 -97
  393. package/scrolling/package.json +0 -9
  394. package/scrolling/public-api.d.ts +0 -16
  395. package/scrolling/scroll-dispatcher.d.ts +0 -71
  396. package/scrolling/scrollable.d.ts +0 -85
  397. package/scrolling/scrolling-module.d.ts +0 -19
  398. package/scrolling/scrolling_public_index.d.ts +0 -4
  399. package/scrolling/viewport-ruler.d.ts +0 -63
  400. package/scrolling/virtual-for-of.d.ts +0 -117
  401. package/scrolling/virtual-scroll-repeater.d.ts +0 -16
  402. package/scrolling/virtual-scroll-strategy.d.ts +0 -38
  403. package/scrolling/virtual-scroll-viewport.d.ts +0 -147
  404. package/stepper/package.json +0 -9
  405. package/stepper/public-api.d.ts +0 -12
  406. package/stepper/step-header.d.ts +0 -18
  407. package/stepper/step-label.d.ts +0 -15
  408. package/stepper/stepper-button.d.ts +0 -20
  409. package/stepper/stepper-module.d.ts +0 -11
  410. package/stepper/stepper.d.ts +0 -233
  411. package/stepper/stepper_public_index.d.ts +0 -4
  412. package/table/can-stick.d.ts +0 -34
  413. package/table/cell.d.ts +0 -126
  414. package/table/coalesced-style-scheduler.d.ts +0 -46
  415. package/table/package.json +0 -9
  416. package/table/public-api.d.ts +0 -19
  417. package/table/row.d.ts +0 -175
  418. package/table/sticky-position-listener.d.ts +0 -31
  419. package/table/sticky-styler.d.ts +0 -126
  420. package/table/table-errors.d.ts +0 -48
  421. package/table/table-module.d.ts +0 -11
  422. package/table/table.d.ts +0 -494
  423. package/table/table_public_index.d.ts +0 -4
  424. package/table/text-column.d.ts +0 -73
  425. package/table/tokens.d.ts +0 -25
  426. package/testing/change-detection.d.ts +0 -83
  427. package/testing/component-harness.d.ts +0 -426
  428. package/testing/element-dimensions.d.ts +0 -16
  429. package/testing/harness-environment.d.ts +0 -62
  430. package/testing/package.json +0 -9
  431. package/testing/public-api.d.ts +0 -14
  432. package/testing/selenium-webdriver/package.json +0 -9
  433. package/testing/selenium-webdriver/public-api.d.ts +0 -9
  434. package/testing/selenium-webdriver/selenium-web-driver-element.d.ts +0 -91
  435. package/testing/selenium-webdriver/selenium-web-driver-harness-environment.d.ts +0 -66
  436. package/testing/selenium-webdriver/selenium-webdriver-keys.d.ts +0 -46
  437. package/testing/test-element-errors.d.ts +0 -12
  438. package/testing/test-element.d.ts +0 -135
  439. package/testing/testbed/fake-events/dispatch-events.d.ts +0 -39
  440. package/testing/testbed/fake-events/element-focus.d.ts +0 -18
  441. package/testing/testbed/fake-events/event-objects.d.ts +0 -39
  442. package/testing/testbed/fake-events/index.d.ts +0 -11
  443. package/testing/testbed/fake-events/type-in-element.d.ts +0 -41
  444. package/testing/testbed/package.json +0 -9
  445. package/testing/testbed/proxy-zone-types.d.ts +0 -29
  446. package/testing/testbed/public-api.d.ts +0 -9
  447. package/testing/testbed/task-state-zone-interceptor.d.ts +0 -37
  448. package/testing/testbed/testbed-harness-environment.d.ts +0 -64
  449. package/testing/testbed/unit-test-element.d.ts +0 -98
  450. package/testing/testbed/zone-types.d.ts +0 -22
  451. package/testing/text-filtering.d.ts +0 -13
  452. package/text-field/autofill.d.ts +0 -66
  453. package/text-field/autosize.d.ts +0 -95
  454. package/text-field/package.json +0 -9
  455. package/text-field/public-api.d.ts +0 -10
  456. package/text-field/text-field-module.d.ts +0 -8
  457. package/text-field/text-field_public_index.d.ts +0 -4
  458. package/tree/control/base-tree-control.d.ts +0 -54
  459. package/tree/control/flat-tree-control.d.ts +0 -34
  460. package/tree/control/nested-tree-control.d.ts +0 -31
  461. package/tree/control/tree-control.d.ts +0 -49
  462. package/tree/nested-node.d.ts +0 -38
  463. package/tree/node.d.ts +0 -40
  464. package/tree/outlet.d.ts +0 -26
  465. package/tree/package.json +0 -9
  466. package/tree/padding.d.ts +0 -60
  467. package/tree/public-api.d.ts +0 -19
  468. package/tree/toggle.d.ts +0 -25
  469. package/tree/tree-errors.d.ts +0 -32
  470. package/tree/tree-module.d.ts +0 -12
  471. package/tree/tree.d.ts +0 -128
  472. package/tree/tree_public_index.d.ts +0 -4
  473. package/version.d.ts +0 -10
@@ -204,15 +204,15 @@ class CdkFixedSizeVirtualScroll {
204
204
  this._scrollStrategy.updateItemAndBufferSize(this.itemSize, this.minBufferPx, this.maxBufferPx);
205
205
  }
206
206
  }
207
- CdkFixedSizeVirtualScroll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkFixedSizeVirtualScroll, deps: [], target: i0.ɵɵFactoryTarget.Directive });
208
- CdkFixedSizeVirtualScroll.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "14.0.0-next.6", type: CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: { itemSize: "itemSize", minBufferPx: "minBufferPx", maxBufferPx: "maxBufferPx" }, providers: [
207
+ CdkFixedSizeVirtualScroll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkFixedSizeVirtualScroll, deps: [], target: i0.ɵɵFactoryTarget.Directive });
208
+ CdkFixedSizeVirtualScroll.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.0-next.16", type: CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: { itemSize: "itemSize", minBufferPx: "minBufferPx", maxBufferPx: "maxBufferPx" }, providers: [
209
209
  {
210
210
  provide: VIRTUAL_SCROLL_STRATEGY,
211
211
  useFactory: _fixedSizeVirtualScrollStrategyFactory,
212
212
  deps: [forwardRef(() => CdkFixedSizeVirtualScroll)],
213
213
  },
214
214
  ], usesOnChanges: true, ngImport: i0 });
215
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkFixedSizeVirtualScroll, decorators: [{
215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkFixedSizeVirtualScroll, decorators: [{
216
216
  type: Directive,
217
217
  args: [{
218
218
  selector: 'cdk-virtual-scroll-viewport[itemSize]',
@@ -375,9 +375,9 @@ class ScrollDispatcher {
375
375
  }
376
376
  }
377
377
  }
378
- ScrollDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollDispatcher, deps: [{ token: i0.NgZone }, { token: i1.Platform }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
379
- ScrollDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollDispatcher, providedIn: 'root' });
380
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollDispatcher, decorators: [{
378
+ ScrollDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollDispatcher, deps: [{ token: i0.NgZone }, { token: i1.Platform }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
379
+ ScrollDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollDispatcher, providedIn: 'root' });
380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollDispatcher, decorators: [{
381
381
  type: Injectable,
382
382
  args: [{ providedIn: 'root' }]
383
383
  }], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i1.Platform }, { type: undefined, decorators: [{
@@ -450,15 +450,15 @@ class CdkScrollable {
450
450
  el.scrollHeight - el.clientHeight - options.bottom;
451
451
  }
452
452
  // Rewrite the right offset as a left offset.
453
- if (isRtl && getRtlScrollAxisType() != 0 /* NORMAL */) {
453
+ if (isRtl && getRtlScrollAxisType() != 0 /* RtlScrollAxisType.NORMAL */) {
454
454
  if (options.left != null) {
455
455
  options.right =
456
456
  el.scrollWidth - el.clientWidth - options.left;
457
457
  }
458
- if (getRtlScrollAxisType() == 2 /* INVERTED */) {
458
+ if (getRtlScrollAxisType() == 2 /* RtlScrollAxisType.INVERTED */) {
459
459
  options.left = options.right;
460
460
  }
461
- else if (getRtlScrollAxisType() == 1 /* NEGATED */) {
461
+ else if (getRtlScrollAxisType() == 1 /* RtlScrollAxisType.NEGATED */) {
462
462
  options.left = options.right ? -options.right : options.right;
463
463
  }
464
464
  }
@@ -511,7 +511,7 @@ class CdkScrollable {
511
511
  else if (from == 'end') {
512
512
  from = isRtl ? LEFT : RIGHT;
513
513
  }
514
- if (isRtl && getRtlScrollAxisType() == 2 /* INVERTED */) {
514
+ if (isRtl && getRtlScrollAxisType() == 2 /* RtlScrollAxisType.INVERTED */) {
515
515
  // For INVERTED, scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and
516
516
  // 0 when scrolled all the way right.
517
517
  if (from == LEFT) {
@@ -521,7 +521,7 @@ class CdkScrollable {
521
521
  return el.scrollLeft;
522
522
  }
523
523
  }
524
- else if (isRtl && getRtlScrollAxisType() == 1 /* NEGATED */) {
524
+ else if (isRtl && getRtlScrollAxisType() == 1 /* RtlScrollAxisType.NEGATED */) {
525
525
  // For NEGATED, scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and
526
526
  // 0 when scrolled all the way right.
527
527
  if (from == LEFT) {
@@ -543,9 +543,9 @@ class CdkScrollable {
543
543
  }
544
544
  }
545
545
  }
546
- CdkScrollable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollable, deps: [{ token: i0.ElementRef }, { token: ScrollDispatcher }, { token: i0.NgZone }, { token: i2.Directionality, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
547
- CdkScrollable.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "14.0.0-next.6", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]", ngImport: i0 });
548
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollable, decorators: [{
546
+ CdkScrollable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollable, deps: [{ token: i0.ElementRef }, { token: ScrollDispatcher }, { token: i0.NgZone }, { token: i2.Directionality, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
547
+ CdkScrollable.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.0-next.16", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]", ngImport: i0 });
548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollable, decorators: [{
549
549
  type: Directive,
550
550
  args: [{
551
551
  selector: '[cdk-scrollable], [cdkScrollable]',
@@ -681,9 +681,9 @@ class ViewportRuler {
681
681
  : { width: 0, height: 0 };
682
682
  }
683
683
  }
684
- ViewportRuler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ViewportRuler, deps: [{ token: i1.Platform }, { token: i0.NgZone }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
685
- ViewportRuler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ViewportRuler, providedIn: 'root' });
686
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ViewportRuler, decorators: [{
684
+ ViewportRuler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ViewportRuler, deps: [{ token: i1.Platform }, { token: i0.NgZone }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
685
+ ViewportRuler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ViewportRuler, providedIn: 'root' });
686
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ViewportRuler, decorators: [{
687
687
  type: Injectable,
688
688
  args: [{ providedIn: 'root' }]
689
689
  }], ctorParameters: function () { return [{ type: i1.Platform }, { type: i0.NgZone }, { type: undefined, decorators: [{
@@ -1023,14 +1023,14 @@ class CdkVirtualScrollViewport extends CdkScrollable {
1023
1023
  this.orientation === 'horizontal' ? `${this._totalContentSize}px` : '';
1024
1024
  }
1025
1025
  }
1026
- CdkVirtualScrollViewport.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkVirtualScrollViewport, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: VIRTUAL_SCROLL_STRATEGY, optional: true }, { token: i2.Directionality, optional: true }, { token: ScrollDispatcher }, { token: ViewportRuler }], target: i0.ɵɵFactoryTarget.Component });
1027
- CdkVirtualScrollViewport.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "14.0.0-next.6", type: CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: { orientation: "orientation", appendOnly: "appendOnly" }, outputs: { scrolledIndexChange: "scrolledIndexChange" }, host: { properties: { "class.cdk-virtual-scroll-orientation-horizontal": "orientation === \"horizontal\"", "class.cdk-virtual-scroll-orientation-vertical": "orientation !== \"horizontal\"" }, classAttribute: "cdk-virtual-scroll-viewport" }, providers: [
1026
+ CdkVirtualScrollViewport.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkVirtualScrollViewport, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: VIRTUAL_SCROLL_STRATEGY, optional: true }, { token: i2.Directionality, optional: true }, { token: ScrollDispatcher }, { token: ViewportRuler }], target: i0.ɵɵFactoryTarget.Component });
1027
+ CdkVirtualScrollViewport.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0-next.16", type: CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: { orientation: "orientation", appendOnly: "appendOnly" }, outputs: { scrolledIndexChange: "scrolledIndexChange" }, host: { properties: { "class.cdk-virtual-scroll-orientation-horizontal": "orientation === \"horizontal\"", "class.cdk-virtual-scroll-orientation-vertical": "orientation !== \"horizontal\"" }, classAttribute: "cdk-virtual-scroll-viewport" }, providers: [
1028
1028
  {
1029
1029
  provide: CdkScrollable,
1030
1030
  useExisting: CdkVirtualScrollViewport,
1031
1031
  },
1032
- ], viewQueries: [{ propertyName: "_contentWrapper", first: true, predicate: ["contentWrapper"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<!--\n Wrap the rendered content in an element that will be used to offset it based on the scroll\n position.\n-->\n<div #contentWrapper class=\"cdk-virtual-scroll-content-wrapper\">\n <ng-content></ng-content>\n</div>\n<!--\n Spacer used to force the scrolling container to the correct size for the *total* number of items\n so that the scrollbar captures the size of the entire data set.\n-->\n<div class=\"cdk-virtual-scroll-spacer\"\n [style.width]=\"_totalContentWidth\" [style.height]=\"_totalContentHeight\"></div>\n", styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;overflow:auto;contain:strict;transform:translateZ(0);will-change:scroll-position;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{position:absolute;top:0;left:0;height:1px;width:1px;transform-origin:0 0}[dir=rtl] .cdk-virtual-scroll-spacer{right:0;left:auto;transform-origin:100% 0}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkVirtualScrollViewport, decorators: [{
1032
+ ], viewQueries: [{ propertyName: "_contentWrapper", first: true, predicate: ["contentWrapper"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<!--\n Wrap the rendered content in an element that will be used to offset it based on the scroll\n position.\n-->\n<div #contentWrapper class=\"cdk-virtual-scroll-content-wrapper\">\n <ng-content></ng-content>\n</div>\n<!--\n Spacer used to force the scrolling container to the correct size for the *total* number of items\n so that the scrollbar captures the size of the entire data set.\n-->\n<div class=\"cdk-virtual-scroll-spacer\"\n [style.width]=\"_totalContentWidth\" [style.height]=\"_totalContentHeight\"></div>\n", styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;overflow:auto;contain:strict;transform:translateZ(0);will-change:scroll-position;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{position:absolute;top:0;left:0;height:1px;width:1px;transform-origin:0 0}[dir=rtl] .cdk-virtual-scroll-spacer{right:0;left:auto;transform-origin:100% 0}"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1033
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkVirtualScrollViewport, decorators: [{
1034
1034
  type: Component,
1035
1035
  args: [{ selector: 'cdk-virtual-scroll-viewport', host: {
1036
1036
  'class': 'cdk-virtual-scroll-viewport',
@@ -1041,7 +1041,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6",
1041
1041
  provide: CdkScrollable,
1042
1042
  useExisting: CdkVirtualScrollViewport,
1043
1043
  },
1044
- ], template: "<!--\n Wrap the rendered content in an element that will be used to offset it based on the scroll\n position.\n-->\n<div #contentWrapper class=\"cdk-virtual-scroll-content-wrapper\">\n <ng-content></ng-content>\n</div>\n<!--\n Spacer used to force the scrolling container to the correct size for the *total* number of items\n so that the scrollbar captures the size of the entire data set.\n-->\n<div class=\"cdk-virtual-scroll-spacer\"\n [style.width]=\"_totalContentWidth\" [style.height]=\"_totalContentHeight\"></div>\n", styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;overflow:auto;contain:strict;transform:translateZ(0);will-change:scroll-position;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{position:absolute;top:0;left:0;height:1px;width:1px;transform-origin:0 0}[dir=rtl] .cdk-virtual-scroll-spacer{right:0;left:auto;transform-origin:100% 0}\n"] }]
1044
+ ], template: "<!--\n Wrap the rendered content in an element that will be used to offset it based on the scroll\n position.\n-->\n<div #contentWrapper class=\"cdk-virtual-scroll-content-wrapper\">\n <ng-content></ng-content>\n</div>\n<!--\n Spacer used to force the scrolling container to the correct size for the *total* number of items\n so that the scrollbar captures the size of the entire data set.\n-->\n<div class=\"cdk-virtual-scroll-spacer\"\n [style.width]=\"_totalContentWidth\" [style.height]=\"_totalContentHeight\"></div>\n", styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;overflow:auto;contain:strict;transform:translateZ(0);will-change:scroll-position;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{position:absolute;top:0;left:0;height:1px;width:1px;transform-origin:0 0}[dir=rtl] .cdk-virtual-scroll-spacer{right:0;left:auto;transform-origin:100% 0}"] }]
1045
1045
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: undefined, decorators: [{
1046
1046
  type: Optional
1047
1047
  }, {
@@ -1127,7 +1127,9 @@ class CdkVirtualForOf {
1127
1127
  });
1128
1128
  this._viewport.renderedRangeStream.pipe(takeUntil(this._destroyed)).subscribe(range => {
1129
1129
  this._renderedRange = range;
1130
- ngZone.run(() => this.viewChange.next(this._renderedRange));
1130
+ if (this.viewChange.observers.length) {
1131
+ ngZone.run(() => this.viewChange.next(this._renderedRange));
1132
+ }
1131
1133
  this._onRenderedDataChange();
1132
1134
  });
1133
1135
  this._viewport.attach(this);
@@ -1324,9 +1326,9 @@ class CdkVirtualForOf {
1324
1326
  };
1325
1327
  }
1326
1328
  }
1327
- CdkVirtualForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkVirtualForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: _VIEW_REPEATER_STRATEGY }, { token: CdkVirtualScrollViewport, skipSelf: true }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1328
- CdkVirtualForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "14.0.0-next.6", type: CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: { cdkVirtualForOf: "cdkVirtualForOf", cdkVirtualForTrackBy: "cdkVirtualForTrackBy", cdkVirtualForTemplate: "cdkVirtualForTemplate", cdkVirtualForTemplateCacheSize: "cdkVirtualForTemplateCacheSize" }, providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }], ngImport: i0 });
1329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkVirtualForOf, decorators: [{
1329
+ CdkVirtualForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkVirtualForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: _VIEW_REPEATER_STRATEGY }, { token: CdkVirtualScrollViewport, skipSelf: true }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1330
+ CdkVirtualForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.0-next.16", type: CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: { cdkVirtualForOf: "cdkVirtualForOf", cdkVirtualForTrackBy: "cdkVirtualForTrackBy", cdkVirtualForTemplate: "cdkVirtualForTemplate", cdkVirtualForTemplateCacheSize: "cdkVirtualForTemplateCacheSize" }, providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }], ngImport: i0 });
1331
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkVirtualForOf, decorators: [{
1330
1332
  type: Directive,
1331
1333
  args: [{
1332
1334
  selector: '[cdkVirtualFor][cdkVirtualForOf]',
@@ -1356,10 +1358,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6",
1356
1358
  */
1357
1359
  class CdkScrollableModule {
1358
1360
  }
1359
- CdkScrollableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1360
- CdkScrollableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollableModule, declarations: [CdkScrollable], exports: [CdkScrollable] });
1361
- CdkScrollableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollableModule });
1362
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: CdkScrollableModule, decorators: [{
1361
+ CdkScrollableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1362
+ CdkScrollableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollableModule, declarations: [CdkScrollable], exports: [CdkScrollable] });
1363
+ CdkScrollableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollableModule });
1364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: CdkScrollableModule, decorators: [{
1363
1365
  type: NgModule,
1364
1366
  args: [{
1365
1367
  exports: [CdkScrollable],
@@ -1371,12 +1373,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6",
1371
1373
  */
1372
1374
  class ScrollingModule {
1373
1375
  }
1374
- ScrollingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1375
- ScrollingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollingModule, declarations: [CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollViewport], imports: [BidiModule, CdkScrollableModule], exports: [BidiModule, CdkScrollableModule, CdkFixedSizeVirtualScroll,
1376
+ ScrollingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1377
+ ScrollingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollingModule, declarations: [CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollViewport], imports: [BidiModule, CdkScrollableModule], exports: [BidiModule, CdkScrollableModule, CdkFixedSizeVirtualScroll,
1376
1378
  CdkVirtualForOf,
1377
1379
  CdkVirtualScrollViewport] });
1378
- ScrollingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollingModule, imports: [[BidiModule, CdkScrollableModule], BidiModule, CdkScrollableModule] });
1379
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.6", ngImport: i0, type: ScrollingModule, decorators: [{
1380
+ ScrollingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollingModule, imports: [BidiModule, CdkScrollableModule, BidiModule, CdkScrollableModule] });
1381
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0-next.16", ngImport: i0, type: ScrollingModule, decorators: [{
1380
1382
  type: NgModule,
1381
1383
  args: [{
1382
1384
  imports: [BidiModule, CdkScrollableModule],